ERC-721
Overview
Max Total Supply
10,000 Bitaverse
Holders
579
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BitaverseLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Bitaverse
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // import ERC-721 // import SafeMath pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract Bitaverse is ERC721{ address public devAddress; address public RecipientAddress = 0x9bcFa64Ce1c253716E1f6bBEC40a287980cdFA03; //constant using Strings for uint256; uint256 private constant TotalSupply = 10000; uint256 private TotalMint = 60; uint256 public SalePrice = 0.088 ether; uint256 public SpecialNFT = 0; string public baseTokenURI; string public RareTokenURI; bool public saleStart = false; mapping(address => uint256) public WhiteListMint; mapping(address => uint256) public NFTSale; mapping(address => bool) public PartnerList; struct FreeNFT{ uint256 Nomal; uint256 Special; } mapping(address => FreeNFT)public PartnerOwned; constructor() ERC721("Bitaverse","Bitaverse"){ devAddress = msg.sender; PartnerOwned[0x9bcFa64Ce1c253716E1f6bBEC40a287980cdFA03].Nomal = 401; PartnerOwned[0x9bcFa64Ce1c253716E1f6bBEC40a287980cdFA03].Special = 50; PartnerOwned[0x3B0F35FA4c7f38Fc577eB9aF105aa3787AC3f8C6].Nomal = 50; PartnerOwned[0x3B0F35FA4c7f38Fc577eB9aF105aa3787AC3f8C6].Special = 2; PartnerOwned[0x619218c1d29510f957B0b1dab40F764D930A7D55].Nomal = 160; PartnerOwned[0xe8dfbcbEcBD6B3c7167DA7e36445B7800F138B7C].Nomal = 48; PartnerOwned[0x48DAF617B4b65c645a2ffB69FF1D6919d8713e70].Nomal = 42; PartnerOwned[0x473A477d057bCF5a5a073071924Dc4A3924E4566].Nomal = 50; PartnerOwned[0x473A477d057bCF5a5a073071924Dc4A3924E4566].Special = 2; PartnerOwned[0x0B92C3c342531De27486187f9cc74aCEF376B027].Nomal = 50; PartnerOwned[0x0B92C3c342531De27486187f9cc74aCEF376B027].Special = 2; PartnerOwned[0x546213e2597de9a5aB4f7D73fbf67a2eeEA81Aff].Nomal = 50; PartnerOwned[0x546213e2597de9a5aB4f7D73fbf67a2eeEA81Aff].Special = 2; PartnerOwned[0xABCC4d53252CCF01e0635C0FD9f3c4CECA02271B].Nomal = 50; PartnerOwned[0xABCC4d53252CCF01e0635C0FD9f3c4CECA02271B].Special = 2; } function setBaseURI(string memory baseURI) external{ require(msg.sender == devAddress,"You are not the dev"); baseTokenURI = baseURI; } function setRareBaseURI(string memory baseURI)external{ require(msg.sender == devAddress,"You are not the dev"); RareTokenURI = baseURI; } function tokenURI(uint256 _tokenId) public override view returns (string memory){ if(_tokenId>60){ return string(abi.encodePacked(baseTokenURI,_tokenId.toString())); } else{ return string(abi.encodePacked(RareTokenURI,_tokenId.toString())); } } function totalSupply() public pure returns(uint256){ return TotalSupply; } function total_Mint() public view returns(uint256){ return TotalMint; } function SpecialNFTRemain()public view returns(uint256){ return 60 - SpecialNFT; } function addParnerOwn(address user,uint256 rare,uint256 value)external{ require(msg.sender == devAddress,"You are not the dev"); PartnerOwned[user].Nomal = value; PartnerOwned[user].Special = rare; } function SaleStart(bool button) external{ require(msg.sender == devAddress,"You are not the dev"); saleStart = button; } function setSalePrice(uint256 price) external{ require(msg.sender == devAddress,"You are not the dev"); SalePrice = price; } function setPartner(address[] memory input) external{ require(msg.sender == devAddress,"You are not the dev"); for(uint256 a=0;a<input.length;a++){ PartnerList[input[a]] = true; } } function setWhiteList(address[] memory input) external{ require(msg.sender == devAddress,"You are not the dev"); for(uint256 a=0;a<input.length;a++){ WhiteListMint[input[a]]++; } //["address","address"] } //NFTSale function mint(uint256 amount) external payable{ require(msg.value == SalePrice * amount,"Wrong input price"); require(total_Mint() + amount <= TotalSupply,"Sale is ended"); require(saleStart == true,"Sale is not start yet"); require(NFTSale[msg.sender] + amount <= 100,"Mint exceed!"); NFTSale[msg.sender] += amount; for(uint256 num = 0;num<amount;num++){ TotalMint++; _mint(msg.sender,TotalMint); } payable(RecipientAddress).transfer(address(this).balance); } function WhiteListMints() external{ require(WhiteListMint[msg.sender] > 0,"You already got a Bitaverse!"); require(total_Mint() < TotalSupply,"Sale is ended"); WhiteListMint[msg.sender]--; TotalMint++; _mint(msg.sender,TotalMint); } function SponsorAmount(address receiver) external{ require(PartnerList[msg.sender] == true,"You are not the partner"); require(PartnerOwned[msg.sender].Nomal >0,"You've done your part"); require(total_Mint() < TotalSupply,"Sale is ended"); PartnerOwned[msg.sender].Nomal--; TotalMint++; _mint(receiver,TotalMint); } function RareNftMint(address receiver) external{ require(PartnerList[msg.sender] == true,"You are not the partner"); require(PartnerOwned[msg.sender].Special >0,"You've done your part"); require(SpecialNFT < 60,"Sale out all special NFT"); PartnerOwned[msg.sender].Special--; SpecialNFT++; _mint(receiver,SpecialNFT); } function OwnerSend(address[] memory input)external{ require(msg.sender == devAddress,"You are not the dev"); require(total_Mint() + input.length < TotalSupply,"mint finish"); for(uint256 a=0;a<input.length;a++){ TotalMint++; _mint(input[a],TotalMint); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"input","type":"address[]"}],"name":"OwnerSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PartnerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PartnerOwned","outputs":[{"internalType":"uint256","name":"Nomal","type":"uint256"},{"internalType":"uint256","name":"Special","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"RareNftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RareTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RecipientAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"button","type":"bool"}],"name":"SaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SpecialNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SpecialNFTRemain","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"SponsorAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WhiteListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhiteListMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"rare","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"addParnerOwn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"input","type":"address[]"}],"name":"setPartner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setRareBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"input","type":"address[]"}],"name":"setWhiteList","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":"pure","type":"function"},{"inputs":[],"name":"total_Mint","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"}]
Contract Creation Code
6080604052739bcfa64ce1c253716e1f6bbec40a287980cdfa03600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550603c600855670138a388a43c00006009556000600a556000600d60006101000a81548160ff0219169083151502179055503480156200009757600080fd5b506040518060400160405280600981526020017f42697461766572736500000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f426974617665727365000000000000000000000000000000000000000000000081525081600090805190602001906200011c929190620006e4565b50806001908051906020019062000135929190620006e4565b50505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061019160116000739bcfa64ce1c253716e1f6bbec40a287980cdfa0373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550603260116000739bcfa64ce1c253716e1f6bbec40a287980cdfa0373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550603260116000733b0f35fa4c7f38fc577eb9af105aa3787ac3f8c673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550600260116000733b0f35fa4c7f38fc577eb9af105aa3787ac3f8c673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555060a06011600073619218c1d29510f957b0b1dab40f764d930a7d5573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555060306011600073e8dfbcbecbd6b3c7167da7e36445b7800f138b7c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550602a601160007348daf617b4b65c645a2ffb69ff1d6919d8713e7073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555060326011600073473a477d057bcf5a5a073071924dc4a3924e456673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555060026011600073473a477d057bcf5a5a073071924dc4a3924e456673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550603260116000730b92c3c342531de27486187f9cc74acef376b02773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550600260116000730b92c3c342531de27486187f9cc74acef376b02773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555060326011600073546213e2597de9a5ab4f7d73fbf67a2eeea81aff73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555060026011600073546213e2597de9a5ab4f7d73fbf67a2eeea81aff73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555060326011600073abcc4d53252ccf01e0635c0fd9f3c4ceca02271b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555060026011600073abcc4d53252ccf01e0635c0fd9f3c4ceca02271b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550620007f9565b828054620006f29062000794565b90600052602060002090601f01602090048101928262000716576000855562000762565b82601f106200073157805160ff191683800117855562000762565b8280016001018555821562000762579182015b828111156200076157825182559160200191906001019062000744565b5b50905062000771919062000775565b5090565b5b808211156200079057600081600090555060010162000776565b5090565b60006002820490506001821680620007ad57607f821691505b60208210811415620007c457620007c3620007ca565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6145df80620008096000396000f3fe6080604052600436106102305760003560e01c806394f63cf91161012e578063d547cfb7116100ab578063e985e9c51161006f578063e985e9c51461083c578063ecb9db0714610879578063edb19ae8146108a2578063f0f36f91146108e0578063f82c14ba1461090b57610230565b8063d547cfb714610755578063db72a75914610780578063db8f24b8146107ab578063ddc5cb1d146107e8578063e5e3e5171461081157610230565b8063ab0bcc41116100f2578063ab0bcc411461065e578063b827cb5b14610689578063b88d4fde146106c6578063c110beef146106ef578063c87b56dd1461071857610230565b806394f63cf91461058857806395d89b41146105b15780639727cc9b146105dc578063a0712d6814610619578063a22cb4651461063557610230565b806341ccb623116101bc57806370a082311161018057806370a08231146104a5578063775b9c13146104e257806381eec9b01461050b57806387a21475146105345780638a758e8f1461055d57610230565b806341ccb623146103c257806342842e0e146103eb5780634901d7111461041457806355f804b31461043f5780636352211e1461046857610230565b806318160ddd1161020357806318160ddd146103035780631919fed71461032e57806323b872dd1461035757806325ab7bb4146103805780633ad10ef61461039757610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613200565b610936565b60405161026991906137cf565b60405180910390f35b34801561027e57600080fd5b50610287610a18565b60405161029491906137ea565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906132a3565b610aaa565b6040516102d19190613768565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906130f7565b610b2f565b005b34801561030f57600080fd5b50610318610c47565b6040516103259190613aec565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906132a3565b610c51565b005b34801561036357600080fd5b5061037e60048036038101906103799190612fe1565b610ceb565b005b34801561038c57600080fd5b50610395610d4b565b005b3480156103a357600080fd5b506103ac610e93565b6040516103b99190613768565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e4919061318a565b610eb9565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612fe1565b610fde565b005b34801561042057600080fd5b50610429610ffe565b6040516104369190613aec565b60405180910390f35b34801561044b57600080fd5b506104666004803603810190610461919061325a565b611004565b005b34801561047457600080fd5b5061048f600480360381019061048a91906132a3565b6110ae565b60405161049c9190613768565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190612f74565b611160565b6040516104d99190613aec565b60405180910390f35b3480156104ee57600080fd5b506105096004803603810190610504919061318a565b611218565b005b34801561051757600080fd5b50610532600480360381019061052d919061325a565b61133a565b005b34801561054057600080fd5b5061055b600480360381019061055691906131d3565b6113e4565b005b34801561056957600080fd5b50610572611491565b60405161057f9190613aec565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa919061318a565b6114a7565b005b3480156105bd57600080fd5b506105c66115ef565b6040516105d391906137ea565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190612f74565b611681565b60405161061091906137cf565b60405180910390f35b610633600480360381019061062e91906132a3565b6116a1565b005b34801561064157600080fd5b5061065c600480360381019061065791906130b7565b611930565b005b34801561066a57600080fd5b50610673611946565b60405161068091906137cf565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612f74565b611959565b6040516106bd9190613aec565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190613034565b611971565b005b3480156106fb57600080fd5b5061071660048036038101906107119190613137565b6119d3565b005b34801561072457600080fd5b5061073f600480360381019061073a91906132a3565b611af6565b60405161074c91906137ea565b60405180910390f35b34801561076157600080fd5b5061076a611b66565b60405161077791906137ea565b60405180910390f35b34801561078c57600080fd5b50610795611bf4565b6040516107a29190613aec565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190612f74565b611bfa565b6040516107df9190613aec565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190612f74565b611c12565b005b34801561081d57600080fd5b50610826611dee565b6040516108339190613768565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190612fa1565b611e14565b60405161087091906137cf565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190612f74565b611ea8565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190612f74565b61208a565b6040516108d7929190613b07565b60405180910390f35b3480156108ec57600080fd5b506108f56120ae565b60405161090291906137ea565b60405180910390f35b34801561091757600080fd5b5061092061213c565b60405161092d9190613aec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a115750610a1082612146565b5b9050919050565b606060008054610a2790613e30565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5390613e30565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b6000610ab5826121b0565b610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613a0c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3a826110ae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290613a4c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bca61221c565b73ffffffffffffffffffffffffffffffffffffffff161480610bf95750610bf881610bf361221c565b611e14565b5b610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f9061394c565b60405180910390fd5b610c428383612224565b505050565b6000612710905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd89061390c565b60405180910390fd5b8060098190555050565b610cfc610cf661221c565b826122dd565b610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613a8c565b60405180910390fd5b610d468383836123bb565b505050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490613acc565b60405180910390fd5b612710610dd861213c565b10610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061380c565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610e6890613e06565b919050555060086000815480929190610e8090613e93565b9190505550610e9133600854612622565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f409061390c565b60405180910390fd5b60005b8151811015610fda57600160106000848481518110610f6e57610f6d613f9a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610fd290613e93565b915050610f4c565b5050565b610ff983838360405180602001604052806000815250611971565b505050565b600a5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b9061390c565b60405180910390fd5b80600b90805190602001906110aa929190612cea565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906139ac565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c89061398c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f9061390c565b60405180910390fd5b60005b815181101561133657600e60008383815181106112cb576112ca613f9a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061131e90613e93565b9190505550808061132e90613e93565b9150506112ab565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c19061390c565b60405180910390fd5b80600c90805190602001906113e0929190612cea565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b9061390c565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000600a54603c6114a29190613d1c565b905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e9061390c565b60405180910390fd5b612710815161154461213c565b61154e9190613c3b565b1061158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906138ac565b60405180910390fd5b60005b81518110156115eb57600860008154809291906115ad90613e93565b91905055506115d88282815181106115c8576115c7613f9a565b5b6020026020010151600854612622565b80806115e390613e93565b915050611591565b5050565b6060600180546115fe90613e30565b80601f016020809104026020016040519081016040528092919081815260200182805461162a90613e30565b80156116775780601f1061164c57610100808354040283529160200191611677565b820191906000526020600020905b81548152906001019060200180831161165a57829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b806009546116af9190613cc2565b34146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613aac565b60405180910390fd5b612710816116fc61213c565b6117069190613c3b565b1115611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061380c565b60405180910390fd5b60011515600d60009054906101000a900460ff1615151461179d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117949061396c565b60405180910390fd5b606481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ea9190613c3b565b111561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290613a6c565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187a9190613c3b565b9250508190555060005b818110156118c3576008600081548092919061189f90613e93565b91905055506118b033600854612622565b80806118bb90613e93565b915050611884565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561192c573d6000803e3d6000fd5b5050565b61194261193b61221c565b83836127fc565b5050565b600d60009054906101000a900460ff1681565b600e6020528060005260406000206000915090505481565b61198261197c61221c565b836122dd565b6119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890613a8c565b60405180910390fd5b6119cd84848484612969565b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a9061390c565b60405180910390fd5b80601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555081601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550505050565b6060603c821115611b3357600b611b0c836129c5565b604051602001611b1d929190613744565b6040516020818303038152906040529050611b61565b600c611b3e836129c5565b604051602001611b4f929190613744565b60405160208183030381529060405290505b919050565b600b8054611b7390613e30565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9f90613e30565b8015611bec5780601f10611bc157610100808354040283529160200191611bec565b820191906000526020600020905b815481529060010190602001808311611bcf57829003601f168201915b505050505081565b60095481565b600f6020528060005260406000206000915090505481565b60011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90613a2c565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906139ec565b60405180910390fd5b603c600a5410611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d669061388c565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001016000815480929190611dc290613e06565b9190505550600a6000815480929190611dda90613e93565b9190505550611deb81600a54612622565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290613a2c565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb7906139ec565b60405180910390fd5b612710611fcb61213c565b1061200b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120029061380c565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600081548092919061205e90613e06565b91905055506008600081548092919061207690613e93565b919050555061208781600854612622565b50565b60116020528060005260406000206000915090508060000154908060010154905082565b600c80546120bb90613e30565b80601f01602080910402602001604051908101604052809291908181526020018280546120e790613e30565b80156121345780601f1061210957610100808354040283529160200191612134565b820191906000526020600020905b81548152906001019060200180831161211757829003601f168201915b505050505081565b6000600854905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612297836110ae565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122e8826121b0565b612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e9061392c565b60405180910390fd5b6000612332836110ae565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123a157508373ffffffffffffffffffffffffffffffffffffffff1661238984610aaa565b73ffffffffffffffffffffffffffffffffffffffff16145b806123b257506123b18185611e14565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123db826110ae565b73ffffffffffffffffffffffffffffffffffffffff1614612431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124289061384c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612498906138cc565b60405180910390fd5b6124ac838383612b26565b6124b7600082612224565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125079190613d1c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255e9190613c3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461261d838383612b2b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612689906139cc565b60405180910390fd5b61269b816121b0565b156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d29061386c565b60405180910390fd5b6126e760008383612b26565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127379190613c3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127f860008383612b2b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561286b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612862906138ec565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161295c91906137cf565b60405180910390a3505050565b6129748484846123bb565b61298084848484612b30565b6129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b69061382c565b60405180910390fd5b50505050565b60606000821415612a0d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b21565b600082905060005b60008214612a3f578080612a2890613e93565b915050600a82612a389190613c91565b9150612a15565b60008167ffffffffffffffff811115612a5b57612a5a613fc9565b5b6040519080825280601f01601f191660200182016040528015612a8d5781602001600182028036833780820191505090505b5090505b60008514612b1a57600182612aa69190613d1c565b9150600a85612ab59190613edc565b6030612ac19190613c3b565b60f81b818381518110612ad757612ad6613f9a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b139190613c91565b9450612a91565b8093505050505b919050565b505050565b505050565b6000612b518473ffffffffffffffffffffffffffffffffffffffff16612cc7565b15612cba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b7a61221c565b8786866040518563ffffffff1660e01b8152600401612b9c9493929190613783565b602060405180830381600087803b158015612bb657600080fd5b505af1925050508015612be757506040513d601f19601f82011682018060405250810190612be4919061322d565b60015b612c6a573d8060008114612c17576040519150601f19603f3d011682016040523d82523d6000602084013e612c1c565b606091505b50600081511415612c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c599061382c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cbf565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612cf690613e30565b90600052602060002090601f016020900481019282612d185760008555612d5f565b82601f10612d3157805160ff1916838001178555612d5f565b82800160010185558215612d5f579182015b82811115612d5e578251825591602001919060010190612d43565b5b509050612d6c9190612d70565b5090565b5b80821115612d89576000816000905550600101612d71565b5090565b6000612da0612d9b84613b55565b613b30565b90508083825260208201905082856020860282011115612dc357612dc2613ffd565b5b60005b85811015612df35781612dd98882612e81565b845260208401935060208301925050600181019050612dc6565b5050509392505050565b6000612e10612e0b84613b81565b613b30565b905082815260208101848484011115612e2c57612e2b614002565b5b612e37848285613dc4565b509392505050565b6000612e52612e4d84613bb2565b613b30565b905082815260208101848484011115612e6e57612e6d614002565b5b612e79848285613dc4565b509392505050565b600081359050612e908161454d565b92915050565b600082601f830112612eab57612eaa613ff8565b5b8135612ebb848260208601612d8d565b91505092915050565b600081359050612ed381614564565b92915050565b600081359050612ee88161457b565b92915050565b600081519050612efd8161457b565b92915050565b600082601f830112612f1857612f17613ff8565b5b8135612f28848260208601612dfd565b91505092915050565b600082601f830112612f4657612f45613ff8565b5b8135612f56848260208601612e3f565b91505092915050565b600081359050612f6e81614592565b92915050565b600060208284031215612f8a57612f8961400c565b5b6000612f9884828501612e81565b91505092915050565b60008060408385031215612fb857612fb761400c565b5b6000612fc685828601612e81565b9250506020612fd785828601612e81565b9150509250929050565b600080600060608486031215612ffa57612ff961400c565b5b600061300886828701612e81565b935050602061301986828701612e81565b925050604061302a86828701612f5f565b9150509250925092565b6000806000806080858703121561304e5761304d61400c565b5b600061305c87828801612e81565b945050602061306d87828801612e81565b935050604061307e87828801612f5f565b925050606085013567ffffffffffffffff81111561309f5761309e614007565b5b6130ab87828801612f03565b91505092959194509250565b600080604083850312156130ce576130cd61400c565b5b60006130dc85828601612e81565b92505060206130ed85828601612ec4565b9150509250929050565b6000806040838503121561310e5761310d61400c565b5b600061311c85828601612e81565b925050602061312d85828601612f5f565b9150509250929050565b6000806000606084860312156131505761314f61400c565b5b600061315e86828701612e81565b935050602061316f86828701612f5f565b925050604061318086828701612f5f565b9150509250925092565b6000602082840312156131a05761319f61400c565b5b600082013567ffffffffffffffff8111156131be576131bd614007565b5b6131ca84828501612e96565b91505092915050565b6000602082840312156131e9576131e861400c565b5b60006131f784828501612ec4565b91505092915050565b6000602082840312156132165761321561400c565b5b600061322484828501612ed9565b91505092915050565b6000602082840312156132435761324261400c565b5b600061325184828501612eee565b91505092915050565b6000602082840312156132705761326f61400c565b5b600082013567ffffffffffffffff81111561328e5761328d614007565b5b61329a84828501612f31565b91505092915050565b6000602082840312156132b9576132b861400c565b5b60006132c784828501612f5f565b91505092915050565b6132d981613d50565b82525050565b6132e881613d62565b82525050565b60006132f982613bf8565b6133038185613c0e565b9350613313818560208601613dd3565b61331c81614011565b840191505092915050565b600061333282613c03565b61333c8185613c1f565b935061334c818560208601613dd3565b61335581614011565b840191505092915050565b600061336b82613c03565b6133758185613c30565b9350613385818560208601613dd3565b80840191505092915050565b6000815461339e81613e30565b6133a88186613c30565b945060018216600081146133c357600181146133d457613407565b60ff19831686528186019350613407565b6133dd85613be3565b60005b838110156133ff578154818901526001820191506020810190506133e0565b838801955050505b50505092915050565b600061341d600d83613c1f565b915061342882614022565b602082019050919050565b6000613440603283613c1f565b915061344b8261404b565b604082019050919050565b6000613463602583613c1f565b915061346e8261409a565b604082019050919050565b6000613486601c83613c1f565b9150613491826140e9565b602082019050919050565b60006134a9601883613c1f565b91506134b482614112565b602082019050919050565b60006134cc600b83613c1f565b91506134d78261413b565b602082019050919050565b60006134ef602483613c1f565b91506134fa82614164565b604082019050919050565b6000613512601983613c1f565b915061351d826141b3565b602082019050919050565b6000613535601383613c1f565b9150613540826141dc565b602082019050919050565b6000613558602c83613c1f565b915061356382614205565b604082019050919050565b600061357b603883613c1f565b915061358682614254565b604082019050919050565b600061359e601583613c1f565b91506135a9826142a3565b602082019050919050565b60006135c1602a83613c1f565b91506135cc826142cc565b604082019050919050565b60006135e4602983613c1f565b91506135ef8261431b565b604082019050919050565b6000613607602083613c1f565b91506136128261436a565b602082019050919050565b600061362a601583613c1f565b915061363582614393565b602082019050919050565b600061364d602c83613c1f565b9150613658826143bc565b604082019050919050565b6000613670601783613c1f565b915061367b8261440b565b602082019050919050565b6000613693602183613c1f565b915061369e82614434565b604082019050919050565b60006136b6600c83613c1f565b91506136c182614483565b602082019050919050565b60006136d9603183613c1f565b91506136e4826144ac565b604082019050919050565b60006136fc601183613c1f565b9150613707826144fb565b602082019050919050565b600061371f601c83613c1f565b915061372a82614524565b602082019050919050565b61373e81613dba565b82525050565b60006137508285613391565b915061375c8284613360565b91508190509392505050565b600060208201905061377d60008301846132d0565b92915050565b600060808201905061379860008301876132d0565b6137a560208301866132d0565b6137b26040830185613735565b81810360608301526137c481846132ee565b905095945050505050565b60006020820190506137e460008301846132df565b92915050565b600060208201905081810360008301526138048184613327565b905092915050565b6000602082019050818103600083015261382581613410565b9050919050565b6000602082019050818103600083015261384581613433565b9050919050565b6000602082019050818103600083015261386581613456565b9050919050565b6000602082019050818103600083015261388581613479565b9050919050565b600060208201905081810360008301526138a58161349c565b9050919050565b600060208201905081810360008301526138c5816134bf565b9050919050565b600060208201905081810360008301526138e5816134e2565b9050919050565b6000602082019050818103600083015261390581613505565b9050919050565b6000602082019050818103600083015261392581613528565b9050919050565b600060208201905081810360008301526139458161354b565b9050919050565b600060208201905081810360008301526139658161356e565b9050919050565b6000602082019050818103600083015261398581613591565b9050919050565b600060208201905081810360008301526139a5816135b4565b9050919050565b600060208201905081810360008301526139c5816135d7565b9050919050565b600060208201905081810360008301526139e5816135fa565b9050919050565b60006020820190508181036000830152613a058161361d565b9050919050565b60006020820190508181036000830152613a2581613640565b9050919050565b60006020820190508181036000830152613a4581613663565b9050919050565b60006020820190508181036000830152613a6581613686565b9050919050565b60006020820190508181036000830152613a85816136a9565b9050919050565b60006020820190508181036000830152613aa5816136cc565b9050919050565b60006020820190508181036000830152613ac5816136ef565b9050919050565b60006020820190508181036000830152613ae581613712565b9050919050565b6000602082019050613b016000830184613735565b92915050565b6000604082019050613b1c6000830185613735565b613b296020830184613735565b9392505050565b6000613b3a613b4b565b9050613b468282613e62565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7057613b6f613fc9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b9c57613b9b613fc9565b5b613ba582614011565b9050602081019050919050565b600067ffffffffffffffff821115613bcd57613bcc613fc9565b5b613bd682614011565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c4682613dba565b9150613c5183613dba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c8657613c85613f0d565b5b828201905092915050565b6000613c9c82613dba565b9150613ca783613dba565b925082613cb757613cb6613f3c565b5b828204905092915050565b6000613ccd82613dba565b9150613cd883613dba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d1157613d10613f0d565b5b828202905092915050565b6000613d2782613dba565b9150613d3283613dba565b925082821015613d4557613d44613f0d565b5b828203905092915050565b6000613d5b82613d9a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613df1578082015181840152602081019050613dd6565b83811115613e00576000848401525b50505050565b6000613e1182613dba565b91506000821415613e2557613e24613f0d565b5b600182039050919050565b60006002820490506001821680613e4857607f821691505b60208210811415613e5c57613e5b613f6b565b5b50919050565b613e6b82614011565b810181811067ffffffffffffffff82111715613e8a57613e89613fc9565b5b80604052505050565b6000613e9e82613dba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ed157613ed0613f0d565b5b600182019050919050565b6000613ee782613dba565b9150613ef283613dba565b925082613f0257613f01613f3c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520697320656e64656400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206f757420616c6c207370656369616c204e46540000000000000000600082015250565b7f6d696e742066696e697368000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f7520617265206e6f74207468652064657600000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f53616c65206973206e6f74207374617274207965740000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f7527766520646f6e6520796f757220706172740000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742074686520706172746e6572000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420657863656564210000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57726f6e6720696e707574207072696365000000000000000000000000000000600082015250565b7f596f7520616c726561647920676f742061204269746176657273652100000000600082015250565b61455681613d50565b811461456157600080fd5b50565b61456d81613d62565b811461457857600080fd5b50565b61458481613d6e565b811461458f57600080fd5b50565b61459b81613dba565b81146145a657600080fd5b5056fea2646970667358221220d1528e3ed5e84e009ec6d4a6ecbce14cf5c491c79f36c867a7028c1feb4942ab64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102305760003560e01c806394f63cf91161012e578063d547cfb7116100ab578063e985e9c51161006f578063e985e9c51461083c578063ecb9db0714610879578063edb19ae8146108a2578063f0f36f91146108e0578063f82c14ba1461090b57610230565b8063d547cfb714610755578063db72a75914610780578063db8f24b8146107ab578063ddc5cb1d146107e8578063e5e3e5171461081157610230565b8063ab0bcc41116100f2578063ab0bcc411461065e578063b827cb5b14610689578063b88d4fde146106c6578063c110beef146106ef578063c87b56dd1461071857610230565b806394f63cf91461058857806395d89b41146105b15780639727cc9b146105dc578063a0712d6814610619578063a22cb4651461063557610230565b806341ccb623116101bc57806370a082311161018057806370a08231146104a5578063775b9c13146104e257806381eec9b01461050b57806387a21475146105345780638a758e8f1461055d57610230565b806341ccb623146103c257806342842e0e146103eb5780634901d7111461041457806355f804b31461043f5780636352211e1461046857610230565b806318160ddd1161020357806318160ddd146103035780631919fed71461032e57806323b872dd1461035757806325ab7bb4146103805780633ad10ef61461039757610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613200565b610936565b60405161026991906137cf565b60405180910390f35b34801561027e57600080fd5b50610287610a18565b60405161029491906137ea565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906132a3565b610aaa565b6040516102d19190613768565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906130f7565b610b2f565b005b34801561030f57600080fd5b50610318610c47565b6040516103259190613aec565b60405180910390f35b34801561033a57600080fd5b50610355600480360381019061035091906132a3565b610c51565b005b34801561036357600080fd5b5061037e60048036038101906103799190612fe1565b610ceb565b005b34801561038c57600080fd5b50610395610d4b565b005b3480156103a357600080fd5b506103ac610e93565b6040516103b99190613768565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e4919061318a565b610eb9565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612fe1565b610fde565b005b34801561042057600080fd5b50610429610ffe565b6040516104369190613aec565b60405180910390f35b34801561044b57600080fd5b506104666004803603810190610461919061325a565b611004565b005b34801561047457600080fd5b5061048f600480360381019061048a91906132a3565b6110ae565b60405161049c9190613768565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190612f74565b611160565b6040516104d99190613aec565b60405180910390f35b3480156104ee57600080fd5b506105096004803603810190610504919061318a565b611218565b005b34801561051757600080fd5b50610532600480360381019061052d919061325a565b61133a565b005b34801561054057600080fd5b5061055b600480360381019061055691906131d3565b6113e4565b005b34801561056957600080fd5b50610572611491565b60405161057f9190613aec565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa919061318a565b6114a7565b005b3480156105bd57600080fd5b506105c66115ef565b6040516105d391906137ea565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190612f74565b611681565b60405161061091906137cf565b60405180910390f35b610633600480360381019061062e91906132a3565b6116a1565b005b34801561064157600080fd5b5061065c600480360381019061065791906130b7565b611930565b005b34801561066a57600080fd5b50610673611946565b60405161068091906137cf565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612f74565b611959565b6040516106bd9190613aec565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e89190613034565b611971565b005b3480156106fb57600080fd5b5061071660048036038101906107119190613137565b6119d3565b005b34801561072457600080fd5b5061073f600480360381019061073a91906132a3565b611af6565b60405161074c91906137ea565b60405180910390f35b34801561076157600080fd5b5061076a611b66565b60405161077791906137ea565b60405180910390f35b34801561078c57600080fd5b50610795611bf4565b6040516107a29190613aec565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190612f74565b611bfa565b6040516107df9190613aec565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190612f74565b611c12565b005b34801561081d57600080fd5b50610826611dee565b6040516108339190613768565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190612fa1565b611e14565b60405161087091906137cf565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b9190612f74565b611ea8565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190612f74565b61208a565b6040516108d7929190613b07565b60405180910390f35b3480156108ec57600080fd5b506108f56120ae565b60405161090291906137ea565b60405180910390f35b34801561091757600080fd5b5061092061213c565b60405161092d9190613aec565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a115750610a1082612146565b5b9050919050565b606060008054610a2790613e30565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5390613e30565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b6000610ab5826121b0565b610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613a0c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3a826110ae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290613a4c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bca61221c565b73ffffffffffffffffffffffffffffffffffffffff161480610bf95750610bf881610bf361221c565b611e14565b5b610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f9061394c565b60405180910390fd5b610c428383612224565b505050565b6000612710905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd89061390c565b60405180910390fd5b8060098190555050565b610cfc610cf661221c565b826122dd565b610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613a8c565b60405180910390fd5b610d468383836123bb565b505050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490613acc565b60405180910390fd5b612710610dd861213c565b10610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061380c565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610e6890613e06565b919050555060086000815480929190610e8090613e93565b9190505550610e9133600854612622565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f409061390c565b60405180910390fd5b60005b8151811015610fda57600160106000848481518110610f6e57610f6d613f9a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610fd290613e93565b915050610f4c565b5050565b610ff983838360405180602001604052806000815250611971565b505050565b600a5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b9061390c565b60405180910390fd5b80600b90805190602001906110aa929190612cea565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906139ac565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c89061398c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f9061390c565b60405180910390fd5b60005b815181101561133657600e60008383815181106112cb576112ca613f9a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061131e90613e93565b9190505550808061132e90613e93565b9150506112ab565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c19061390c565b60405180910390fd5b80600c90805190602001906113e0929190612cea565b5050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b9061390c565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000600a54603c6114a29190613d1c565b905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e9061390c565b60405180910390fd5b612710815161154461213c565b61154e9190613c3b565b1061158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906138ac565b60405180910390fd5b60005b81518110156115eb57600860008154809291906115ad90613e93565b91905055506115d88282815181106115c8576115c7613f9a565b5b6020026020010151600854612622565b80806115e390613e93565b915050611591565b5050565b6060600180546115fe90613e30565b80601f016020809104026020016040519081016040528092919081815260200182805461162a90613e30565b80156116775780601f1061164c57610100808354040283529160200191611677565b820191906000526020600020905b81548152906001019060200180831161165a57829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b806009546116af9190613cc2565b34146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613aac565b60405180910390fd5b612710816116fc61213c565b6117069190613c3b565b1115611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061380c565b60405180910390fd5b60011515600d60009054906101000a900460ff1615151461179d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117949061396c565b60405180910390fd5b606481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117ea9190613c3b565b111561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290613a6c565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187a9190613c3b565b9250508190555060005b818110156118c3576008600081548092919061189f90613e93565b91905055506118b033600854612622565b80806118bb90613e93565b915050611884565b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561192c573d6000803e3d6000fd5b5050565b61194261193b61221c565b83836127fc565b5050565b600d60009054906101000a900460ff1681565b600e6020528060005260406000206000915090505481565b61198261197c61221c565b836122dd565b6119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890613a8c565b60405180910390fd5b6119cd84848484612969565b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a9061390c565b60405180910390fd5b80601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555081601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550505050565b6060603c821115611b3357600b611b0c836129c5565b604051602001611b1d929190613744565b6040516020818303038152906040529050611b61565b600c611b3e836129c5565b604051602001611b4f929190613744565b60405160208183030381529060405290505b919050565b600b8054611b7390613e30565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9f90613e30565b8015611bec5780601f10611bc157610100808354040283529160200191611bec565b820191906000526020600020905b815481529060010190602001808311611bcf57829003601f168201915b505050505081565b60095481565b600f6020528060005260406000206000915090505481565b60011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90613a2c565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906139ec565b60405180910390fd5b603c600a5410611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d669061388c565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001016000815480929190611dc290613e06565b9190505550600a6000815480929190611dda90613e93565b9190505550611deb81600a54612622565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290613a2c565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb7906139ec565b60405180910390fd5b612710611fcb61213c565b1061200b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120029061380c565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600081548092919061205e90613e06565b91905055506008600081548092919061207690613e93565b919050555061208781600854612622565b50565b60116020528060005260406000206000915090508060000154908060010154905082565b600c80546120bb90613e30565b80601f01602080910402602001604051908101604052809291908181526020018280546120e790613e30565b80156121345780601f1061210957610100808354040283529160200191612134565b820191906000526020600020905b81548152906001019060200180831161211757829003601f168201915b505050505081565b6000600854905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612297836110ae565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122e8826121b0565b612327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231e9061392c565b60405180910390fd5b6000612332836110ae565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123a157508373ffffffffffffffffffffffffffffffffffffffff1661238984610aaa565b73ffffffffffffffffffffffffffffffffffffffff16145b806123b257506123b18185611e14565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123db826110ae565b73ffffffffffffffffffffffffffffffffffffffff1614612431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124289061384c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612498906138cc565b60405180910390fd5b6124ac838383612b26565b6124b7600082612224565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125079190613d1c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255e9190613c3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461261d838383612b2b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612689906139cc565b60405180910390fd5b61269b816121b0565b156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d29061386c565b60405180910390fd5b6126e760008383612b26565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127379190613c3b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127f860008383612b2b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561286b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612862906138ec565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161295c91906137cf565b60405180910390a3505050565b6129748484846123bb565b61298084848484612b30565b6129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b69061382c565b60405180910390fd5b50505050565b60606000821415612a0d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b21565b600082905060005b60008214612a3f578080612a2890613e93565b915050600a82612a389190613c91565b9150612a15565b60008167ffffffffffffffff811115612a5b57612a5a613fc9565b5b6040519080825280601f01601f191660200182016040528015612a8d5781602001600182028036833780820191505090505b5090505b60008514612b1a57600182612aa69190613d1c565b9150600a85612ab59190613edc565b6030612ac19190613c3b565b60f81b818381518110612ad757612ad6613f9a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b139190613c91565b9450612a91565b8093505050505b919050565b505050565b505050565b6000612b518473ffffffffffffffffffffffffffffffffffffffff16612cc7565b15612cba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b7a61221c565b8786866040518563ffffffff1660e01b8152600401612b9c9493929190613783565b602060405180830381600087803b158015612bb657600080fd5b505af1925050508015612be757506040513d601f19601f82011682018060405250810190612be4919061322d565b60015b612c6a573d8060008114612c17576040519150601f19603f3d011682016040523d82523d6000602084013e612c1c565b606091505b50600081511415612c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c599061382c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cbf565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612cf690613e30565b90600052602060002090601f016020900481019282612d185760008555612d5f565b82601f10612d3157805160ff1916838001178555612d5f565b82800160010185558215612d5f579182015b82811115612d5e578251825591602001919060010190612d43565b5b509050612d6c9190612d70565b5090565b5b80821115612d89576000816000905550600101612d71565b5090565b6000612da0612d9b84613b55565b613b30565b90508083825260208201905082856020860282011115612dc357612dc2613ffd565b5b60005b85811015612df35781612dd98882612e81565b845260208401935060208301925050600181019050612dc6565b5050509392505050565b6000612e10612e0b84613b81565b613b30565b905082815260208101848484011115612e2c57612e2b614002565b5b612e37848285613dc4565b509392505050565b6000612e52612e4d84613bb2565b613b30565b905082815260208101848484011115612e6e57612e6d614002565b5b612e79848285613dc4565b509392505050565b600081359050612e908161454d565b92915050565b600082601f830112612eab57612eaa613ff8565b5b8135612ebb848260208601612d8d565b91505092915050565b600081359050612ed381614564565b92915050565b600081359050612ee88161457b565b92915050565b600081519050612efd8161457b565b92915050565b600082601f830112612f1857612f17613ff8565b5b8135612f28848260208601612dfd565b91505092915050565b600082601f830112612f4657612f45613ff8565b5b8135612f56848260208601612e3f565b91505092915050565b600081359050612f6e81614592565b92915050565b600060208284031215612f8a57612f8961400c565b5b6000612f9884828501612e81565b91505092915050565b60008060408385031215612fb857612fb761400c565b5b6000612fc685828601612e81565b9250506020612fd785828601612e81565b9150509250929050565b600080600060608486031215612ffa57612ff961400c565b5b600061300886828701612e81565b935050602061301986828701612e81565b925050604061302a86828701612f5f565b9150509250925092565b6000806000806080858703121561304e5761304d61400c565b5b600061305c87828801612e81565b945050602061306d87828801612e81565b935050604061307e87828801612f5f565b925050606085013567ffffffffffffffff81111561309f5761309e614007565b5b6130ab87828801612f03565b91505092959194509250565b600080604083850312156130ce576130cd61400c565b5b60006130dc85828601612e81565b92505060206130ed85828601612ec4565b9150509250929050565b6000806040838503121561310e5761310d61400c565b5b600061311c85828601612e81565b925050602061312d85828601612f5f565b9150509250929050565b6000806000606084860312156131505761314f61400c565b5b600061315e86828701612e81565b935050602061316f86828701612f5f565b925050604061318086828701612f5f565b9150509250925092565b6000602082840312156131a05761319f61400c565b5b600082013567ffffffffffffffff8111156131be576131bd614007565b5b6131ca84828501612e96565b91505092915050565b6000602082840312156131e9576131e861400c565b5b60006131f784828501612ec4565b91505092915050565b6000602082840312156132165761321561400c565b5b600061322484828501612ed9565b91505092915050565b6000602082840312156132435761324261400c565b5b600061325184828501612eee565b91505092915050565b6000602082840312156132705761326f61400c565b5b600082013567ffffffffffffffff81111561328e5761328d614007565b5b61329a84828501612f31565b91505092915050565b6000602082840312156132b9576132b861400c565b5b60006132c784828501612f5f565b91505092915050565b6132d981613d50565b82525050565b6132e881613d62565b82525050565b60006132f982613bf8565b6133038185613c0e565b9350613313818560208601613dd3565b61331c81614011565b840191505092915050565b600061333282613c03565b61333c8185613c1f565b935061334c818560208601613dd3565b61335581614011565b840191505092915050565b600061336b82613c03565b6133758185613c30565b9350613385818560208601613dd3565b80840191505092915050565b6000815461339e81613e30565b6133a88186613c30565b945060018216600081146133c357600181146133d457613407565b60ff19831686528186019350613407565b6133dd85613be3565b60005b838110156133ff578154818901526001820191506020810190506133e0565b838801955050505b50505092915050565b600061341d600d83613c1f565b915061342882614022565b602082019050919050565b6000613440603283613c1f565b915061344b8261404b565b604082019050919050565b6000613463602583613c1f565b915061346e8261409a565b604082019050919050565b6000613486601c83613c1f565b9150613491826140e9565b602082019050919050565b60006134a9601883613c1f565b91506134b482614112565b602082019050919050565b60006134cc600b83613c1f565b91506134d78261413b565b602082019050919050565b60006134ef602483613c1f565b91506134fa82614164565b604082019050919050565b6000613512601983613c1f565b915061351d826141b3565b602082019050919050565b6000613535601383613c1f565b9150613540826141dc565b602082019050919050565b6000613558602c83613c1f565b915061356382614205565b604082019050919050565b600061357b603883613c1f565b915061358682614254565b604082019050919050565b600061359e601583613c1f565b91506135a9826142a3565b602082019050919050565b60006135c1602a83613c1f565b91506135cc826142cc565b604082019050919050565b60006135e4602983613c1f565b91506135ef8261431b565b604082019050919050565b6000613607602083613c1f565b91506136128261436a565b602082019050919050565b600061362a601583613c1f565b915061363582614393565b602082019050919050565b600061364d602c83613c1f565b9150613658826143bc565b604082019050919050565b6000613670601783613c1f565b915061367b8261440b565b602082019050919050565b6000613693602183613c1f565b915061369e82614434565b604082019050919050565b60006136b6600c83613c1f565b91506136c182614483565b602082019050919050565b60006136d9603183613c1f565b91506136e4826144ac565b604082019050919050565b60006136fc601183613c1f565b9150613707826144fb565b602082019050919050565b600061371f601c83613c1f565b915061372a82614524565b602082019050919050565b61373e81613dba565b82525050565b60006137508285613391565b915061375c8284613360565b91508190509392505050565b600060208201905061377d60008301846132d0565b92915050565b600060808201905061379860008301876132d0565b6137a560208301866132d0565b6137b26040830185613735565b81810360608301526137c481846132ee565b905095945050505050565b60006020820190506137e460008301846132df565b92915050565b600060208201905081810360008301526138048184613327565b905092915050565b6000602082019050818103600083015261382581613410565b9050919050565b6000602082019050818103600083015261384581613433565b9050919050565b6000602082019050818103600083015261386581613456565b9050919050565b6000602082019050818103600083015261388581613479565b9050919050565b600060208201905081810360008301526138a58161349c565b9050919050565b600060208201905081810360008301526138c5816134bf565b9050919050565b600060208201905081810360008301526138e5816134e2565b9050919050565b6000602082019050818103600083015261390581613505565b9050919050565b6000602082019050818103600083015261392581613528565b9050919050565b600060208201905081810360008301526139458161354b565b9050919050565b600060208201905081810360008301526139658161356e565b9050919050565b6000602082019050818103600083015261398581613591565b9050919050565b600060208201905081810360008301526139a5816135b4565b9050919050565b600060208201905081810360008301526139c5816135d7565b9050919050565b600060208201905081810360008301526139e5816135fa565b9050919050565b60006020820190508181036000830152613a058161361d565b9050919050565b60006020820190508181036000830152613a2581613640565b9050919050565b60006020820190508181036000830152613a4581613663565b9050919050565b60006020820190508181036000830152613a6581613686565b9050919050565b60006020820190508181036000830152613a85816136a9565b9050919050565b60006020820190508181036000830152613aa5816136cc565b9050919050565b60006020820190508181036000830152613ac5816136ef565b9050919050565b60006020820190508181036000830152613ae581613712565b9050919050565b6000602082019050613b016000830184613735565b92915050565b6000604082019050613b1c6000830185613735565b613b296020830184613735565b9392505050565b6000613b3a613b4b565b9050613b468282613e62565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7057613b6f613fc9565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b9c57613b9b613fc9565b5b613ba582614011565b9050602081019050919050565b600067ffffffffffffffff821115613bcd57613bcc613fc9565b5b613bd682614011565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c4682613dba565b9150613c5183613dba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c8657613c85613f0d565b5b828201905092915050565b6000613c9c82613dba565b9150613ca783613dba565b925082613cb757613cb6613f3c565b5b828204905092915050565b6000613ccd82613dba565b9150613cd883613dba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d1157613d10613f0d565b5b828202905092915050565b6000613d2782613dba565b9150613d3283613dba565b925082821015613d4557613d44613f0d565b5b828203905092915050565b6000613d5b82613d9a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613df1578082015181840152602081019050613dd6565b83811115613e00576000848401525b50505050565b6000613e1182613dba565b91506000821415613e2557613e24613f0d565b5b600182039050919050565b60006002820490506001821680613e4857607f821691505b60208210811415613e5c57613e5b613f6b565b5b50919050565b613e6b82614011565b810181811067ffffffffffffffff82111715613e8a57613e89613fc9565b5b80604052505050565b6000613e9e82613dba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ed157613ed0613f0d565b5b600182019050919050565b6000613ee782613dba565b9150613ef283613dba565b925082613f0257613f01613f3c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520697320656e64656400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c65206f757420616c6c207370656369616c204e46540000000000000000600082015250565b7f6d696e742066696e697368000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f7520617265206e6f74207468652064657600000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f53616c65206973206e6f74207374617274207965740000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f7527766520646f6e6520796f757220706172740000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742074686520706172746e6572000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420657863656564210000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57726f6e6720696e707574207072696365000000000000000000000000000000600082015250565b7f596f7520616c726561647920676f742061204269746176657273652100000000600082015250565b61455681613d50565b811461456157600080fd5b50565b61456d81613d62565b811461457857600080fd5b50565b61458481613d6e565b811461458f57600080fd5b50565b61459b81613dba565b81146145a657600080fd5b5056fea2646970667358221220d1528e3ed5e84e009ec6d4a6ecbce14cf5c491c79f36c867a7028c1feb4942ab64736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.