ERC-721
Overview
Max Total Supply
0 SN
Holders
67
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 SNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SuperNovas
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // Inspired/Copied from DystoPunks contract SuperNovas is Ownable, ERC721 { uint public constant MAX_GIRLS = 3333; uint constant TOKEN_PRICE = 0.04 ether; uint constant WL_TOKEN_PRICE = 0.03 ether; bool public hasSaleStarted = false; bool public hasPrivateSaleStarted = false; mapping(address => uint8) private _allowList; mapping(address => uint8) private _freeList; string private _baseTokenURI; uint public minted; constructor(string memory baseTokenURI) ERC721("SuperNovas","SN") { setBaseURI(baseTokenURI); } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) override public view returns (string memory) { return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId))); } function setAllowList(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _allowList[addresses[i]] = 1; } } function numAllowMint(address addr) public view returns (uint8) { return _allowList[addr]; } function mintAllowList(uint8 numSuperNovas) public payable { require(hasPrivateSaleStarted == true, "Private sale has not already started"); require(minted+numSuperNovas <= MAX_GIRLS, "Exceeds MAX_GIRLS"); require(msg.value >= WL_TOKEN_PRICE * numSuperNovas, "Ether value sent is below the price"); require(_allowList[msg.sender] > 0, "Not whitelisted"); require(numSuperNovas < 11, "You can mint minimum 1, maximum 10 SuperNovas"); for (uint i = 0; i < numSuperNovas; i++) { uint mintIndex = minted; _safeMint(msg.sender, mintIndex); minted += 1; } } function setFreeList(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _freeList[addresses[i]] = 1; } } function numFreeMint(address addr) public view returns (uint8) { return _freeList[addr]; } function mintFreeList() public { require(hasPrivateSaleStarted == true, "Private sale has not already started"); require(minted+1 <= MAX_GIRLS, "Exceeds MAX_GIRLS"); require(_freeList[msg.sender] > 0, "Not whitelisted"); uint mintIndex = minted; _safeMint(msg.sender, mintIndex); minted += 1; _freeList[msg.sender] -= 1; } function getSuperNovas(uint256 numSuperNovas) public payable { require(hasSaleStarted == true, "Sale has not already started"); require(numSuperNovas < 11, "You can mint minimum 1, maximum 10 SuperNovas"); require(minted+numSuperNovas <= MAX_GIRLS, "Exceeds MAX_GIRLS"); require(msg.value >= TOKEN_PRICE * numSuperNovas, "Ether value sent is below the price"); for (uint i = 0; i < numSuperNovas; i++) { uint mintIndex = minted; _safeMint(msg.sender, mintIndex); minted += 1; } } function reserveAirdrop(uint256 numSuperNovas) public onlyOwner { require(minted+numSuperNovas <= MAX_GIRLS, "Exceeds MAX_GIRLS"); require(minted + numSuperNovas < 31, "Exceeded airdrop supply"); for (uint i = 0; i < numSuperNovas; i++) { uint mintIndex = minted; _safeMint(msg.sender, mintIndex); minted += 1; } } function startSale() public onlyOwner { hasSaleStarted = true; } function pauseSale() public onlyOwner { hasSaleStarted = false; } function startPrivateSale() public onlyOwner { hasPrivateSaleStarted = true; } function pausePrivateSale() public onlyOwner { hasPrivateSaleStarted = false; } function withdrawAll() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_GIRLS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSuperNovas","type":"uint256"}],"name":"getSuperNovas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"hasPrivateSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numSuperNovas","type":"uint8"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAllowMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numFreeMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"pausePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSuperNovas","type":"uint256"}],"name":"reserveAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[{"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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600760006101000a81548160ff0219169083151502179055506000600760016101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620049cd380380620049cd83398181016040528101906200006d919062000413565b6040518060400160405280600a81526020017f53757065724e6f766173000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f534e000000000000000000000000000000000000000000000000000000000000815250620000f9620000ed6200014560201b60201c565b6200014d60201b60201c565b816001908051906020019062000111929190620002e5565b5080600290805190602001906200012a929190620002e5565b5050506200013e816200021160201b60201c565b506200066b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002216200014560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000247620002bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000297906200048b565b60405180910390fd5b80600a9080519060200190620002b8929190620002e5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f39062000553565b90600052602060002090601f01602090048101928262000317576000855562000363565b82601f106200033257805160ff191683800117855562000363565b8280016001018555821562000363579182015b828111156200036257825182559160200191906001019062000345565b5b50905062000372919062000376565b5090565b5b808211156200039157600081600090555060010162000377565b5090565b6000620003ac620003a684620004d6565b620004ad565b905082815260208101848484011115620003cb57620003ca62000622565b5b620003d88482856200051d565b509392505050565b600082601f830112620003f857620003f76200061d565b5b81516200040a84826020860162000395565b91505092915050565b6000602082840312156200042c576200042b6200062c565b5b600082015167ffffffffffffffff8111156200044d576200044c62000627565b5b6200045b84828501620003e0565b91505092915050565b6000620004736020836200050c565b9150620004808262000642565b602082019050919050565b60006020820190508181036000830152620004a68162000464565b9050919050565b6000620004b9620004cc565b9050620004c7828262000589565b919050565b6000604051905090565b600067ffffffffffffffff821115620004f457620004f3620005ee565b5b620004ff8262000631565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200053d57808201518184015260208101905062000520565b838111156200054d576000848401525b50505050565b600060028204905060018216806200056c57607f821691505b60208210811415620005835762000582620005bf565b5b50919050565b620005948262000631565b810181811067ffffffffffffffff82111715620005b657620005b5620005ee565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614352806200067b6000396000f3fe6080604052600436106101f95760003560e01c80636447c35d1161010d578063a8e0aaca116100a0578063c9cfbc251161006f578063c9cfbc25146106b7578063d12273af146106ce578063ddff5b1c146106f7578063e985e9c514610713578063f2fde38b14610750576101f9565b8063a8e0aaca1461061e578063b66a0e5d1461063a578063b88d4fde14610651578063c87b56dd1461067a576101f9565b80638b630abf116100dc5780638b630abf146105745780638da5cb5b1461059f57806395d89b41146105ca578063a22cb465146105f5576101f9565b80636447c35d146104ed57806370a0823114610516578063715018a614610553578063853828b61461056a576101f9565b806335d62f9e116101905780634a3cd6881161015f5780634a3cd6881461041c5780634f02c4201461044557806355367ba91461047057806355f804b3146104875780636352211e146104b0576101f9565b806335d62f9e14610362578063378e56bd146103795780633efaa682146103b657806342842e0e146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780631c8b232d146102f757806323b872dd14610322578063338dbf591461034b576101f9565b806301ffc9a7146101fe578063051d0b041461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f12565b610779565b60405161023291906134fa565b60405180910390f35b34801561024757600080fd5b5061025061085b565b60405161025d91906134fa565b60405180910390f35b34801561027257600080fd5b5061027b61086e565b6040516102889190613515565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612fb5565b610900565b6040516102c59190613493565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e85565b610985565b005b34801561030357600080fd5b5061030c610a9d565b60405161031991906134fa565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612d6f565b610ab0565b005b34801561035757600080fd5b50610360610b10565b005b34801561036e57600080fd5b50610377610ba9565b005b34801561038557600080fd5b506103a0600480360381019061039b9190612d02565b610c42565b6040516103ad9190613812565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612d02565b610c98565b6040516103ea9190613812565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190612d6f565b610cee565b005b34801561042857600080fd5b50610443600480360381019061043e9190612fb5565b610d0e565b005b34801561045157600080fd5b5061045a610e7a565b60405161046791906137f7565b60405180910390f35b34801561047c57600080fd5b50610485610e80565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612f6c565b610f19565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612fb5565b610faf565b6040516104e49190613493565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612ec5565b611061565b005b34801561052257600080fd5b5061053d60048036038101906105389190612d02565b611183565b60405161054a91906137f7565b60405180910390f35b34801561055f57600080fd5b5061056861123b565b005b6105726112c3565b005b34801561058057600080fd5b5061058961137f565b60405161059691906137f7565b60405180910390f35b3480156105ab57600080fd5b506105b4611385565b6040516105c19190613493565b60405180910390f35b3480156105d657600080fd5b506105df6113ae565b6040516105ec9190613515565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190612e45565b611440565b005b61063860048036038101906106339190612fb5565b611456565b005b34801561064657600080fd5b5061064f6115e4565b005b34801561065d57600080fd5b5061067860048036038101906106739190612dc2565b61167d565b005b34801561068657600080fd5b506106a1600480360381019061069c9190612fb5565b6116df565b6040516106ae9190613515565b60405180910390f35b3480156106c357600080fd5b506106cc611713565b005b3480156106da57600080fd5b506106f560048036038101906106f09190612ec5565b6118f0565b005b610711600480360381019061070c9190612fe2565b611a12565b005b34801561071f57600080fd5b5061073a60048036038101906107359190612d2f565b611c3e565b60405161074791906134fa565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612d02565b611cd2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610854575061085382611dca565b5b9050919050565b600760019054906101000a900460ff1681565b60606001805461087d90613b18565b80601f01602080910402602001604051908101604052809291908181526020018280546108a990613b18565b80156108f65780601f106108cb576101008083540402835291602001916108f6565b820191906000526020600020905b8154815290600101906020018083116108d957829003601f168201915b5050505050905090565b600061090b82611e34565b61094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613737565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099082610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613777565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a20611ea0565b73ffffffffffffffffffffffffffffffffffffffff161480610a4f5750610a4e81610a49611ea0565b611c3e565b5b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613677565b60405180910390fd5b610a988383611ea8565b505050565b600760009054906101000a900460ff1681565b610ac1610abb611ea0565b82611f61565b610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790613797565b60405180910390fd5b610b0b83838361203f565b505050565b610b18611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610b36611385565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390613757565b60405180910390fd5b6001600760016101000a81548160ff021916908315150217905550565b610bb1611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610bcf611385565b73ffffffffffffffffffffffffffffffffffffffff1614610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90613757565b60405180910390fd5b6000600760016101000a81548160ff021916908315150217905550565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d098383836040518060200160405280600081525061167d565b505050565b610d16611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610d34611385565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613757565b60405180910390fd5b610d0581600b54610d9b919061390c565b1115610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd3906137b7565b60405180910390fd5b601f81600b54610dec919061390c565b10610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390613557565b60405180910390fd5b60005b81811015610e76576000600b549050610e4833826122a6565b6001600b6000828254610e5b919061390c565b92505081905550508080610e6e90613b7b565b915050610e2f565b5050565b600b5481565b610e88611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610ea6611385565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390613757565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b610f21611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610f3f611385565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613757565b60405180910390fd5b80600a9080519060200190610fab929190612aab565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906136d7565b60405180910390fd5b80915050919050565b611069611ea0565b73ffffffffffffffffffffffffffffffffffffffff16611087611385565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490613757565b60405180910390fd5b60005b8282905081101561117e5760016008600085858581811061110457611103613c82565b5b90506020020160208101906111199190612d02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061117690613b7b565b9150506110e0565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906136b7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611243611ea0565b73ffffffffffffffffffffffffffffffffffffffff16611261611385565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613757565b60405180910390fd5b6112c160006122c4565b565b6112cb611ea0565b73ffffffffffffffffffffffffffffffffffffffff166112e9611385565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613757565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061137d57600080fd5b565b610d0581565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113bd90613b18565b80601f01602080910402602001604051908101604052809291908181526020018280546113e990613b18565b80156114365780601f1061140b57610100808354040283529160200191611436565b820191906000526020600020905b81548152906001019060200180831161141957829003601f168201915b5050505050905090565b61145261144b611ea0565b8383612388565b5050565b60011515600760009054906101000a900460ff161515146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613657565b60405180910390fd5b600b81106114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906137d7565b60405180910390fd5b610d0581600b54611500919061390c565b1115611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906137b7565b60405180910390fd5b80668e1bc9bf0400006115549190613993565b341015611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d906136f7565b60405180910390fd5b60005b818110156115e0576000600b5490506115b233826122a6565b6001600b60008282546115c5919061390c565b925050819055505080806115d890613b7b565b915050611599565b5050565b6115ec611ea0565b73ffffffffffffffffffffffffffffffffffffffff1661160a611385565b73ffffffffffffffffffffffffffffffffffffffff1614611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613757565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b61168e611688611ea0565b83611f61565b6116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613797565b60405180910390fd5b6116d9848484846124f5565b50505050565b6060600a6116ec83612551565b6040516020016116fd92919061346f565b6040516020818303038152906040529050919050565b60011515600760019054906101000a900460ff16151514611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613537565b60405180910390fd5b610d056001600b5461177b919061390c565b11156117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b3906137b7565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161161184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590613697565b60405180910390fd5b6000600b54905061185f33826122a6565b6001600b6000828254611872919061390c565b925050819055506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166118d59190613a21565b92506101000a81548160ff021916908360ff16021790555050565b6118f8611ea0565b73ffffffffffffffffffffffffffffffffffffffff16611916611385565b73ffffffffffffffffffffffffffffffffffffffff161461196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390613757565b60405180910390fd5b60005b82829050811015611a0d5760016009600085858581811061199357611992613c82565b5b90506020020160208101906119a89190612d02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611a0590613b7b565b91505061196f565b505050565b60011515600760019054906101000a900460ff16151514611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f90613537565b60405180910390fd5b610d058160ff16600b54611a7c919061390c565b1115611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906137b7565b60405180910390fd5b8060ff16666a94d74f430000611ad39190613993565b341015611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c906136f7565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90613697565b60405180910390fd5b600b8160ff1610611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be4906137d7565b60405180910390fd5b60005b8160ff16811015611c3a576000600b549050611c0c33826122a6565b6001600b6000828254611c1f919061390c565b92505081905550508080611c3290613b7b565b915050611bf0565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cda611ea0565b73ffffffffffffffffffffffffffffffffffffffff16611cf8611385565b73ffffffffffffffffffffffffffffffffffffffff1614611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590613757565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590613597565b60405180910390fd5b611dc7816122c4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1b83610faf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6c82611e34565b611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290613637565b60405180910390fd5b6000611fb683610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202557508373ffffffffffffffffffffffffffffffffffffffff1661200d84610900565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203657506120358185611c3e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205f82610faf565b73ffffffffffffffffffffffffffffffffffffffff16146120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906135b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c906135f7565b60405180910390fd5b6121308383836126b2565b61213b600082611ea8565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218b91906139ed565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e2919061390c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122a18383836126b7565b505050565b6122c08282604051806020016040528060008152506126bc565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90613617565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124e891906134fa565b60405180910390a3505050565b61250084848461203f565b61250c84848484612717565b61254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254290613577565b60405180910390fd5b50505050565b60606000821415612599576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ad565b600082905060005b600082146125cb5780806125b490613b7b565b915050600a826125c49190613962565b91506125a1565b60008167ffffffffffffffff8111156125e7576125e6613cb1565b5b6040519080825280601f01601f1916602001820160405280156126195781602001600182028036833780820191505090505b5090505b600085146126a65760018261263291906139ed565b9150600a856126419190613bc4565b603061264d919061390c565b60f81b81838151811061266357612662613c82565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561269f9190613962565b945061261d565b8093505050505b919050565b505050565b505050565b6126c683836128ae565b6126d36000848484612717565b612712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270990613577565b60405180910390fd5b505050565b60006127388473ffffffffffffffffffffffffffffffffffffffff16612a88565b156128a1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612761611ea0565b8786866040518563ffffffff1660e01b815260040161278394939291906134ae565b602060405180830381600087803b15801561279d57600080fd5b505af19250505080156127ce57506040513d601f19601f820116820180604052508101906127cb9190612f3f565b60015b612851573d80600081146127fe576040519150601f19603f3d011682016040523d82523d6000602084013e612803565b606091505b50600081511415612849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284090613577565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128a6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590613717565b60405180910390fd5b61292781611e34565b15612967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e906135d7565b60405180910390fd5b612973600083836126b2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c3919061390c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a84600083836126b7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ab790613b18565b90600052602060002090601f016020900481019282612ad95760008555612b20565b82601f10612af257805160ff1916838001178555612b20565b82800160010185558215612b20579182015b82811115612b1f578251825591602001919060010190612b04565b5b509050612b2d9190612b31565b5090565b5b80821115612b4a576000816000905550600101612b32565b5090565b6000612b61612b5c84613852565b61382d565b905082815260208101848484011115612b7d57612b7c613cef565b5b612b88848285613ad6565b509392505050565b6000612ba3612b9e84613883565b61382d565b905082815260208101848484011115612bbf57612bbe613cef565b5b612bca848285613ad6565b509392505050565b600081359050612be1816142a9565b92915050565b60008083601f840112612bfd57612bfc613ce5565b5b8235905067ffffffffffffffff811115612c1a57612c19613ce0565b5b602083019150836020820283011115612c3657612c35613cea565b5b9250929050565b600081359050612c4c816142c0565b92915050565b600081359050612c61816142d7565b92915050565b600081519050612c76816142d7565b92915050565b600082601f830112612c9157612c90613ce5565b5b8135612ca1848260208601612b4e565b91505092915050565b600082601f830112612cbf57612cbe613ce5565b5b8135612ccf848260208601612b90565b91505092915050565b600081359050612ce7816142ee565b92915050565b600081359050612cfc81614305565b92915050565b600060208284031215612d1857612d17613cf9565b5b6000612d2684828501612bd2565b91505092915050565b60008060408385031215612d4657612d45613cf9565b5b6000612d5485828601612bd2565b9250506020612d6585828601612bd2565b9150509250929050565b600080600060608486031215612d8857612d87613cf9565b5b6000612d9686828701612bd2565b9350506020612da786828701612bd2565b9250506040612db886828701612cd8565b9150509250925092565b60008060008060808587031215612ddc57612ddb613cf9565b5b6000612dea87828801612bd2565b9450506020612dfb87828801612bd2565b9350506040612e0c87828801612cd8565b925050606085013567ffffffffffffffff811115612e2d57612e2c613cf4565b5b612e3987828801612c7c565b91505092959194509250565b60008060408385031215612e5c57612e5b613cf9565b5b6000612e6a85828601612bd2565b9250506020612e7b85828601612c3d565b9150509250929050565b60008060408385031215612e9c57612e9b613cf9565b5b6000612eaa85828601612bd2565b9250506020612ebb85828601612cd8565b9150509250929050565b60008060208385031215612edc57612edb613cf9565b5b600083013567ffffffffffffffff811115612efa57612ef9613cf4565b5b612f0685828601612be7565b92509250509250929050565b600060208284031215612f2857612f27613cf9565b5b6000612f3684828501612c52565b91505092915050565b600060208284031215612f5557612f54613cf9565b5b6000612f6384828501612c67565b91505092915050565b600060208284031215612f8257612f81613cf9565b5b600082013567ffffffffffffffff811115612fa057612f9f613cf4565b5b612fac84828501612caa565b91505092915050565b600060208284031215612fcb57612fca613cf9565b5b6000612fd984828501612cd8565b91505092915050565b600060208284031215612ff857612ff7613cf9565b5b600061300684828501612ced565b91505092915050565b61301881613a55565b82525050565b61302781613a67565b82525050565b6000613038826138c9565b61304281856138df565b9350613052818560208601613ae5565b61305b81613cfe565b840191505092915050565b6000613071826138d4565b61307b81856138f0565b935061308b818560208601613ae5565b61309481613cfe565b840191505092915050565b60006130aa826138d4565b6130b48185613901565b93506130c4818560208601613ae5565b80840191505092915050565b600081546130dd81613b18565b6130e78186613901565b94506001821660008114613102576001811461311357613146565b60ff19831686528186019350613146565b61311c856138b4565b60005b8381101561313e5781548189015260018201915060208101905061311f565b838801955050505b50505092915050565b600061315c6024836138f0565b915061316782613d0f565b604082019050919050565b600061317f6017836138f0565b915061318a82613d5e565b602082019050919050565b60006131a26032836138f0565b91506131ad82613d87565b604082019050919050565b60006131c56026836138f0565b91506131d082613dd6565b604082019050919050565b60006131e86025836138f0565b91506131f382613e25565b604082019050919050565b600061320b601c836138f0565b915061321682613e74565b602082019050919050565b600061322e6024836138f0565b915061323982613e9d565b604082019050919050565b60006132516019836138f0565b915061325c82613eec565b602082019050919050565b6000613274602c836138f0565b915061327f82613f15565b604082019050919050565b6000613297601c836138f0565b91506132a282613f64565b602082019050919050565b60006132ba6038836138f0565b91506132c582613f8d565b604082019050919050565b60006132dd600f836138f0565b91506132e882613fdc565b602082019050919050565b6000613300602a836138f0565b915061330b82614005565b604082019050919050565b60006133236029836138f0565b915061332e82614054565b604082019050919050565b60006133466023836138f0565b9150613351826140a3565b604082019050919050565b60006133696020836138f0565b9150613374826140f2565b602082019050919050565b600061338c602c836138f0565b91506133978261411b565b604082019050919050565b60006133af6020836138f0565b91506133ba8261416a565b602082019050919050565b60006133d26021836138f0565b91506133dd82614193565b604082019050919050565b60006133f56031836138f0565b9150613400826141e2565b604082019050919050565b60006134186011836138f0565b915061342382614231565b602082019050919050565b600061343b602d836138f0565b91506134468261425a565b604082019050919050565b61345a81613abf565b82525050565b61346981613ac9565b82525050565b600061347b82856130d0565b9150613487828461309f565b91508190509392505050565b60006020820190506134a8600083018461300f565b92915050565b60006080820190506134c3600083018761300f565b6134d0602083018661300f565b6134dd6040830185613451565b81810360608301526134ef818461302d565b905095945050505050565b600060208201905061350f600083018461301e565b92915050565b6000602082019050818103600083015261352f8184613066565b905092915050565b600060208201905081810360008301526135508161314f565b9050919050565b6000602082019050818103600083015261357081613172565b9050919050565b6000602082019050818103600083015261359081613195565b9050919050565b600060208201905081810360008301526135b0816131b8565b9050919050565b600060208201905081810360008301526135d0816131db565b9050919050565b600060208201905081810360008301526135f0816131fe565b9050919050565b6000602082019050818103600083015261361081613221565b9050919050565b6000602082019050818103600083015261363081613244565b9050919050565b6000602082019050818103600083015261365081613267565b9050919050565b600060208201905081810360008301526136708161328a565b9050919050565b60006020820190508181036000830152613690816132ad565b9050919050565b600060208201905081810360008301526136b0816132d0565b9050919050565b600060208201905081810360008301526136d0816132f3565b9050919050565b600060208201905081810360008301526136f081613316565b9050919050565b6000602082019050818103600083015261371081613339565b9050919050565b600060208201905081810360008301526137308161335c565b9050919050565b600060208201905081810360008301526137508161337f565b9050919050565b60006020820190508181036000830152613770816133a2565b9050919050565b60006020820190508181036000830152613790816133c5565b9050919050565b600060208201905081810360008301526137b0816133e8565b9050919050565b600060208201905081810360008301526137d08161340b565b9050919050565b600060208201905081810360008301526137f08161342e565b9050919050565b600060208201905061380c6000830184613451565b92915050565b60006020820190506138276000830184613460565b92915050565b6000613837613848565b90506138438282613b4a565b919050565b6000604051905090565b600067ffffffffffffffff82111561386d5761386c613cb1565b5b61387682613cfe565b9050602081019050919050565b600067ffffffffffffffff82111561389e5761389d613cb1565b5b6138a782613cfe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391782613abf565b915061392283613abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395757613956613bf5565b5b828201905092915050565b600061396d82613abf565b915061397883613abf565b92508261398857613987613c24565b5b828204905092915050565b600061399e82613abf565b91506139a983613abf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139e2576139e1613bf5565b5b828202905092915050565b60006139f882613abf565b9150613a0383613abf565b925082821015613a1657613a15613bf5565b5b828203905092915050565b6000613a2c82613ac9565b9150613a3783613ac9565b925082821015613a4a57613a49613bf5565b5b828203905092915050565b6000613a6082613a9f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b03578082015181840152602081019050613ae8565b83811115613b12576000848401525b50505050565b60006002820490506001821680613b3057607f821691505b60208210811415613b4457613b43613c53565b5b50919050565b613b5382613cfe565b810181811067ffffffffffffffff82111715613b7257613b71613cb1565b5b80604052505050565b6000613b8682613abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bb957613bb8613bf5565b5b600182019050919050565b6000613bcf82613abf565b9150613bda83613abf565b925082613bea57613be9613c24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507269766174652073616c6520686173206e6f7420616c72656164792073746160008201527f7274656400000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656465642061697264726f7020737570706c79000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f7420616c7265616479207374617274656400000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473204d41585f4749524c53000000000000000000000000000000600082015250565b7f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008201527f31302053757065724e6f76617300000000000000000000000000000000000000602082015250565b6142b281613a55565b81146142bd57600080fd5b50565b6142c981613a67565b81146142d457600080fd5b50565b6142e081613a73565b81146142eb57600080fd5b50565b6142f781613abf565b811461430257600080fd5b50565b61430e81613ac9565b811461431957600080fd5b5056fea26469706673582212201a41ae9b94fc62c1dea2aa2e989b44eea03a74c5d571a65a3dc4e67a8d94215264736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d62484b677277414343476169624b475746647a346d476755527937424d735a4e5464645764514563344737412f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636447c35d1161010d578063a8e0aaca116100a0578063c9cfbc251161006f578063c9cfbc25146106b7578063d12273af146106ce578063ddff5b1c146106f7578063e985e9c514610713578063f2fde38b14610750576101f9565b8063a8e0aaca1461061e578063b66a0e5d1461063a578063b88d4fde14610651578063c87b56dd1461067a576101f9565b80638b630abf116100dc5780638b630abf146105745780638da5cb5b1461059f57806395d89b41146105ca578063a22cb465146105f5576101f9565b80636447c35d146104ed57806370a0823114610516578063715018a614610553578063853828b61461056a576101f9565b806335d62f9e116101905780634a3cd6881161015f5780634a3cd6881461041c5780634f02c4201461044557806355367ba91461047057806355f804b3146104875780636352211e146104b0576101f9565b806335d62f9e14610362578063378e56bd146103795780633efaa682146103b657806342842e0e146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780631c8b232d146102f757806323b872dd14610322578063338dbf591461034b576101f9565b806301ffc9a7146101fe578063051d0b041461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f12565b610779565b60405161023291906134fa565b60405180910390f35b34801561024757600080fd5b5061025061085b565b60405161025d91906134fa565b60405180910390f35b34801561027257600080fd5b5061027b61086e565b6040516102889190613515565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612fb5565b610900565b6040516102c59190613493565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e85565b610985565b005b34801561030357600080fd5b5061030c610a9d565b60405161031991906134fa565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612d6f565b610ab0565b005b34801561035757600080fd5b50610360610b10565b005b34801561036e57600080fd5b50610377610ba9565b005b34801561038557600080fd5b506103a0600480360381019061039b9190612d02565b610c42565b6040516103ad9190613812565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612d02565b610c98565b6040516103ea9190613812565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190612d6f565b610cee565b005b34801561042857600080fd5b50610443600480360381019061043e9190612fb5565b610d0e565b005b34801561045157600080fd5b5061045a610e7a565b60405161046791906137f7565b60405180910390f35b34801561047c57600080fd5b50610485610e80565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612f6c565b610f19565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612fb5565b610faf565b6040516104e49190613493565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612ec5565b611061565b005b34801561052257600080fd5b5061053d60048036038101906105389190612d02565b611183565b60405161054a91906137f7565b60405180910390f35b34801561055f57600080fd5b5061056861123b565b005b6105726112c3565b005b34801561058057600080fd5b5061058961137f565b60405161059691906137f7565b60405180910390f35b3480156105ab57600080fd5b506105b4611385565b6040516105c19190613493565b60405180910390f35b3480156105d657600080fd5b506105df6113ae565b6040516105ec9190613515565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190612e45565b611440565b005b61063860048036038101906106339190612fb5565b611456565b005b34801561064657600080fd5b5061064f6115e4565b005b34801561065d57600080fd5b5061067860048036038101906106739190612dc2565b61167d565b005b34801561068657600080fd5b506106a1600480360381019061069c9190612fb5565b6116df565b6040516106ae9190613515565b60405180910390f35b3480156106c357600080fd5b506106cc611713565b005b3480156106da57600080fd5b506106f560048036038101906106f09190612ec5565b6118f0565b005b610711600480360381019061070c9190612fe2565b611a12565b005b34801561071f57600080fd5b5061073a60048036038101906107359190612d2f565b611c3e565b60405161074791906134fa565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190612d02565b611cd2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610854575061085382611dca565b5b9050919050565b600760019054906101000a900460ff1681565b60606001805461087d90613b18565b80601f01602080910402602001604051908101604052809291908181526020018280546108a990613b18565b80156108f65780601f106108cb576101008083540402835291602001916108f6565b820191906000526020600020905b8154815290600101906020018083116108d957829003601f168201915b5050505050905090565b600061090b82611e34565b61094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613737565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099082610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613777565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a20611ea0565b73ffffffffffffffffffffffffffffffffffffffff161480610a4f5750610a4e81610a49611ea0565b611c3e565b5b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613677565b60405180910390fd5b610a988383611ea8565b505050565b600760009054906101000a900460ff1681565b610ac1610abb611ea0565b82611f61565b610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790613797565b60405180910390fd5b610b0b83838361203f565b505050565b610b18611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610b36611385565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390613757565b60405180910390fd5b6001600760016101000a81548160ff021916908315150217905550565b610bb1611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610bcf611385565b73ffffffffffffffffffffffffffffffffffffffff1614610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90613757565b60405180910390fd5b6000600760016101000a81548160ff021916908315150217905550565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d098383836040518060200160405280600081525061167d565b505050565b610d16611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610d34611385565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613757565b60405180910390fd5b610d0581600b54610d9b919061390c565b1115610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd3906137b7565b60405180910390fd5b601f81600b54610dec919061390c565b10610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390613557565b60405180910390fd5b60005b81811015610e76576000600b549050610e4833826122a6565b6001600b6000828254610e5b919061390c565b92505081905550508080610e6e90613b7b565b915050610e2f565b5050565b600b5481565b610e88611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610ea6611385565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef390613757565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b610f21611ea0565b73ffffffffffffffffffffffffffffffffffffffff16610f3f611385565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613757565b60405180910390fd5b80600a9080519060200190610fab929190612aab565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f906136d7565b60405180910390fd5b80915050919050565b611069611ea0565b73ffffffffffffffffffffffffffffffffffffffff16611087611385565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490613757565b60405180910390fd5b60005b8282905081101561117e5760016008600085858581811061110457611103613c82565b5b90506020020160208101906111199190612d02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061117690613b7b565b9150506110e0565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906136b7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611243611ea0565b73ffffffffffffffffffffffffffffffffffffffff16611261611385565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90613757565b60405180910390fd5b6112c160006122c4565b565b6112cb611ea0565b73ffffffffffffffffffffffffffffffffffffffff166112e9611385565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613757565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061137d57600080fd5b565b610d0581565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113bd90613b18565b80601f01602080910402602001604051908101604052809291908181526020018280546113e990613b18565b80156114365780601f1061140b57610100808354040283529160200191611436565b820191906000526020600020905b81548152906001019060200180831161141957829003601f168201915b5050505050905090565b61145261144b611ea0565b8383612388565b5050565b60011515600760009054906101000a900460ff161515146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613657565b60405180910390fd5b600b81106114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906137d7565b60405180910390fd5b610d0581600b54611500919061390c565b1115611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906137b7565b60405180910390fd5b80668e1bc9bf0400006115549190613993565b341015611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d906136f7565b60405180910390fd5b60005b818110156115e0576000600b5490506115b233826122a6565b6001600b60008282546115c5919061390c565b925050819055505080806115d890613b7b565b915050611599565b5050565b6115ec611ea0565b73ffffffffffffffffffffffffffffffffffffffff1661160a611385565b73ffffffffffffffffffffffffffffffffffffffff1614611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613757565b60405180910390fd5b6001600760006101000a81548160ff021916908315150217905550565b61168e611688611ea0565b83611f61565b6116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613797565b60405180910390fd5b6116d9848484846124f5565b50505050565b6060600a6116ec83612551565b6040516020016116fd92919061346f565b6040516020818303038152906040529050919050565b60011515600760019054906101000a900460ff16151514611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613537565b60405180910390fd5b610d056001600b5461177b919061390c565b11156117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b3906137b7565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161161184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590613697565b60405180910390fd5b6000600b54905061185f33826122a6565b6001600b6000828254611872919061390c565b925050819055506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166118d59190613a21565b92506101000a81548160ff021916908360ff16021790555050565b6118f8611ea0565b73ffffffffffffffffffffffffffffffffffffffff16611916611385565b73ffffffffffffffffffffffffffffffffffffffff161461196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390613757565b60405180910390fd5b60005b82829050811015611a0d5760016009600085858581811061199357611992613c82565b5b90506020020160208101906119a89190612d02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611a0590613b7b565b91505061196f565b505050565b60011515600760019054906101000a900460ff16151514611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f90613537565b60405180910390fd5b610d058160ff16600b54611a7c919061390c565b1115611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906137b7565b60405180910390fd5b8060ff16666a94d74f430000611ad39190613993565b341015611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c906136f7565b60405180910390fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1611611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90613697565b60405180910390fd5b600b8160ff1610611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be4906137d7565b60405180910390fd5b60005b8160ff16811015611c3a576000600b549050611c0c33826122a6565b6001600b6000828254611c1f919061390c565b92505081905550508080611c3290613b7b565b915050611bf0565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cda611ea0565b73ffffffffffffffffffffffffffffffffffffffff16611cf8611385565b73ffffffffffffffffffffffffffffffffffffffff1614611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590613757565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590613597565b60405180910390fd5b611dc7816122c4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1b83610faf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6c82611e34565b611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290613637565b60405180910390fd5b6000611fb683610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202557508373ffffffffffffffffffffffffffffffffffffffff1661200d84610900565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203657506120358185611c3e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205f82610faf565b73ffffffffffffffffffffffffffffffffffffffff16146120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906135b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c906135f7565b60405180910390fd5b6121308383836126b2565b61213b600082611ea8565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218b91906139ed565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e2919061390c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122a18383836126b7565b505050565b6122c08282604051806020016040528060008152506126bc565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90613617565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124e891906134fa565b60405180910390a3505050565b61250084848461203f565b61250c84848484612717565b61254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254290613577565b60405180910390fd5b50505050565b60606000821415612599576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ad565b600082905060005b600082146125cb5780806125b490613b7b565b915050600a826125c49190613962565b91506125a1565b60008167ffffffffffffffff8111156125e7576125e6613cb1565b5b6040519080825280601f01601f1916602001820160405280156126195781602001600182028036833780820191505090505b5090505b600085146126a65760018261263291906139ed565b9150600a856126419190613bc4565b603061264d919061390c565b60f81b81838151811061266357612662613c82565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561269f9190613962565b945061261d565b8093505050505b919050565b505050565b505050565b6126c683836128ae565b6126d36000848484612717565b612712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270990613577565b60405180910390fd5b505050565b60006127388473ffffffffffffffffffffffffffffffffffffffff16612a88565b156128a1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612761611ea0565b8786866040518563ffffffff1660e01b815260040161278394939291906134ae565b602060405180830381600087803b15801561279d57600080fd5b505af19250505080156127ce57506040513d601f19601f820116820180604052508101906127cb9190612f3f565b60015b612851573d80600081146127fe576040519150601f19603f3d011682016040523d82523d6000602084013e612803565b606091505b50600081511415612849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284090613577565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128a6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590613717565b60405180910390fd5b61292781611e34565b15612967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295e906135d7565b60405180910390fd5b612973600083836126b2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129c3919061390c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a84600083836126b7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ab790613b18565b90600052602060002090601f016020900481019282612ad95760008555612b20565b82601f10612af257805160ff1916838001178555612b20565b82800160010185558215612b20579182015b82811115612b1f578251825591602001919060010190612b04565b5b509050612b2d9190612b31565b5090565b5b80821115612b4a576000816000905550600101612b32565b5090565b6000612b61612b5c84613852565b61382d565b905082815260208101848484011115612b7d57612b7c613cef565b5b612b88848285613ad6565b509392505050565b6000612ba3612b9e84613883565b61382d565b905082815260208101848484011115612bbf57612bbe613cef565b5b612bca848285613ad6565b509392505050565b600081359050612be1816142a9565b92915050565b60008083601f840112612bfd57612bfc613ce5565b5b8235905067ffffffffffffffff811115612c1a57612c19613ce0565b5b602083019150836020820283011115612c3657612c35613cea565b5b9250929050565b600081359050612c4c816142c0565b92915050565b600081359050612c61816142d7565b92915050565b600081519050612c76816142d7565b92915050565b600082601f830112612c9157612c90613ce5565b5b8135612ca1848260208601612b4e565b91505092915050565b600082601f830112612cbf57612cbe613ce5565b5b8135612ccf848260208601612b90565b91505092915050565b600081359050612ce7816142ee565b92915050565b600081359050612cfc81614305565b92915050565b600060208284031215612d1857612d17613cf9565b5b6000612d2684828501612bd2565b91505092915050565b60008060408385031215612d4657612d45613cf9565b5b6000612d5485828601612bd2565b9250506020612d6585828601612bd2565b9150509250929050565b600080600060608486031215612d8857612d87613cf9565b5b6000612d9686828701612bd2565b9350506020612da786828701612bd2565b9250506040612db886828701612cd8565b9150509250925092565b60008060008060808587031215612ddc57612ddb613cf9565b5b6000612dea87828801612bd2565b9450506020612dfb87828801612bd2565b9350506040612e0c87828801612cd8565b925050606085013567ffffffffffffffff811115612e2d57612e2c613cf4565b5b612e3987828801612c7c565b91505092959194509250565b60008060408385031215612e5c57612e5b613cf9565b5b6000612e6a85828601612bd2565b9250506020612e7b85828601612c3d565b9150509250929050565b60008060408385031215612e9c57612e9b613cf9565b5b6000612eaa85828601612bd2565b9250506020612ebb85828601612cd8565b9150509250929050565b60008060208385031215612edc57612edb613cf9565b5b600083013567ffffffffffffffff811115612efa57612ef9613cf4565b5b612f0685828601612be7565b92509250509250929050565b600060208284031215612f2857612f27613cf9565b5b6000612f3684828501612c52565b91505092915050565b600060208284031215612f5557612f54613cf9565b5b6000612f6384828501612c67565b91505092915050565b600060208284031215612f8257612f81613cf9565b5b600082013567ffffffffffffffff811115612fa057612f9f613cf4565b5b612fac84828501612caa565b91505092915050565b600060208284031215612fcb57612fca613cf9565b5b6000612fd984828501612cd8565b91505092915050565b600060208284031215612ff857612ff7613cf9565b5b600061300684828501612ced565b91505092915050565b61301881613a55565b82525050565b61302781613a67565b82525050565b6000613038826138c9565b61304281856138df565b9350613052818560208601613ae5565b61305b81613cfe565b840191505092915050565b6000613071826138d4565b61307b81856138f0565b935061308b818560208601613ae5565b61309481613cfe565b840191505092915050565b60006130aa826138d4565b6130b48185613901565b93506130c4818560208601613ae5565b80840191505092915050565b600081546130dd81613b18565b6130e78186613901565b94506001821660008114613102576001811461311357613146565b60ff19831686528186019350613146565b61311c856138b4565b60005b8381101561313e5781548189015260018201915060208101905061311f565b838801955050505b50505092915050565b600061315c6024836138f0565b915061316782613d0f565b604082019050919050565b600061317f6017836138f0565b915061318a82613d5e565b602082019050919050565b60006131a26032836138f0565b91506131ad82613d87565b604082019050919050565b60006131c56026836138f0565b91506131d082613dd6565b604082019050919050565b60006131e86025836138f0565b91506131f382613e25565b604082019050919050565b600061320b601c836138f0565b915061321682613e74565b602082019050919050565b600061322e6024836138f0565b915061323982613e9d565b604082019050919050565b60006132516019836138f0565b915061325c82613eec565b602082019050919050565b6000613274602c836138f0565b915061327f82613f15565b604082019050919050565b6000613297601c836138f0565b91506132a282613f64565b602082019050919050565b60006132ba6038836138f0565b91506132c582613f8d565b604082019050919050565b60006132dd600f836138f0565b91506132e882613fdc565b602082019050919050565b6000613300602a836138f0565b915061330b82614005565b604082019050919050565b60006133236029836138f0565b915061332e82614054565b604082019050919050565b60006133466023836138f0565b9150613351826140a3565b604082019050919050565b60006133696020836138f0565b9150613374826140f2565b602082019050919050565b600061338c602c836138f0565b91506133978261411b565b604082019050919050565b60006133af6020836138f0565b91506133ba8261416a565b602082019050919050565b60006133d26021836138f0565b91506133dd82614193565b604082019050919050565b60006133f56031836138f0565b9150613400826141e2565b604082019050919050565b60006134186011836138f0565b915061342382614231565b602082019050919050565b600061343b602d836138f0565b91506134468261425a565b604082019050919050565b61345a81613abf565b82525050565b61346981613ac9565b82525050565b600061347b82856130d0565b9150613487828461309f565b91508190509392505050565b60006020820190506134a8600083018461300f565b92915050565b60006080820190506134c3600083018761300f565b6134d0602083018661300f565b6134dd6040830185613451565b81810360608301526134ef818461302d565b905095945050505050565b600060208201905061350f600083018461301e565b92915050565b6000602082019050818103600083015261352f8184613066565b905092915050565b600060208201905081810360008301526135508161314f565b9050919050565b6000602082019050818103600083015261357081613172565b9050919050565b6000602082019050818103600083015261359081613195565b9050919050565b600060208201905081810360008301526135b0816131b8565b9050919050565b600060208201905081810360008301526135d0816131db565b9050919050565b600060208201905081810360008301526135f0816131fe565b9050919050565b6000602082019050818103600083015261361081613221565b9050919050565b6000602082019050818103600083015261363081613244565b9050919050565b6000602082019050818103600083015261365081613267565b9050919050565b600060208201905081810360008301526136708161328a565b9050919050565b60006020820190508181036000830152613690816132ad565b9050919050565b600060208201905081810360008301526136b0816132d0565b9050919050565b600060208201905081810360008301526136d0816132f3565b9050919050565b600060208201905081810360008301526136f081613316565b9050919050565b6000602082019050818103600083015261371081613339565b9050919050565b600060208201905081810360008301526137308161335c565b9050919050565b600060208201905081810360008301526137508161337f565b9050919050565b60006020820190508181036000830152613770816133a2565b9050919050565b60006020820190508181036000830152613790816133c5565b9050919050565b600060208201905081810360008301526137b0816133e8565b9050919050565b600060208201905081810360008301526137d08161340b565b9050919050565b600060208201905081810360008301526137f08161342e565b9050919050565b600060208201905061380c6000830184613451565b92915050565b60006020820190506138276000830184613460565b92915050565b6000613837613848565b90506138438282613b4a565b919050565b6000604051905090565b600067ffffffffffffffff82111561386d5761386c613cb1565b5b61387682613cfe565b9050602081019050919050565b600067ffffffffffffffff82111561389e5761389d613cb1565b5b6138a782613cfe565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061391782613abf565b915061392283613abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561395757613956613bf5565b5b828201905092915050565b600061396d82613abf565b915061397883613abf565b92508261398857613987613c24565b5b828204905092915050565b600061399e82613abf565b91506139a983613abf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139e2576139e1613bf5565b5b828202905092915050565b60006139f882613abf565b9150613a0383613abf565b925082821015613a1657613a15613bf5565b5b828203905092915050565b6000613a2c82613ac9565b9150613a3783613ac9565b925082821015613a4a57613a49613bf5565b5b828203905092915050565b6000613a6082613a9f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b03578082015181840152602081019050613ae8565b83811115613b12576000848401525b50505050565b60006002820490506001821680613b3057607f821691505b60208210811415613b4457613b43613c53565b5b50919050565b613b5382613cfe565b810181811067ffffffffffffffff82111715613b7257613b71613cb1565b5b80604052505050565b6000613b8682613abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bb957613bb8613bf5565b5b600182019050919050565b6000613bcf82613abf565b9150613bda83613abf565b925082613bea57613be9613c24565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507269766174652073616c6520686173206e6f7420616c72656164792073746160008201527f7274656400000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656465642061697264726f7020737570706c79000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f7420616c7265616479207374617274656400000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473204d41585f4749524c53000000000000000000000000000000600082015250565b7f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008201527f31302053757065724e6f76617300000000000000000000000000000000000000602082015250565b6142b281613a55565b81146142bd57600080fd5b50565b6142c981613a67565b81146142d457600080fd5b50565b6142e081613a73565b81146142eb57600080fd5b50565b6142f781613abf565b811461430257600080fd5b50565b61430e81613ac9565b811461431957600080fd5b5056fea26469706673582212201a41ae9b94fc62c1dea2aa2e989b44eea03a74c5d571a65a3dc4e67a8d94215264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d62484b677277414343476169624b475746647a346d476755527937424d735a4e5464645764514563344737412f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseTokenURI (string): https://gateway.pinata.cloud/ipfs/QmbHKgrwACCGaibKGWFdz4mGgURy7BMsZNTddWdQEc4G7A/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d62484b677277414343476169624b475746647a346d47675552793742
Arg [4] : 4d735a4e5464645764514563344737412f000000000000000000000000000000
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.