Overview
TokenID
152
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BadCondom
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract BadCondom is ERC721A, Ownable { uint256 public MINT_PRICE = 0.05 ether; uint256 public MAX_SUPPLY = 299; uint256 public MAX_MINT_PER_ADDR = 5; string public baseURI = "https://badgirls.app/.netlify/functions/condom/"; uint256 public mintedCount = 1; constructor(address[] memory addrs, uint[] memory amounts) ERC721A("Bad Condom", "BC") { _safeMint(msg.sender, 10); mintedCount += 10; // airdops for (uint i = 0; i < addrs.length; ++i) { _safeMint(addrs[i], amounts[i]); mintedCount += amounts[i]; } } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return baseURI; } function batchMint(uint256 amount) public payable { require(tx.origin == msg.sender, "No contract call"); require( numberMinted(msg.sender) + amount <= MAX_MINT_PER_ADDR, "Exceeds the maximum mint amount of a single wallet" ); require(mintedCount + amount <= MAX_SUPPLY, "Exceeded max mint range"); uint256 totalPrice = MINT_PRICE * amount; require(msg.value >= totalPrice, "Insufficient eth"); (bool sent, ) = owner().call{value: msg.value}(""); require(sent, "Failed to send Ether"); _safeMint(msg.sender, amount); mintedCount += amount; } function burn(uint256 tokenId) public { require(ownerOf(tokenId) == tx.origin, "Not the owner"); _burn(tokenId); } }
// 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 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// 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 (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 v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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_MINT_PER_ADDR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedCount","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":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266b1a2bc2ec5000060095561012b600a556005600b556040518060600160405280602f815260200162004690602f9139600c90805190602001906200004b92919062000947565b506001600d553480156200005e57600080fd5b50604051620046bf380380620046bf833981810160405281019062000084919062000b80565b6040518060400160405280600a81526020017f42616420436f6e646f6d000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f424300000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010892919062000947565b5080600390805190602001906200012192919062000947565b5062000132620002a360201b60201c565b60008190555050506200015a6200014e620002ac60201b60201c565b620002b460201b60201c565b6200016d33600a6200037a60201b60201c565b600a600d600082825462000182919062000d79565b9250508190555060005b82518110156200029a576200022a838281518110620001d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811062000216577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200037a60201b60201c565b81818151811062000264577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600d60008282546200027f919062000d79565b9250508190555080620002929062000ee2565b90506200018c565b5050506200101c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200039c828260405180602001604052806000815250620003a060201b60201c565b5050565b620003b58383836001620003ba60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000428576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000464576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004796000868387620007b660201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620006515750620006508773ffffffffffffffffffffffffffffffffffffffff16620007bc60201b620012f81760201c565b5b1562000724575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006cf6000888480600101955088620007cf60201b60201c565b62000706576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415620006585782600054146200071e57600080fd5b62000791565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141562000725575b816000819055505050620007af60008683876200094160201b60201c565b5050505050565b50505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007fd620002ac60201b60201c565b8786866040518563ffffffff1660e01b815260040162000821949392919062000c82565b602060405180830381600087803b1580156200083c57600080fd5b505af19250505080156200087057506040513d601f19601f820116820180604052508101906200086d919062000bf3565b60015b620008ee573d8060008114620008a3576040519150601f19603f3d011682016040523d82523d6000602084013e620008a8565b606091505b50600081511415620008e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009559062000e76565b90600052602060002090601f016020900481019282620009795760008555620009c5565b82601f106200099457805160ff1916838001178555620009c5565b82800160010185558215620009c5579182015b82811115620009c4578251825591602001919060010190620009a7565b5b509050620009d49190620009d8565b5090565b5b80821115620009f3576000816000905550600101620009d9565b5090565b600062000a0e62000a088462000cff565b62000cd6565b9050808382526020820190508285602086028201111562000a2e57600080fd5b60005b8581101562000a62578162000a47888262000ae1565b84526020840193506020830192505060018101905062000a31565b5050509392505050565b600062000a8362000a7d8462000d2e565b62000cd6565b9050808382526020820190508285602086028201111562000aa357600080fd5b60005b8581101562000ad7578162000abc888262000b69565b84526020840193506020830192505060018101905062000aa6565b5050509392505050565b60008151905062000af28162000fce565b92915050565b600082601f83011262000b0a57600080fd5b815162000b1c848260208601620009f7565b91505092915050565b600082601f83011262000b3757600080fd5b815162000b4984826020860162000a6c565b91505092915050565b60008151905062000b638162000fe8565b92915050565b60008151905062000b7a8162001002565b92915050565b6000806040838503121562000b9457600080fd5b600083015167ffffffffffffffff81111562000baf57600080fd5b62000bbd8582860162000af8565b925050602083015167ffffffffffffffff81111562000bdb57600080fd5b62000be98582860162000b25565b9150509250929050565b60006020828403121562000c0657600080fd5b600062000c168482850162000b52565b91505092915050565b62000c2a8162000dd6565b82525050565b600062000c3d8262000d5d565b62000c49818562000d68565b935062000c5b81856020860162000e40565b62000c668162000fbd565b840191505092915050565b62000c7c8162000e36565b82525050565b600060808201905062000c99600083018762000c1f565b62000ca8602083018662000c1f565b62000cb7604083018562000c71565b818103606083015262000ccb818462000c30565b905095945050505050565b600062000ce262000cf5565b905062000cf0828262000eac565b919050565b6000604051905090565b600067ffffffffffffffff82111562000d1d5762000d1c62000f8e565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000d4c5762000d4b62000f8e565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000d868262000e36565b915062000d938362000e36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dcb5762000dca62000f30565b5b828201905092915050565b600062000de38262000e16565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000e6057808201518184015260208101905062000e43565b8381111562000e70576000848401525b50505050565b6000600282049050600182168062000e8f57607f821691505b6020821081141562000ea65762000ea562000f5f565b5b50919050565b62000eb78262000fbd565b810181811067ffffffffffffffff8211171562000ed95762000ed862000f8e565b5b80604052505050565b600062000eef8262000e36565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000f255762000f2462000f30565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000fd98162000dd6565b811462000fe557600080fd5b50565b62000ff38162000dea565b811462000fff57600080fd5b50565b6200100d8162000e36565b81146200101957600080fd5b50565b613664806200102c6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063b88d4fde1161008a578063cf721b1511610064578063cf721b151461051d578063dc33e68114610548578063e985e9c514610585578063f2fde38b146105c257610166565b8063b88d4fde1461048c578063c002d23d146104b5578063c87b56dd146104e057610166565b806370a082311461039d578063715018a6146103da5780638467be0d146103f15780638da5cb5b1461040d57806395d89b4114610438578063a22cb4651461046357610166565b806323b872dd1161012357806323b872dd1461028f57806332cb6b0c146102b857806342842e0e146102e357806342966c681461030c5780636352211e146103355780636c0360eb1461037257610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b314610210578063161548621461023957806318160ddd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612ba4565b6105eb565b60405161019f9190612eca565b60405180910390f35b3480156101b457600080fd5b506101bd6106cd565b6040516101ca9190612ee5565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612bf6565b61075f565b6040516102079190612e63565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612b68565b6107db565b005b34801561024557600080fd5b5061024e6108e6565b60405161025b9190613007565b60405180910390f35b34801561027057600080fd5b506102796108ec565b6040516102869190613007565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612a62565b610903565b005b3480156102c457600080fd5b506102cd610913565b6040516102da9190613007565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190612a62565b610919565b005b34801561031857600080fd5b50610333600480360381019061032e9190612bf6565b610939565b005b34801561034157600080fd5b5061035c60048036038101906103579190612bf6565b6109bb565b6040516103699190612e63565b60405180910390f35b34801561037e57600080fd5b506103876109d1565b6040516103949190612ee5565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906129fd565b610a5f565b6040516103d19190613007565b60405180910390f35b3480156103e657600080fd5b506103ef610b2f565b005b61040b60048036038101906104069190612bf6565b610bb7565b005b34801561041957600080fd5b50610422610dff565b60405161042f9190612e63565b60405180910390f35b34801561044457600080fd5b5061044d610e29565b60405161045a9190612ee5565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612b2c565b610ebb565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612ab1565b611033565b005b3480156104c157600080fd5b506104ca6110af565b6040516104d79190613007565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612bf6565b6110b5565b6040516105149190612ee5565b60405180910390f35b34801561052957600080fd5b50610532611154565b60405161053f9190613007565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906129fd565b61115a565b60405161057c9190613007565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612a26565b61116c565b6040516105b99190612eca565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e491906129fd565b611200565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c657506106c58261130b565b5b9050919050565b6060600280546106dc90613291565b80601f016020809104026020016040519081016040528092919081815260200182805461070890613291565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b600061076a82611375565b6107a0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e6826109bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561084e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086d6113c3565b73ffffffffffffffffffffffffffffffffffffffff161415801561089f575061089d816108986113c3565b61116c565b155b156108d6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108e18383836113cb565b505050565b600b5481565b60006108f661147d565b6001546000540303905090565b61090e838383611486565b505050565b600a5481565b61093483838360405180602001604052806000815250611033565b505050565b3273ffffffffffffffffffffffffffffffffffffffff16610959826109bb565b73ffffffffffffffffffffffffffffffffffffffff16146109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690612fa7565b60405180910390fd5b6109b881611977565b50565b60006109c682611d1b565b600001519050919050565b600c80546109de90613291565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613291565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ac7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610b376113c3565b73ffffffffffffffffffffffffffffffffffffffff16610b55610dff565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290612fc7565b60405180910390fd5b610bb56000611faa565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90612fe7565b60405180910390fd5b600b5481610c323361115a565b610c3c91906130c6565b1115610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490612f07565b60405180910390fd5b600a5481600d54610c8e91906130c6565b1115610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690612f87565b60405180910390fd5b600081600954610cdf919061314d565b905080341015610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90612f47565b60405180910390fd5b6000610d2e610dff565b73ffffffffffffffffffffffffffffffffffffffff1634604051610d5190612e4e565b60006040518083038185875af1925050503d8060008114610d8e576040519150601f19603f3d011682016040523d82523d6000602084013e610d93565b606091505b5050905080610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90612f67565b60405180910390fd5b610de13384612070565b82600d6000828254610df391906130c6565b92505081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e3890613291565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6490613291565b8015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b5050505050905090565b610ec36113c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f356113c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fe26113c3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110279190612eca565b60405180910390a35050565b61103e848484611486565b61105d8373ffffffffffffffffffffffffffffffffffffffff166112f8565b801561107257506110708484848461208e565b155b156110a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b60606110c082611375565b6110f6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111006121ee565b9050600081511415611121576040518060200160405280600081525061114c565b8061112b84612280565b60405160200161113c929190612e2a565b6040516020818303038152906040525b915050919050565b600d5481565b60006111658261242d565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112086113c3565b73ffffffffffffffffffffffffffffffffffffffff16611226610dff565b73ffffffffffffffffffffffffffffffffffffffff161461127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612fc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390612f27565b60405180910390fd5b6112f581611faa565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161138061147d565b1115801561138f575060005482105b80156113bc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061149182611d1b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166114b86113c3565b73ffffffffffffffffffffffffffffffffffffffff1614806114eb57506114ea82600001516114e56113c3565b61116c565b5b8061153057506114f96113c3565b73ffffffffffffffffffffffffffffffffffffffff166115188461075f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611569576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115d2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611639576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61164685858560016124fd565b61165660008484600001516113cb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611907576000548110156119065782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708585856001612503565b5050505050565b600061198282611d1b565b9050611996816000015160008460016124fd565b6119a660008383600001516113cb565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c9257600054811015611c915781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d0581600001516000846001612503565b6001600081548092919060010191905055505050565b611d236128e9565b600082905080611d3161147d565b11158015611d40575060005481105b15611f73576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f7157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e55578092505050611fa5565b5b600115611f7057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f6b578092505050611fa5565b611e56565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61208a828260405180602001604052806000815250612509565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b46113c3565b8786866040518563ffffffff1660e01b81526004016120d69493929190612e7e565b602060405180830381600087803b1580156120f057600080fd5b505af192505050801561212157506040513d601f19601f8201168201806040525081019061211e9190612bcd565b60015b61219b573d8060008114612151576040519150601f19603f3d011682016040523d82523d6000602084013e612156565b606091505b50600081511415612193576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546121fd90613291565b80601f016020809104026020016040519081016040528092919081815260200182805461222990613291565b80156122765780601f1061224b57610100808354040283529160200191612276565b820191906000526020600020905b81548152906001019060200180831161225957829003601f168201915b5050505050905090565b606060008214156122c8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612428565b600082905060005b600082146122fa5780806122e3906132f4565b915050600a826122f3919061311c565b91506122d0565b60008167ffffffffffffffff81111561233c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561236e5781602001600182028036833780820191505090505b5090505b600085146124215760018261238791906131a7565b9150600a85612396919061333d565b60306123a291906130c6565b60f81b8183815181106123de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561241a919061311c565b9450612372565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612495576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612516838383600161251b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612588576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156125c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d060008683876124fd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561279a57506127998773ffffffffffffffffffffffffffffffffffffffff166112f8565b5b15612860575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461280f600088848060010195508861208e565b612845576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156127a057826000541461285b57600080fd5b6128cc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612861575b8160008190555050506128e26000868387612503565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061293f61293a84613047565b613022565b90508281526020810184848401111561295757600080fd5b61296284828561324f565b509392505050565b600081359050612979816135d2565b92915050565b60008135905061298e816135e9565b92915050565b6000813590506129a381613600565b92915050565b6000815190506129b881613600565b92915050565b600082601f8301126129cf57600080fd5b81356129df84826020860161292c565b91505092915050565b6000813590506129f781613617565b92915050565b600060208284031215612a0f57600080fd5b6000612a1d8482850161296a565b91505092915050565b60008060408385031215612a3957600080fd5b6000612a478582860161296a565b9250506020612a588582860161296a565b9150509250929050565b600080600060608486031215612a7757600080fd5b6000612a858682870161296a565b9350506020612a968682870161296a565b9250506040612aa7868287016129e8565b9150509250925092565b60008060008060808587031215612ac757600080fd5b6000612ad58782880161296a565b9450506020612ae68782880161296a565b9350506040612af7878288016129e8565b925050606085013567ffffffffffffffff811115612b1457600080fd5b612b20878288016129be565b91505092959194509250565b60008060408385031215612b3f57600080fd5b6000612b4d8582860161296a565b9250506020612b5e8582860161297f565b9150509250929050565b60008060408385031215612b7b57600080fd5b6000612b898582860161296a565b9250506020612b9a858286016129e8565b9150509250929050565b600060208284031215612bb657600080fd5b6000612bc484828501612994565b91505092915050565b600060208284031215612bdf57600080fd5b6000612bed848285016129a9565b91505092915050565b600060208284031215612c0857600080fd5b6000612c16848285016129e8565b91505092915050565b612c28816131db565b82525050565b612c37816131ed565b82525050565b6000612c4882613078565b612c52818561308e565b9350612c6281856020860161325e565b612c6b8161342a565b840191505092915050565b6000612c8182613083565b612c8b81856130aa565b9350612c9b81856020860161325e565b612ca48161342a565b840191505092915050565b6000612cba82613083565b612cc481856130bb565b9350612cd481856020860161325e565b80840191505092915050565b6000612ced6032836130aa565b9150612cf88261343b565b604082019050919050565b6000612d106026836130aa565b9150612d1b8261348a565b604082019050919050565b6000612d336010836130aa565b9150612d3e826134d9565b602082019050919050565b6000612d566014836130aa565b9150612d6182613502565b602082019050919050565b6000612d796017836130aa565b9150612d848261352b565b602082019050919050565b6000612d9c600d836130aa565b9150612da782613554565b602082019050919050565b6000612dbf6020836130aa565b9150612dca8261357d565b602082019050919050565b6000612de26010836130aa565b9150612ded826135a6565b602082019050919050565b6000612e0560008361309f565b9150612e10826135cf565b600082019050919050565b612e2481613245565b82525050565b6000612e368285612caf565b9150612e428284612caf565b91508190509392505050565b6000612e5982612df8565b9150819050919050565b6000602082019050612e786000830184612c1f565b92915050565b6000608082019050612e936000830187612c1f565b612ea06020830186612c1f565b612ead6040830185612e1b565b8181036060830152612ebf8184612c3d565b905095945050505050565b6000602082019050612edf6000830184612c2e565b92915050565b60006020820190508181036000830152612eff8184612c76565b905092915050565b60006020820190508181036000830152612f2081612ce0565b9050919050565b60006020820190508181036000830152612f4081612d03565b9050919050565b60006020820190508181036000830152612f6081612d26565b9050919050565b60006020820190508181036000830152612f8081612d49565b9050919050565b60006020820190508181036000830152612fa081612d6c565b9050919050565b60006020820190508181036000830152612fc081612d8f565b9050919050565b60006020820190508181036000830152612fe081612db2565b9050919050565b6000602082019050818103600083015261300081612dd5565b9050919050565b600060208201905061301c6000830184612e1b565b92915050565b600061302c61303d565b905061303882826132c3565b919050565b6000604051905090565b600067ffffffffffffffff821115613062576130616133fb565b5b61306b8261342a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130d182613245565b91506130dc83613245565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131115761311061336e565b5b828201905092915050565b600061312782613245565b915061313283613245565b9250826131425761314161339d565b5b828204905092915050565b600061315882613245565b915061316383613245565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561319c5761319b61336e565b5b828202905092915050565b60006131b282613245565b91506131bd83613245565b9250828210156131d0576131cf61336e565b5b828203905092915050565b60006131e682613225565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561327c578082015181840152602081019050613261565b8381111561328b576000848401525b50505050565b600060028204905060018216806132a957607f821691505b602082108114156132bd576132bc6133cc565b5b50919050565b6132cc8261342a565b810181811067ffffffffffffffff821117156132eb576132ea6133fb565b5b80604052505050565b60006132ff82613245565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133325761333161336e565b5b600182019050919050565b600061334882613245565b915061335383613245565b9250826133635761336261339d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320746865206d6178696d756d206d696e7420616d6f756e742060008201527f6f6620612073696e676c652077616c6c65740000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746800000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4578636565646564206d6178206d696e742072616e6765000000000000000000600082015250565b7f4e6f7420746865206f776e657200000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f20636f6e74726163742063616c6c00000000000000000000000000000000600082015250565b50565b6135db816131db565b81146135e657600080fd5b50565b6135f2816131ed565b81146135fd57600080fd5b50565b613609816131f9565b811461361457600080fd5b50565b61362081613245565b811461362b57600080fd5b5056fea26469706673582212206bd52861eef6cf2767555d1d107f4092cf04e1658d386ed538e8b0ab701aae5f64736f6c6343000804003368747470733a2f2f6261646769726c732e6170702f2e6e65746c6966792f66756e6374696f6e732f636f6e646f6d2f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000002200000000000000000000000087f33a65fc7b1e7de0e137476ed5e9f2c366011b000000000000000000000000d0e24ec9616ea31dc132a6119779858209b8676b000000000000000000000000d48a4e9d3afe48530950064e4cb28d8c3cb3b5bb000000000000000000000000bac869a229e682ef7c2ba09ace1cfece0f5ec58500000000000000000000000017ce95c2448cd92c5dae9c97cd2f866d082f170b0000000000000000000000003b61cba3e0c01b4b5a6f2877e5db967c6dc0d367000000000000000000000000a5fd9b183d6e7e415a26e40896c275a636c2cf0a00000000000000000000000097ccf5672a8b37c566203bc80a3057dda29ce8bd0000000000000000000000009e43d03c604ba05bfdf928864b0b111853b0d0c5000000000000000000000000b5bb6f381bdc5463f895a0429a41135f40bd7bd2000000000000000000000000204bfb4889f6370f4627de4056db557527198e6600000000000000000000000079438224bc21b0e6b45ecf9f8caadfbdb874dedd0000000000000000000000007b0b35b416631f05f321fe74990817dca81cabde00000000000000000000000088763f7072c48fe590f76c81c2df9b8795bdc783000000000000000000000000fe677893436962d0d827aca15c114defa8717b9d000000000000000000000000b9b09311ea697c9bd16b9c41f759b852cc14b1690000000000000000000000008b98775e60174bbace479f4f600e71f1103621a20000000000000000000000000405edd14183e894bec5cea5b4938110a4d901dd00000000000000000000000065a1a168be3a323319e4a58ee9276b095a5d51f90000000000000000000000000f465f7ce5a1e26c402177194653c12e7222f12700000000000000000000000005d987577901933e6e6e11ddc8c3b3592addffc8000000000000000000000000fa90aa6c8e30f92453a3bb94750afdd853077c830000000000000000000000001b5b02e769880695d066d3b3d73bd9ca378b24df0000000000000000000000009a0ff7350e1c4ff575926c7757763477af5491bf00000000000000000000000097aa098205cc4f50eeb2cdbfa095f4ab239fd82b000000000000000000000000883ac67b8e4bd02101372ad52bbf682abc2e4a22000000000000000000000000d7806ab2746bb7674d78346b4f5d704336dc10e90000000000000000000000002b69cd0c2a939cec035ab78ca40d186ef1d6f865000000000000000000000000de9a9425b3ce28f66719ea606b1d1fdda210a94d000000000000000000000000575a505f1d1491e704d7a4a0d9e51bd8533862000000000000000000000000001dd000ee6b75de2f1208c749f29eabc6c70b4f460000000000000000000000002ef91e77b886d379f370f927d943285547d9b37e0000000000000000000000009263b9a94ab3e51d60dfdb2c6d9e01b3145a26380000000000000000000000007cafc4ea685a29ee4444b7e0afd63cb14603b7570000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a
Deployed Bytecode
0x6080604052600436106101665760003560e01c806370a08231116100d1578063b88d4fde1161008a578063cf721b1511610064578063cf721b151461051d578063dc33e68114610548578063e985e9c514610585578063f2fde38b146105c257610166565b8063b88d4fde1461048c578063c002d23d146104b5578063c87b56dd146104e057610166565b806370a082311461039d578063715018a6146103da5780638467be0d146103f15780638da5cb5b1461040d57806395d89b4114610438578063a22cb4651461046357610166565b806323b872dd1161012357806323b872dd1461028f57806332cb6b0c146102b857806342842e0e146102e357806342966c681461030c5780636352211e146103355780636c0360eb1461037257610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b314610210578063161548621461023957806318160ddd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612ba4565b6105eb565b60405161019f9190612eca565b60405180910390f35b3480156101b457600080fd5b506101bd6106cd565b6040516101ca9190612ee5565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612bf6565b61075f565b6040516102079190612e63565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612b68565b6107db565b005b34801561024557600080fd5b5061024e6108e6565b60405161025b9190613007565b60405180910390f35b34801561027057600080fd5b506102796108ec565b6040516102869190613007565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612a62565b610903565b005b3480156102c457600080fd5b506102cd610913565b6040516102da9190613007565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190612a62565b610919565b005b34801561031857600080fd5b50610333600480360381019061032e9190612bf6565b610939565b005b34801561034157600080fd5b5061035c60048036038101906103579190612bf6565b6109bb565b6040516103699190612e63565b60405180910390f35b34801561037e57600080fd5b506103876109d1565b6040516103949190612ee5565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906129fd565b610a5f565b6040516103d19190613007565b60405180910390f35b3480156103e657600080fd5b506103ef610b2f565b005b61040b60048036038101906104069190612bf6565b610bb7565b005b34801561041957600080fd5b50610422610dff565b60405161042f9190612e63565b60405180910390f35b34801561044457600080fd5b5061044d610e29565b60405161045a9190612ee5565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612b2c565b610ebb565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612ab1565b611033565b005b3480156104c157600080fd5b506104ca6110af565b6040516104d79190613007565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612bf6565b6110b5565b6040516105149190612ee5565b60405180910390f35b34801561052957600080fd5b50610532611154565b60405161053f9190613007565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a91906129fd565b61115a565b60405161057c9190613007565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612a26565b61116c565b6040516105b99190612eca565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e491906129fd565b611200565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c657506106c58261130b565b5b9050919050565b6060600280546106dc90613291565b80601f016020809104026020016040519081016040528092919081815260200182805461070890613291565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b600061076a82611375565b6107a0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e6826109bb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561084e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086d6113c3565b73ffffffffffffffffffffffffffffffffffffffff161415801561089f575061089d816108986113c3565b61116c565b155b156108d6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108e18383836113cb565b505050565b600b5481565b60006108f661147d565b6001546000540303905090565b61090e838383611486565b505050565b600a5481565b61093483838360405180602001604052806000815250611033565b505050565b3273ffffffffffffffffffffffffffffffffffffffff16610959826109bb565b73ffffffffffffffffffffffffffffffffffffffff16146109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690612fa7565b60405180910390fd5b6109b881611977565b50565b60006109c682611d1b565b600001519050919050565b600c80546109de90613291565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613291565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ac7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610b376113c3565b73ffffffffffffffffffffffffffffffffffffffff16610b55610dff565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290612fc7565b60405180910390fd5b610bb56000611faa565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90612fe7565b60405180910390fd5b600b5481610c323361115a565b610c3c91906130c6565b1115610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490612f07565b60405180910390fd5b600a5481600d54610c8e91906130c6565b1115610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690612f87565b60405180910390fd5b600081600954610cdf919061314d565b905080341015610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90612f47565b60405180910390fd5b6000610d2e610dff565b73ffffffffffffffffffffffffffffffffffffffff1634604051610d5190612e4e565b60006040518083038185875af1925050503d8060008114610d8e576040519150601f19603f3d011682016040523d82523d6000602084013e610d93565b606091505b5050905080610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90612f67565b60405180910390fd5b610de13384612070565b82600d6000828254610df391906130c6565b92505081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e3890613291565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6490613291565b8015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b5050505050905090565b610ec36113c3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f28576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f356113c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fe26113c3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110279190612eca565b60405180910390a35050565b61103e848484611486565b61105d8373ffffffffffffffffffffffffffffffffffffffff166112f8565b801561107257506110708484848461208e565b155b156110a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b60606110c082611375565b6110f6576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111006121ee565b9050600081511415611121576040518060200160405280600081525061114c565b8061112b84612280565b60405160200161113c929190612e2a565b6040516020818303038152906040525b915050919050565b600d5481565b60006111658261242d565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112086113c3565b73ffffffffffffffffffffffffffffffffffffffff16611226610dff565b73ffffffffffffffffffffffffffffffffffffffff161461127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390612fc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390612f27565b60405180910390fd5b6112f581611faa565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161138061147d565b1115801561138f575060005482105b80156113bc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061149182611d1b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166114b86113c3565b73ffffffffffffffffffffffffffffffffffffffff1614806114eb57506114ea82600001516114e56113c3565b61116c565b5b8061153057506114f96113c3565b73ffffffffffffffffffffffffffffffffffffffff166115188461075f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611569576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115d2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611639576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61164685858560016124fd565b61165660008484600001516113cb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611907576000548110156119065782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708585856001612503565b5050505050565b600061198282611d1b565b9050611996816000015160008460016124fd565b6119a660008383600001516113cb565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c9257600054811015611c915781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d0581600001516000846001612503565b6001600081548092919060010191905055505050565b611d236128e9565b600082905080611d3161147d565b11158015611d40575060005481105b15611f73576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f7157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e55578092505050611fa5565b5b600115611f7057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f6b578092505050611fa5565b611e56565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61208a828260405180602001604052806000815250612509565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b46113c3565b8786866040518563ffffffff1660e01b81526004016120d69493929190612e7e565b602060405180830381600087803b1580156120f057600080fd5b505af192505050801561212157506040513d601f19601f8201168201806040525081019061211e9190612bcd565b60015b61219b573d8060008114612151576040519150601f19603f3d011682016040523d82523d6000602084013e612156565b606091505b50600081511415612193576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546121fd90613291565b80601f016020809104026020016040519081016040528092919081815260200182805461222990613291565b80156122765780601f1061224b57610100808354040283529160200191612276565b820191906000526020600020905b81548152906001019060200180831161225957829003601f168201915b5050505050905090565b606060008214156122c8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612428565b600082905060005b600082146122fa5780806122e3906132f4565b915050600a826122f3919061311c565b91506122d0565b60008167ffffffffffffffff81111561233c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561236e5781602001600182028036833780820191505090505b5090505b600085146124215760018261238791906131a7565b9150600a85612396919061333d565b60306123a291906130c6565b60f81b8183815181106123de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561241a919061311c565b9450612372565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612495576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612516838383600161251b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612588576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156125c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d060008683876124fd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561279a57506127998773ffffffffffffffffffffffffffffffffffffffff166112f8565b5b15612860575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461280f600088848060010195508861208e565b612845576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156127a057826000541461285b57600080fd5b6128cc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612861575b8160008190555050506128e26000868387612503565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061293f61293a84613047565b613022565b90508281526020810184848401111561295757600080fd5b61296284828561324f565b509392505050565b600081359050612979816135d2565b92915050565b60008135905061298e816135e9565b92915050565b6000813590506129a381613600565b92915050565b6000815190506129b881613600565b92915050565b600082601f8301126129cf57600080fd5b81356129df84826020860161292c565b91505092915050565b6000813590506129f781613617565b92915050565b600060208284031215612a0f57600080fd5b6000612a1d8482850161296a565b91505092915050565b60008060408385031215612a3957600080fd5b6000612a478582860161296a565b9250506020612a588582860161296a565b9150509250929050565b600080600060608486031215612a7757600080fd5b6000612a858682870161296a565b9350506020612a968682870161296a565b9250506040612aa7868287016129e8565b9150509250925092565b60008060008060808587031215612ac757600080fd5b6000612ad58782880161296a565b9450506020612ae68782880161296a565b9350506040612af7878288016129e8565b925050606085013567ffffffffffffffff811115612b1457600080fd5b612b20878288016129be565b91505092959194509250565b60008060408385031215612b3f57600080fd5b6000612b4d8582860161296a565b9250506020612b5e8582860161297f565b9150509250929050565b60008060408385031215612b7b57600080fd5b6000612b898582860161296a565b9250506020612b9a858286016129e8565b9150509250929050565b600060208284031215612bb657600080fd5b6000612bc484828501612994565b91505092915050565b600060208284031215612bdf57600080fd5b6000612bed848285016129a9565b91505092915050565b600060208284031215612c0857600080fd5b6000612c16848285016129e8565b91505092915050565b612c28816131db565b82525050565b612c37816131ed565b82525050565b6000612c4882613078565b612c52818561308e565b9350612c6281856020860161325e565b612c6b8161342a565b840191505092915050565b6000612c8182613083565b612c8b81856130aa565b9350612c9b81856020860161325e565b612ca48161342a565b840191505092915050565b6000612cba82613083565b612cc481856130bb565b9350612cd481856020860161325e565b80840191505092915050565b6000612ced6032836130aa565b9150612cf88261343b565b604082019050919050565b6000612d106026836130aa565b9150612d1b8261348a565b604082019050919050565b6000612d336010836130aa565b9150612d3e826134d9565b602082019050919050565b6000612d566014836130aa565b9150612d6182613502565b602082019050919050565b6000612d796017836130aa565b9150612d848261352b565b602082019050919050565b6000612d9c600d836130aa565b9150612da782613554565b602082019050919050565b6000612dbf6020836130aa565b9150612dca8261357d565b602082019050919050565b6000612de26010836130aa565b9150612ded826135a6565b602082019050919050565b6000612e0560008361309f565b9150612e10826135cf565b600082019050919050565b612e2481613245565b82525050565b6000612e368285612caf565b9150612e428284612caf565b91508190509392505050565b6000612e5982612df8565b9150819050919050565b6000602082019050612e786000830184612c1f565b92915050565b6000608082019050612e936000830187612c1f565b612ea06020830186612c1f565b612ead6040830185612e1b565b8181036060830152612ebf8184612c3d565b905095945050505050565b6000602082019050612edf6000830184612c2e565b92915050565b60006020820190508181036000830152612eff8184612c76565b905092915050565b60006020820190508181036000830152612f2081612ce0565b9050919050565b60006020820190508181036000830152612f4081612d03565b9050919050565b60006020820190508181036000830152612f6081612d26565b9050919050565b60006020820190508181036000830152612f8081612d49565b9050919050565b60006020820190508181036000830152612fa081612d6c565b9050919050565b60006020820190508181036000830152612fc081612d8f565b9050919050565b60006020820190508181036000830152612fe081612db2565b9050919050565b6000602082019050818103600083015261300081612dd5565b9050919050565b600060208201905061301c6000830184612e1b565b92915050565b600061302c61303d565b905061303882826132c3565b919050565b6000604051905090565b600067ffffffffffffffff821115613062576130616133fb565b5b61306b8261342a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006130d182613245565b91506130dc83613245565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131115761311061336e565b5b828201905092915050565b600061312782613245565b915061313283613245565b9250826131425761314161339d565b5b828204905092915050565b600061315882613245565b915061316383613245565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561319c5761319b61336e565b5b828202905092915050565b60006131b282613245565b91506131bd83613245565b9250828210156131d0576131cf61336e565b5b828203905092915050565b60006131e682613225565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561327c578082015181840152602081019050613261565b8381111561328b576000848401525b50505050565b600060028204905060018216806132a957607f821691505b602082108114156132bd576132bc6133cc565b5b50919050565b6132cc8261342a565b810181811067ffffffffffffffff821117156132eb576132ea6133fb565b5b80604052505050565b60006132ff82613245565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133325761333161336e565b5b600182019050919050565b600061334882613245565b915061335383613245565b9250826133635761336261339d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320746865206d6178696d756d206d696e7420616d6f756e742060008201527f6f6620612073696e676c652077616c6c65740000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746800000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4578636565646564206d6178206d696e742072616e6765000000000000000000600082015250565b7f4e6f7420746865206f776e657200000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f20636f6e74726163742063616c6c00000000000000000000000000000000600082015250565b50565b6135db816131db565b81146135e657600080fd5b50565b6135f2816131ed565b81146135fd57600080fd5b50565b613609816131f9565b811461361457600080fd5b50565b61362081613245565b811461362b57600080fd5b5056fea26469706673582212206bd52861eef6cf2767555d1d107f4092cf04e1658d386ed538e8b0ab701aae5f64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004a0000000000000000000000000000000000000000000000000000000000000002200000000000000000000000087f33a65fc7b1e7de0e137476ed5e9f2c366011b000000000000000000000000d0e24ec9616ea31dc132a6119779858209b8676b000000000000000000000000d48a4e9d3afe48530950064e4cb28d8c3cb3b5bb000000000000000000000000bac869a229e682ef7c2ba09ace1cfece0f5ec58500000000000000000000000017ce95c2448cd92c5dae9c97cd2f866d082f170b0000000000000000000000003b61cba3e0c01b4b5a6f2877e5db967c6dc0d367000000000000000000000000a5fd9b183d6e7e415a26e40896c275a636c2cf0a00000000000000000000000097ccf5672a8b37c566203bc80a3057dda29ce8bd0000000000000000000000009e43d03c604ba05bfdf928864b0b111853b0d0c5000000000000000000000000b5bb6f381bdc5463f895a0429a41135f40bd7bd2000000000000000000000000204bfb4889f6370f4627de4056db557527198e6600000000000000000000000079438224bc21b0e6b45ecf9f8caadfbdb874dedd0000000000000000000000007b0b35b416631f05f321fe74990817dca81cabde00000000000000000000000088763f7072c48fe590f76c81c2df9b8795bdc783000000000000000000000000fe677893436962d0d827aca15c114defa8717b9d000000000000000000000000b9b09311ea697c9bd16b9c41f759b852cc14b1690000000000000000000000008b98775e60174bbace479f4f600e71f1103621a20000000000000000000000000405edd14183e894bec5cea5b4938110a4d901dd00000000000000000000000065a1a168be3a323319e4a58ee9276b095a5d51f90000000000000000000000000f465f7ce5a1e26c402177194653c12e7222f12700000000000000000000000005d987577901933e6e6e11ddc8c3b3592addffc8000000000000000000000000fa90aa6c8e30f92453a3bb94750afdd853077c830000000000000000000000001b5b02e769880695d066d3b3d73bd9ca378b24df0000000000000000000000009a0ff7350e1c4ff575926c7757763477af5491bf00000000000000000000000097aa098205cc4f50eeb2cdbfa095f4ab239fd82b000000000000000000000000883ac67b8e4bd02101372ad52bbf682abc2e4a22000000000000000000000000d7806ab2746bb7674d78346b4f5d704336dc10e90000000000000000000000002b69cd0c2a939cec035ab78ca40d186ef1d6f865000000000000000000000000de9a9425b3ce28f66719ea606b1d1fdda210a94d000000000000000000000000575a505f1d1491e704d7a4a0d9e51bd8533862000000000000000000000000001dd000ee6b75de2f1208c749f29eabc6c70b4f460000000000000000000000002ef91e77b886d379f370f927d943285547d9b37e0000000000000000000000009263b9a94ab3e51d60dfdb2c6d9e01b3145a26380000000000000000000000007cafc4ea685a29ee4444b7e0afd63cb14603b7570000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a
-----Decoded View---------------
Arg [0] : addrs (address[]): 0x87F33a65fC7B1E7De0E137476ed5e9F2C366011B,0xD0e24EC9616Ea31dc132A6119779858209b8676b,0xD48a4E9d3AFE48530950064e4Cb28d8c3CB3B5bb,0xBaC869a229e682EF7c2bA09AcE1cFEcE0f5Ec585,0x17ce95c2448cd92C5DAE9C97cd2F866D082f170B,0x3B61CBa3E0C01B4b5A6F2877e5DB967C6dc0D367,0xA5FD9b183d6E7E415A26e40896c275a636C2CF0a,0x97ccf5672A8b37C566203bC80A3057dDA29cE8bd,0x9e43d03c604Ba05bfDf928864b0B111853b0D0C5,0xb5BB6f381bDC5463F895A0429A41135f40Bd7BD2,0x204bFb4889F6370f4627De4056dB557527198e66,0x79438224Bc21b0E6B45ECF9F8caADfBdB874DedD,0x7B0B35b416631f05f321fE74990817dcA81caBDE,0x88763f7072c48fe590F76C81c2dF9b8795bdc783,0xFE677893436962D0D827aCa15C114DEFa8717B9D,0xb9b09311Ea697C9bD16B9c41f759B852cC14b169,0x8b98775e60174bbaCE479f4F600e71f1103621a2,0x0405EdD14183E894BEc5cEa5b4938110A4D901dD,0x65A1A168Be3A323319E4A58EE9276b095A5d51f9,0x0F465F7ce5a1e26C402177194653c12e7222F127,0x05D987577901933e6E6e11ddc8C3b3592aDDffc8,0xfa90AA6c8e30f92453a3BB94750afDd853077c83,0x1B5b02e769880695d066D3b3D73Bd9CA378B24df,0x9A0FF7350e1C4FF575926c7757763477aF5491Bf,0x97aa098205CC4F50EeB2cdbfA095f4ab239Fd82b,0x883AC67b8E4bD02101372ad52bbf682abC2E4A22,0xD7806aB2746Bb7674d78346B4F5d704336DC10E9,0x2b69cd0C2a939ceC035AB78CA40d186EF1D6F865,0xDe9a9425b3CE28f66719eA606B1d1FDda210A94d,0x575A505f1d1491E704d7A4A0d9e51BD853386200,0x1DD000eE6b75dE2f1208C749f29EAbc6C70b4F46,0x2ef91E77b886D379f370f927d943285547D9b37e,0x9263B9A94Ab3e51d60dFdb2C6d9e01b3145A2638,0x7cAfc4EA685a29ee4444B7e0Afd63cB14603B757
Arg [1] : amounts (uint256[]): 1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,2,1,6,2,1,1,1,1,1,1,1,1,3,3,1,10
-----Encoded View---------------
72 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000004a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [3] : 00000000000000000000000087f33a65fc7b1e7de0e137476ed5e9f2c366011b
Arg [4] : 000000000000000000000000d0e24ec9616ea31dc132a6119779858209b8676b
Arg [5] : 000000000000000000000000d48a4e9d3afe48530950064e4cb28d8c3cb3b5bb
Arg [6] : 000000000000000000000000bac869a229e682ef7c2ba09ace1cfece0f5ec585
Arg [7] : 00000000000000000000000017ce95c2448cd92c5dae9c97cd2f866d082f170b
Arg [8] : 0000000000000000000000003b61cba3e0c01b4b5a6f2877e5db967c6dc0d367
Arg [9] : 000000000000000000000000a5fd9b183d6e7e415a26e40896c275a636c2cf0a
Arg [10] : 00000000000000000000000097ccf5672a8b37c566203bc80a3057dda29ce8bd
Arg [11] : 0000000000000000000000009e43d03c604ba05bfdf928864b0b111853b0d0c5
Arg [12] : 000000000000000000000000b5bb6f381bdc5463f895a0429a41135f40bd7bd2
Arg [13] : 000000000000000000000000204bfb4889f6370f4627de4056db557527198e66
Arg [14] : 00000000000000000000000079438224bc21b0e6b45ecf9f8caadfbdb874dedd
Arg [15] : 0000000000000000000000007b0b35b416631f05f321fe74990817dca81cabde
Arg [16] : 00000000000000000000000088763f7072c48fe590f76c81c2df9b8795bdc783
Arg [17] : 000000000000000000000000fe677893436962d0d827aca15c114defa8717b9d
Arg [18] : 000000000000000000000000b9b09311ea697c9bd16b9c41f759b852cc14b169
Arg [19] : 0000000000000000000000008b98775e60174bbace479f4f600e71f1103621a2
Arg [20] : 0000000000000000000000000405edd14183e894bec5cea5b4938110a4d901dd
Arg [21] : 00000000000000000000000065a1a168be3a323319e4a58ee9276b095a5d51f9
Arg [22] : 0000000000000000000000000f465f7ce5a1e26c402177194653c12e7222f127
Arg [23] : 00000000000000000000000005d987577901933e6e6e11ddc8c3b3592addffc8
Arg [24] : 000000000000000000000000fa90aa6c8e30f92453a3bb94750afdd853077c83
Arg [25] : 0000000000000000000000001b5b02e769880695d066d3b3d73bd9ca378b24df
Arg [26] : 0000000000000000000000009a0ff7350e1c4ff575926c7757763477af5491bf
Arg [27] : 00000000000000000000000097aa098205cc4f50eeb2cdbfa095f4ab239fd82b
Arg [28] : 000000000000000000000000883ac67b8e4bd02101372ad52bbf682abc2e4a22
Arg [29] : 000000000000000000000000d7806ab2746bb7674d78346b4f5d704336dc10e9
Arg [30] : 0000000000000000000000002b69cd0c2a939cec035ab78ca40d186ef1d6f865
Arg [31] : 000000000000000000000000de9a9425b3ce28f66719ea606b1d1fdda210a94d
Arg [32] : 000000000000000000000000575a505f1d1491e704d7a4a0d9e51bd853386200
Arg [33] : 0000000000000000000000001dd000ee6b75de2f1208c749f29eabc6c70b4f46
Arg [34] : 0000000000000000000000002ef91e77b886d379f370f927d943285547d9b37e
Arg [35] : 0000000000000000000000009263b9a94ab3e51d60dfdb2c6d9e01b3145a2638
Arg [36] : 0000000000000000000000007cafc4ea685a29ee4444b7e0afd63cb14603b757
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [39] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [41] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [42] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [43] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [44] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [45] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [46] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [47] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [48] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [49] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [50] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [51] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [52] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [53] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [54] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [55] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [56] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [57] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [58] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [59] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [60] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [61] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [62] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [63] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [64] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [65] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [66] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [67] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [68] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [69] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [70] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [71] : 000000000000000000000000000000000000000000000000000000000000000a
Loading...
Loading
Loading...
Loading
[ 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.