Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 23 from a total of 23 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Flip Paused | 14609920 | 1019 days ago | IN | 0 ETH | 0.001367 | ||||
Flip Paused | 14603278 | 1020 days ago | IN | 0 ETH | 0.00068635 | ||||
Flip Paused | 14581994 | 1023 days ago | IN | 0 ETH | 0.00092117 | ||||
Change Mint Stat... | 14573451 | 1024 days ago | IN | 0 ETH | 0.00110853 | ||||
Flip Paused | 14573421 | 1024 days ago | IN | 0 ETH | 0.00144877 | ||||
Flip Paused | 14573416 | 1024 days ago | IN | 0 ETH | 0.00164229 | ||||
Flip Paused | 14573310 | 1024 days ago | IN | 0 ETH | 0.00184612 | ||||
Change Mint Stat... | 14573303 | 1024 days ago | IN | 0 ETH | 0.00211469 | ||||
Flip Paused | 14573177 | 1025 days ago | IN | 0 ETH | 0.00159116 | ||||
Mint Public | 14572645 | 1025 days ago | IN | 0 ETH | 0.00182268 | ||||
Change Mint Stat... | 14572521 | 1025 days ago | IN | 0 ETH | 0.00132618 | ||||
Pre Mint | 14572499 | 1025 days ago | IN | 0 ETH | 0.00468643 | ||||
Pre Mint | 14572482 | 1025 days ago | IN | 0 ETH | 0.00562697 | ||||
Set Base URI | 14572324 | 1025 days ago | IN | 0 ETH | 0.00407535 | ||||
Set Base URI | 14572311 | 1025 days ago | IN | 0 ETH | 0.00159567 | ||||
Set Base URI | 14572125 | 1025 days ago | IN | 0 ETH | 0.00383583 | ||||
Set Base URI | 14572066 | 1025 days ago | IN | 0 ETH | 0.00276328 | ||||
Set Base URI | 14571035 | 1025 days ago | IN | 0 ETH | 0.00302908 | ||||
Pre Mint | 14570077 | 1025 days ago | IN | 0 ETH | 0.00330116 | ||||
Pre Mint | 14570077 | 1025 days ago | IN | 0 ETH | 0.00330116 | ||||
Pre Mint | 14570073 | 1025 days ago | IN | 0 ETH | 0.00398529 | ||||
Set Provenance H... | 14569430 | 1025 days ago | IN | 0 ETH | 0.00368746 | ||||
Set Base URI | 14569413 | 1025 days ago | IN | 0 ETH | 0.00317556 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MasterchefMasatoshiJuniorX
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721.sol"; /** * @title MasterchefMasatoshi * NFT + DAO = NEW META * Vitalik, remove contract size limit pls */ contract MasterchefMasatoshiJuniorX is ERC721, Ownable { using ECDSA for bytes32; string public PROVENANCE; bool provenanceSet; uint256 public mintPrice; uint256 public maxPossibleSupply; uint256 public allowListMintPrice; uint256 public maxAllowedMints; address public immutable currency; address immutable wrappedNativeCoinAddress; address payable immutable omakasea; address private signerAddress; bool public paused; enum MintStatus { PreMint, AllowList, Public, Finished } MintStatus public mintStatus = MintStatus.PreMint; mapping (address => uint256) public totalMintsPerAddress; event Received(address, uint256); receive() external payable { emit Received(msg.sender, msg.value); } constructor( string memory _name, string memory _symbol, uint256 _maxPossibleSupply, uint256 _mintPrice, uint256 _allowListMintPrice, uint256 _maxAllowedMints, address _signerAddress, address payable _omakasea, address _currency, address _wrappedNativeCoinAddress ) ERC721(_name, _symbol, 10) { maxPossibleSupply = _maxPossibleSupply; mintPrice = _mintPrice; allowListMintPrice = _allowListMintPrice; maxAllowedMints = _maxAllowedMints; signerAddress = _signerAddress; omakasea = _omakasea; currency = _currency; wrappedNativeCoinAddress = _wrappedNativeCoinAddress; } function flipPaused() external onlyOwner { paused = !paused; } function preMint(uint amount) public onlyOwner { require(mintStatus == MintStatus.PreMint, "s"); require(totalSupply() + amount <= maxPossibleSupply, "m"); _safeMint(msg.sender, amount); } function setProvenanceHash(string memory provenanceHash) public onlyOwner { require(!provenanceSet); PROVENANCE = provenanceHash; provenanceSet = true; } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function changeMintStatus(MintStatus _status) external onlyOwner { require(_status != MintStatus.PreMint); if (mintStatus == MintStatus.Public) { require(_status != MintStatus.AllowList); } mintStatus = _status; } function mintAllowList( bytes32 messageHash, bytes calldata signature, uint amount ) public payable { require(mintStatus == MintStatus.AllowList && !paused, "s"); require(totalSupply() + amount <= maxPossibleSupply, "m"); require(hashMessage(msg.sender, address(this)) == messageHash, "i"); require(verifyAddressSigner(messageHash, signature), "f"); require(totalMintsPerAddress[msg.sender] + amount <= maxAllowedMints, "l"); uint mintAmount = allowListMintPrice * amount; uint omakaseaFee = mintAmount * 25 / 1000; if (currency == wrappedNativeCoinAddress) { require(mintAmount <= msg.value, "a"); // 2.5% Omakasea Fee omakasea.transfer(omakaseaFee); } else { IERC20 _currency = IERC20(currency); // 2.5% Omakasea Fee _currency.transferFrom(msg.sender, omakasea, omakaseaFee); _currency.transferFrom(msg.sender, address(this), mintAmount - omakaseaFee); } totalMintsPerAddress[msg.sender] = totalMintsPerAddress[msg.sender] + amount; _safeMint(msg.sender, amount); } function mintPublic(uint amount) public payable { require(mintStatus == MintStatus.Public && !paused, "s"); require(totalSupply() + amount <= maxPossibleSupply, "m"); require(totalMintsPerAddress[msg.sender] + amount <= maxAllowedMints, "l"); uint mintAmount = mintPrice * amount; uint omakaseaFee = mintAmount * 25 / 1000; if (currency == wrappedNativeCoinAddress) { require(mintPrice * amount <= msg.value, "a"); // 2.5% Omakasea Fee omakasea.transfer(omakaseaFee); } else { IERC20 _currency = IERC20(currency); // 2.5% Omakasea Fee _currency.transferFrom(msg.sender, omakasea, omakaseaFee); _currency.transferFrom(msg.sender, address(this), amount * mintPrice); } totalMintsPerAddress[msg.sender] = totalMintsPerAddress[msg.sender] + amount; _safeMint(msg.sender, amount); if (totalSupply() == maxPossibleSupply) { mintStatus = MintStatus.Finished; } } function verifyAddressSigner(bytes32 messageHash, bytes memory signature) private view returns (bool) { return signerAddress == messageHash.toEthSignedMessageHash().recover(signature); } function hashMessage(address sender, address thisContract) public pure returns (bytes32) { return keccak256(abi.encodePacked(sender, thisContract)); } function withdraw() external onlyOwner() { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTokens(address tokenAddress) external onlyOwner() { IERC20(tokenAddress).transfer(msg.sender, IERC20(tokenAddress).balanceOf(address(this))); } } // The High Table
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Base URI string private _baseURI; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "b"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "g"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "b"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("u"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "0"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "0"); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "t"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("o"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "z"); 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() public view virtual returns (string memory) { return _baseURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "o"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "a" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "a"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "a"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "z" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "0"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "a"); require(quantity <= maxBatchSize, "m"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "z" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "a"); require(prevOwnership.addr == from, "o"); require(to != address(0), "0"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "q"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "n"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("z"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT 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 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 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 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 pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxPossibleSupply","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_allowListMintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxAllowedMints","type":"uint256"},{"internalType":"address","name":"_signerAddress","type":"address"},{"internalType":"address payable","name":"_omakasea","type":"address"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"address","name":"_wrappedNativeCoinAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum MasterchefMasatoshiJuniorX.MintStatus","name":"_status","type":"uint8"}],"name":"changeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"thisContract","type":"address"}],"name":"hashMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPossibleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum MasterchefMasatoshiJuniorX.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101006040526000805560006008556000601060156101000a81548160ff021916908360038111156200003757620000366200039d565b5b02179055503480156200004957600080fd5b50604051620062a0380380620062a083398181016040528101906200006f91906200064e565b8989600a60008111620000b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000b090620007e3565b60405180910390fd5b8260019080519060200190620000d1929190620002ed565b508160029080519060200190620000ea929190620002ed565b508060808181525050505050620001166200010a6200021f60201b60201c565b6200022760201b60201c565b87600d8190555086600c8190555085600e8190555084600f8190555083601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050505050505050505050506200086a565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002fb9062000834565b90600052602060002090601f0160209004810192826200031f57600085556200036b565b82601f106200033a57805160ff19168380011785556200036b565b828001600101855582156200036b579182015b828111156200036a5782518255916020019190600101906200034d565b5b5090506200037a91906200037e565b5090565b5b80821115620003995760008160009055506001016200037f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200043582620003ea565b810181811067ffffffffffffffff82111715620004575762000456620003fb565b5b80604052505050565b60006200046c620003cc565b90506200047a82826200042a565b919050565b600067ffffffffffffffff8211156200049d576200049c620003fb565b5b620004a882620003ea565b9050602081019050919050565b60005b83811015620004d5578082015181840152602081019050620004b8565b83811115620004e5576000848401525b50505050565b600062000502620004fc846200047f565b62000460565b905082815260208101848484011115620005215762000520620003e5565b5b6200052e848285620004b5565b509392505050565b600082601f8301126200054e576200054d620003e0565b5b815162000560848260208601620004eb565b91505092915050565b6000819050919050565b6200057e8162000569565b81146200058a57600080fd5b50565b6000815190506200059e8162000573565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005d182620005a4565b9050919050565b620005e381620005c4565b8114620005ef57600080fd5b50565b6000815190506200060381620005d8565b92915050565b60006200061682620005a4565b9050919050565b620006288162000609565b81146200063457600080fd5b50565b60008151905062000648816200061d565b92915050565b6000806000806000806000806000806101408b8d031215620006755762000674620003d6565b5b60008b015167ffffffffffffffff811115620006965762000695620003db565b5b620006a48d828e0162000536565b9a505060208b015167ffffffffffffffff811115620006c857620006c7620003db565b5b620006d68d828e0162000536565b9950506040620006e98d828e016200058d565b9850506060620006fc8d828e016200058d565b97505060806200070f8d828e016200058d565b96505060a0620007228d828e016200058d565b95505060c0620007358d828e01620005f2565b94505060e0620007488d828e0162000637565b9350506101006200075c8d828e01620005f2565b925050610120620007708d828e01620005f2565b9150509295989b9194979a5092959850565b600082825260208201905092915050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000620007cb60018362000782565b9150620007d88262000793565b602082019050919050565b60006020820190508181036000830152620007fe81620007bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200084d57607f821691505b6020821081141562000864576200086362000805565b5b50919050565b60805160a05160c05160e0516159b6620008ea60003960008181611eec01528181611f9a0152818161258f015261263d015260008181611e3501526124cb015260008181611e6c01528181611f5a0152818161226e0152818161250201526125fd015260008181613079015281816130a2015261373701526159b66000f3fe60806040526004361061023f5760003560e01c806368855b641161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba0146108a8578063e5a6b10f146108d3578063e985e9c5146108fe578063efd0cbf91461093b578063f2fde38b146109575761027f565b8063a22cb465146107c0578063a9cbd06d146107e9578063b88d4fde14610805578063b9bd28011461082e578063c87b56dd1461086b5761027f565b80637cac2602116100f25780637cac2602146106ed5780638ad433ac146107165780638da5cb5b1461073f57806395d89b411461076a5780639da3f8fd146107955761027f565b806368855b64146106065780636c0360eb146106315780636c82054b1461065c57806370a0823114610699578063715018a6146106d65761027f565b80633ccfd60b116101bc57806355f804b31161018057806355f804b31461051f5780635c975abb146105485780636352211e146105735780636373a6b1146105b05780636817c76c146105db5761027f565b80633ccfd60b1461044e57806342842e0e1461046557806344fead9e1461048e57806349df728c146104b95780634f6ccce7146104e25761027f565b806318160ddd1161020357806318160ddd1461037b57806323b872dd146103a65780632f745c59146103cf578063333171bb1461040c578063386b7691146104235761027f565b806301ffc9a71461028457806306fdde03146102c1578063081812fc146102ec578063095ea7b31461032957806310969523146103525761027f565b3661027f577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587433346040516102759291906140a9565b60405180910390a1005b600080fd5b34801561029057600080fd5b506102ab60048036038101906102a6919061413e565b610980565b6040516102b89190614186565b60405180910390f35b3480156102cd57600080fd5b506102d6610aca565b6040516102e3919061423a565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190614288565b610b5c565b60405161032091906142b5565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b91906142fc565b610be1565b005b34801561035e57600080fd5b5061037960048036038101906103749190614471565b610cfa565b005b34801561038757600080fd5b50610390610dc5565b60405161039d91906144ba565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906144d5565b610dce565b005b3480156103db57600080fd5b506103f660048036038101906103f191906142fc565b610dde565b60405161040391906144ba565b60405180910390f35b34801561041857600080fd5b50610421610fdc565b005b34801561042f57600080fd5b50610438611084565b60405161044591906144ba565b60405180910390f35b34801561045a57600080fd5b5061046361108a565b005b34801561047157600080fd5b5061048c600480360381019061048791906144d5565b611155565b005b34801561049a57600080fd5b506104a3611175565b6040516104b091906144ba565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190614528565b61117b565b005b3480156104ee57600080fd5b5061050960048036038101906105049190614288565b6112f2565b60405161051691906144ba565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190614471565b611345565b005b34801561055457600080fd5b5061055d6113cd565b60405161056a9190614186565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190614288565b6113e0565b6040516105a791906142b5565b60405180910390f35b3480156105bc57600080fd5b506105c56113f6565b6040516105d2919061423a565b60405180910390f35b3480156105e757600080fd5b506105f0611484565b6040516105fd91906144ba565b60405180910390f35b34801561061257600080fd5b5061061b61148a565b60405161062891906144ba565b60405180910390f35b34801561063d57600080fd5b50610646611490565b604051610653919061423a565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190614555565b611522565b60405161069091906145ae565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190614528565b611555565b6040516106cd91906144ba565b60405180910390f35b3480156106e257600080fd5b506106eb61163e565b005b3480156106f957600080fd5b50610714600480360381019061070f91906145ee565b6116c6565b005b34801561072257600080fd5b5061073d60048036038101906107389190614288565b611810565b005b34801561074b57600080fd5b50610754611966565b60405161076191906142b5565b60405180910390f35b34801561077657600080fd5b5061077f611990565b60405161078c919061423a565b60405180910390f35b3480156107a157600080fd5b506107aa611a22565b6040516107b79190614692565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906146d9565b611a35565b005b61080360048036038101906107fe91906147a5565b611bb6565b005b34801561081157600080fd5b5061082c600480360381019061082791906148ba565b61214a565b005b34801561083a57600080fd5b5061085560048036038101906108509190614528565b6121a6565b60405161086291906144ba565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190614288565b6121be565b60405161089f919061423a565b60405180910390f35b3480156108b457600080fd5b506108bd612266565b6040516108ca91906144ba565b60405180910390f35b3480156108df57600080fd5b506108e861226c565b6040516108f591906142b5565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190614555565b612290565b6040516109329190614186565b60405180910390f35b61095560048036038101906109509190614288565b612324565b005b34801561096357600080fd5b5061097e60048036038101906109799190614528565b612829565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac35750610ac282612921565b5b9050919050565b606060018054610ad99061496c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b059061496c565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b5050505050905090565b6000610b678261298b565b610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906149ea565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bec826113e0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490614a56565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7c612998565b73ffffffffffffffffffffffffffffffffffffffff161480610cab5750610caa81610ca5612998565b612290565b5b610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce1906149ea565b60405180910390fd5b610cf58383836129a0565b505050565b610d02612998565b73ffffffffffffffffffffffffffffffffffffffff16610d20611966565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614ac2565b60405180910390fd5b600b60009054906101000a900460ff1615610d9057600080fd5b80600a9080519060200190610da6929190613f72565b506001600b60006101000a81548160ff02191690831515021790555050565b60008054905090565b610dd9838383612a52565b505050565b6000610de983611555565b8210610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190614b2e565b60405180910390fd5b6000610e34610dc5565b905060008060005b83811015610f9a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f865786841415610f77578195505050505050610fd6565b8380610f8290614b7d565b9450505b508080610f9290614b7d565b915050610e3c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90614c12565b60405180910390fd5b92915050565b610fe4612998565b73ffffffffffffffffffffffffffffffffffffffff16611002611966565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90614ac2565b60405180910390fd5b601060149054906101000a900460ff1615601060146101000a81548160ff021916908315150217905550565b600d5481565b611092612998565b73ffffffffffffffffffffffffffffffffffffffff166110b0611966565b73ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90614ac2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611151573d6000803e3d6000fd5b5050565b6111708383836040518060200160405280600081525061214a565b505050565b600f5481565b611183612998565b73ffffffffffffffffffffffffffffffffffffffff166111a1611966565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90614ac2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124d91906142b5565b602060405180830381865afa15801561126a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128e9190614c47565b6040518363ffffffff1660e01b81526004016112ab9291906140a9565b6020604051808303816000875af11580156112ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ee9190614c89565b5050565b60006112fc610dc5565b821061133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490614d02565b60405180910390fd5b819050919050565b61134d612998565b73ffffffffffffffffffffffffffffffffffffffff1661136b611966565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890614ac2565b60405180910390fd5b6113ca8161300b565b50565b601060149054906101000a900460ff1681565b60006113eb82613025565b600001519050919050565b600a80546114039061496c565b80601f016020809104026020016040519081016040528092919081815260200182805461142f9061496c565b801561147c5780601f106114515761010080835404028352916020019161147c565b820191906000526020600020905b81548152906001019060200180831161145f57829003601f168201915b505050505081565b600c5481565b600e5481565b60606003805461149f9061496c565b80601f01602080910402602001604051908101604052809291908181526020018280546114cb9061496c565b80156115185780601f106114ed57610100808354040283529160200191611518565b820191906000526020600020905b8154815290600101906020018083116114fb57829003601f168201915b5050505050905090565b60008282604051602001611537929190614d6a565b60405160208183030381529060405280519060200120905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614de2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611646612998565b73ffffffffffffffffffffffffffffffffffffffff16611664611966565b73ffffffffffffffffffffffffffffffffffffffff16146116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190614ac2565b60405180910390fd5b6116c46000613228565b565b6116ce612998565b73ffffffffffffffffffffffffffffffffffffffff166116ec611966565b73ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990614ac2565b60405180910390fd5b600060038111156117565761175561461b565b5b8160038111156117695761176861461b565b5b141561177457600080fd5b600260038111156117885761178761461b565b5b601060159054906101000a900460ff1660038111156117aa576117a961461b565b5b14156117e357600160038111156117c4576117c361461b565b5b8160038111156117d7576117d661461b565b5b14156117e257600080fd5b5b80601060156101000a81548160ff021916908360038111156118085761180761461b565b5b021790555050565b611818612998565b73ffffffffffffffffffffffffffffffffffffffff16611836611966565b73ffffffffffffffffffffffffffffffffffffffff161461188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614ac2565b60405180910390fd5b600060038111156118a05761189f61461b565b5b601060159054906101000a900460ff1660038111156118c2576118c161461b565b5b14611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990614e4e565b60405180910390fd5b600d548161190e610dc5565b6119189190614e6e565b1115611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614f10565b60405180910390fd5b61196333826132ee565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461199f9061496c565b80601f01602080910402602001604051908101604052809291908181526020018280546119cb9061496c565b8015611a185780601f106119ed57610100808354040283529160200191611a18565b820191906000526020600020905b8154815290600101906020018083116119fb57829003601f168201915b5050505050905090565b601060159054906101000a900460ff1681565b611a3d612998565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa2906149ea565b60405180910390fd5b8060076000611ab8612998565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b65612998565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611baa9190614186565b60405180910390a35050565b60016003811115611bca57611bc961461b565b5b601060159054906101000a900460ff166003811115611bec57611beb61461b565b5b148015611c065750601060149054906101000a900460ff16155b611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614e4e565b60405180910390fd5b600d5481611c51610dc5565b611c5b9190614e6e565b1115611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390614f10565b60405180910390fd5b83611ca73330611522565b14611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde90614f7c565b60405180910390fd5b611d358484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061330c565b611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614fe8565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc29190614e6e565b1115611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa90615054565b60405180910390fd5b600081600e54611e139190615074565b905060006103e8601983611e279190615074565b611e3191906150fd565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff161415611f565734821115611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee1906149ea565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611f50573d6000803e3d6000fd5b506120aa565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff166323b872dd337f0000000000000000000000000000000000000000000000000000000000000000856040518463ffffffff1660e01b8152600401611fd89392919061518d565b6020604051808303816000875af1158015611ff7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201b9190614c89565b508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330858761204691906151c4565b6040518463ffffffff1660e01b8152600401612064939291906151f8565b6020604051808303816000875af1158015612083573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a79190614c89565b50505b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120f59190614e6e565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061214233846132ee565b505050505050565b612155848484612a52565b61216184848484613381565b6121a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121979061527b565b60405180910390fd5b50505050565b60116020528060005260406000206000915090505481565b60606121c98261298b565b612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff9061527b565b60405180910390fd5b6000600380546122179061496c565b905011612233576040518060200160405280600081525061225f565b600361223e83613509565b60405160200161224f92919061536b565b6040516020818303038152906040525b9050919050565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260038111156123385761233761461b565b5b601060159054906101000a900460ff16600381111561235a5761235961461b565b5b1480156123745750601060149054906101000a900460ff16155b6123b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123aa90614e4e565b60405180910390fd5b600d54816123bf610dc5565b6123c99190614e6e565b111561240a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240190614f10565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124589190614e6e565b1115612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249090615054565b60405180910390fd5b600081600c546124a99190615074565b905060006103e86019836124bd9190615074565b6124c791906150fd565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614156125f9573483600c5461254c9190615074565b111561258d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612584906149ea565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156125f3573d6000803e3d6000fd5b5061274f565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff166323b872dd337f0000000000000000000000000000000000000000000000000000000000000000856040518463ffffffff1660e01b815260040161267b9392919061518d565b6020604051808303816000875af115801561269a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126be9190614c89565b508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c54886126eb9190615074565b6040518463ffffffff1660e01b8152600401612709939291906151f8565b6020604051808303816000875af1158015612728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274c9190614c89565b50505b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279a9190614e6e565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127e733846132ee565b600d546127f2610dc5565b1415612824576003601060156101000a81548160ff0219169083600381111561281e5761281d61461b565b5b02179055505b505050565b612831612998565b73ffffffffffffffffffffffffffffffffffffffff1661284f611966565b73ffffffffffffffffffffffffffffffffffffffff16146128a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289c90614ac2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290c90615401565b60405180910390fd5b61291e81613228565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a5d82613025565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a84612998565b73ffffffffffffffffffffffffffffffffffffffff161480612ae05750612aa9612998565b73ffffffffffffffffffffffffffffffffffffffff16612ac884610b5c565b73ffffffffffffffffffffffffffffffffffffffff16145b80612afc5750612afb8260000151612af6612998565b612290565b5b905080612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b35906149ea565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba790614a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790614de2565b60405180910390fd5b612c2d858585600161366a565b612c3d60008484600001516129a0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612cab919061543d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612d4f9190615471565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612e559190614e6e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f9b57612ecb8161298b565b15612f9a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130038686866001613670565b505050505050565b8060039080519060200190613021929190613f72565b5050565b61302d613ff8565b6130368261298b565b613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c90615503565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106130d95760017f0000000000000000000000000000000000000000000000000000000000000000846130cc91906151c4565b6130d69190614e6e565b90505b60008390505b8181106131e7576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131d357809350505050613223565b5080806131df90615523565b9150506130df565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321a90614a56565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613308828260405180602001604052806000815250613676565b5050565b60006133298261331b85613b55565b613b8590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60006133a28473ffffffffffffffffffffffffffffffffffffffff16613bac565b156134fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133cb612998565b8786866040518563ffffffff1660e01b81526004016133ed94939291906155a2565b6020604051808303816000875af192505050801561342957506040513d601f19601f820116820180604052508101906134269190615603565b60015b6134ac573d8060008114613459576040519150601f19603f3d011682016040523d82523d6000602084013e61345e565b606091505b506000815114156134a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349b9061527b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613501565b600190505b949350505050565b60606000821415613551576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613665565b600082905060005b6000821461358357808061356c90614b7d565b915050600a8261357c91906150fd565b9150613559565b60008167ffffffffffffffff81111561359f5761359e614346565b5b6040519080825280601f01601f1916602001820160405280156135d15781602001600182028036833780820191505090505b5090505b6000851461365e576001826135ea91906151c4565b9150600a856135f99190615630565b60306136059190614e6e565b60f81b81838151811061361b5761361a615661565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561365791906150fd565b94506135d5565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156136ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e390614de2565b60405180910390fd5b6136f58161298b565b15613735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372c906149ea565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378f90614f10565b60405180910390fd5b6137a5600085838661366a565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516138a29190615471565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138c99190615471565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613b3857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ad86000888488613381565b613b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0e9061527b565b60405180910390fd5b8180613b2290614b7d565b9250508080613b3090614b7d565b915050613a67565b5080600081905550613b4d6000878588613670565b505050505050565b600081604051602001613b6891906156fd565b604051602081830303815290604052805190602001209050919050565b6000806000613b948585613bbf565b91509150613ba181613c42565b819250505092915050565b600080823b905060008111915050919050565b600080604183511415613c015760008060006020860151925060408601519150606086015160001a9050613bf587828585613e17565b94509450505050613c3b565b604083511415613c32576000806020850151915060408501519050613c27868383613f24565b935093505050613c3b565b60006002915091505b9250929050565b60006004811115613c5657613c5561461b565b5b816004811115613c6957613c6861461b565b5b1415613c7457613e14565b60016004811115613c8857613c8761461b565b5b816004811115613c9b57613c9a61461b565b5b1415613cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cd39061576f565b60405180910390fd5b60026004811115613cf057613cef61461b565b5b816004811115613d0357613d0261461b565b5b1415613d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3b906157db565b60405180910390fd5b60036004811115613d5857613d5761461b565b5b816004811115613d6b57613d6a61461b565b5b1415613dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da39061586d565b60405180910390fd5b600480811115613dbf57613dbe61461b565b5b816004811115613dd257613dd161461b565b5b1415613e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e0a906158ff565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613e52576000600391509150613f1b565b601b8560ff1614158015613e6a5750601c8560ff1614155b15613e7c576000600491509150613f1b565b600060018787878760405160008152602001604052604051613ea1949392919061593b565b6020604051602081039080840390855afa158015613ec3573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613f1257600060019250925050613f1b565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613f6487828885613e17565b935093505050935093915050565b828054613f7e9061496c565b90600052602060002090601f016020900481019282613fa05760008555613fe7565b82601f10613fb957805160ff1916838001178555613fe7565b82800160010185558215613fe7579182015b82811115613fe6578251825591602001919060010190613fcb565b5b509050613ff49190614032565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561404b576000816000905550600101614033565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061407a8261404f565b9050919050565b61408a8161406f565b82525050565b6000819050919050565b6140a381614090565b82525050565b60006040820190506140be6000830185614081565b6140cb602083018461409a565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61411b816140e6565b811461412657600080fd5b50565b60008135905061413881614112565b92915050565b600060208284031215614154576141536140dc565b5b600061416284828501614129565b91505092915050565b60008115159050919050565b6141808161416b565b82525050565b600060208201905061419b6000830184614177565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141db5780820151818401526020810190506141c0565b838111156141ea576000848401525b50505050565b6000601f19601f8301169050919050565b600061420c826141a1565b61421681856141ac565b93506142268185602086016141bd565b61422f816141f0565b840191505092915050565b600060208201905081810360008301526142548184614201565b905092915050565b61426581614090565b811461427057600080fd5b50565b6000813590506142828161425c565b92915050565b60006020828403121561429e5761429d6140dc565b5b60006142ac84828501614273565b91505092915050565b60006020820190506142ca6000830184614081565b92915050565b6142d98161406f565b81146142e457600080fd5b50565b6000813590506142f6816142d0565b92915050565b60008060408385031215614313576143126140dc565b5b6000614321858286016142e7565b925050602061433285828601614273565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61437e826141f0565b810181811067ffffffffffffffff8211171561439d5761439c614346565b5b80604052505050565b60006143b06140d2565b90506143bc8282614375565b919050565b600067ffffffffffffffff8211156143dc576143db614346565b5b6143e5826141f0565b9050602081019050919050565b82818337600083830152505050565b600061441461440f846143c1565b6143a6565b9050828152602081018484840111156144305761442f614341565b5b61443b8482856143f2565b509392505050565b600082601f8301126144585761445761433c565b5b8135614468848260208601614401565b91505092915050565b600060208284031215614487576144866140dc565b5b600082013567ffffffffffffffff8111156144a5576144a46140e1565b5b6144b184828501614443565b91505092915050565b60006020820190506144cf600083018461409a565b92915050565b6000806000606084860312156144ee576144ed6140dc565b5b60006144fc868287016142e7565b935050602061450d868287016142e7565b925050604061451e86828701614273565b9150509250925092565b60006020828403121561453e5761453d6140dc565b5b600061454c848285016142e7565b91505092915050565b6000806040838503121561456c5761456b6140dc565b5b600061457a858286016142e7565b925050602061458b858286016142e7565b9150509250929050565b6000819050919050565b6145a881614595565b82525050565b60006020820190506145c3600083018461459f565b92915050565b600481106145d657600080fd5b50565b6000813590506145e8816145c9565b92915050565b600060208284031215614604576146036140dc565b5b6000614612848285016145d9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061465b5761465a61461b565b5b50565b600081905061466c8261464a565b919050565b600061467c8261465e565b9050919050565b61468c81614671565b82525050565b60006020820190506146a76000830184614683565b92915050565b6146b68161416b565b81146146c157600080fd5b50565b6000813590506146d3816146ad565b92915050565b600080604083850312156146f0576146ef6140dc565b5b60006146fe858286016142e7565b925050602061470f858286016146c4565b9150509250929050565b61472281614595565b811461472d57600080fd5b50565b60008135905061473f81614719565b92915050565b600080fd5b600080fd5b60008083601f8401126147655761476461433c565b5b8235905067ffffffffffffffff81111561478257614781614745565b5b60208301915083600182028301111561479e5761479d61474a565b5b9250929050565b600080600080606085870312156147bf576147be6140dc565b5b60006147cd87828801614730565b945050602085013567ffffffffffffffff8111156147ee576147ed6140e1565b5b6147fa8782880161474f565b9350935050604061480d87828801614273565b91505092959194509250565b600067ffffffffffffffff82111561483457614833614346565b5b61483d826141f0565b9050602081019050919050565b600061485d61485884614819565b6143a6565b90508281526020810184848401111561487957614878614341565b5b6148848482856143f2565b509392505050565b600082601f8301126148a1576148a061433c565b5b81356148b184826020860161484a565b91505092915050565b600080600080608085870312156148d4576148d36140dc565b5b60006148e2878288016142e7565b94505060206148f3878288016142e7565b935050604061490487828801614273565b925050606085013567ffffffffffffffff811115614925576149246140e1565b5b6149318782880161488c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498457607f821691505b602082108114156149985761499761493d565b5b50919050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b60006149d46001836141ac565b91506149df8261499e565b602082019050919050565b60006020820190508181036000830152614a03816149c7565b9050919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a406001836141ac565b9150614a4b82614a0a565b602082019050919050565b60006020820190508181036000830152614a6f81614a33565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614aac6020836141ac565b9150614ab782614a76565b602082019050919050565b60006020820190508181036000830152614adb81614a9f565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b186001836141ac565b9150614b2382614ae2565b602082019050919050565b60006020820190508181036000830152614b4781614b0b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b8882614090565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bbb57614bba614b4e565b5b600182019050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b6000614bfc6001836141ac565b9150614c0782614bc6565b602082019050919050565b60006020820190508181036000830152614c2b81614bef565b9050919050565b600081519050614c418161425c565b92915050565b600060208284031215614c5d57614c5c6140dc565b5b6000614c6b84828501614c32565b91505092915050565b600081519050614c83816146ad565b92915050565b600060208284031215614c9f57614c9e6140dc565b5b6000614cad84828501614c74565b91505092915050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b6000614cec6001836141ac565b9150614cf782614cb6565b602082019050919050565b60006020820190508181036000830152614d1b81614cdf565b9050919050565b60008160601b9050919050565b6000614d3a82614d22565b9050919050565b6000614d4c82614d2f565b9050919050565b614d64614d5f8261406f565b614d41565b82525050565b6000614d768285614d53565b601482019150614d868284614d53565b6014820191508190509392505050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614dcc6001836141ac565b9150614dd782614d96565b602082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f7300000000000000000000000000000000000000000000000000000000000000600082015250565b6000614e386001836141ac565b9150614e4382614e02565b602082019050919050565b60006020820190508181036000830152614e6781614e2b565b9050919050565b6000614e7982614090565b9150614e8483614090565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614eb957614eb8614b4e565b5b828201905092915050565b7f6d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614efa6001836141ac565b9150614f0582614ec4565b602082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f6900000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f666001836141ac565b9150614f7182614f30565b602082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f6600000000000000000000000000000000000000000000000000000000000000600082015250565b6000614fd26001836141ac565b9150614fdd82614f9c565b602082019050919050565b6000602082019050818103600083015261500181614fc5565b9050919050565b7f6c00000000000000000000000000000000000000000000000000000000000000600082015250565b600061503e6001836141ac565b915061504982615008565b602082019050919050565b6000602082019050818103600083015261506d81615031565b9050919050565b600061507f82614090565b915061508a83614090565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150c3576150c2614b4e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061510882614090565b915061511383614090565b925082615123576151226150ce565b5b828204905092915050565b6000819050919050565b600061515361514e6151498461404f565b61512e565b61404f565b9050919050565b600061516582615138565b9050919050565b60006151778261515a565b9050919050565b6151878161516c565b82525050565b60006060820190506151a26000830186614081565b6151af602083018561517e565b6151bc604083018461409a565b949350505050565b60006151cf82614090565b91506151da83614090565b9250828210156151ed576151ec614b4e565b5b828203905092915050565b600060608201905061520d6000830186614081565b61521a6020830185614081565b615227604083018461409a565b949350505050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b60006152656001836141ac565b91506152708261522f565b602082019050919050565b6000602082019050818103600083015261529481615258565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546152c88161496c565b6152d2818661529b565b945060018216600081146152ed57600181146152fe57615331565b60ff19831686528186019350615331565b615307856152a6565b60005b838110156153295781548189015260018201915060208101905061530a565b838801955050505b50505092915050565b6000615345826141a1565b61534f818561529b565b935061535f8185602086016141bd565b80840191505092915050565b600061537782856152bb565b9150615383828461533a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153eb6026836141ac565b91506153f68261538f565b604082019050919050565b6000602082019050818103600083015261541a816153de565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061544882615421565b915061545383615421565b92508282101561546657615465614b4e565b5b828203905092915050565b600061547c82615421565b915061548783615421565b9250826fffffffffffffffffffffffffffffffff038211156154ac576154ab614b4e565b5b828201905092915050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b60006154ed6001836141ac565b91506154f8826154b7565b602082019050919050565b6000602082019050818103600083015261551c816154e0565b9050919050565b600061552e82614090565b9150600082141561554257615541614b4e565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006155748261554d565b61557e8185615558565b935061558e8185602086016141bd565b615597816141f0565b840191505092915050565b60006080820190506155b76000830187614081565b6155c46020830186614081565b6155d1604083018561409a565b81810360608301526155e38184615569565b905095945050505050565b6000815190506155fd81614112565b92915050565b600060208284031215615619576156186140dc565b5b6000615627848285016155ee565b91505092915050565b600061563b82614090565b915061564683614090565b925082615656576156556150ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006156c6601c8361529b565b91506156d182615690565b601c82019050919050565b6000819050919050565b6156f76156f282614595565b6156dc565b82525050565b6000615708826156b9565b915061571482846156e6565b60208201915081905092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006157596018836141ac565b915061576482615723565b602082019050919050565b600060208201905081810360008301526157888161574c565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006157c5601f836141ac565b91506157d08261578f565b602082019050919050565b600060208201905081810360008301526157f4816157b8565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006158576022836141ac565b9150615862826157fb565b604082019050919050565b600060208201905081810360008301526158868161584a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006158e96022836141ac565b91506158f48261588d565b604082019050919050565b60006020820190508181036000830152615918816158dc565b9050919050565b600060ff82169050919050565b6159358161591f565b82525050565b6000608082019050615950600083018761459f565b61595d602083018661592c565b61596a604083018561459f565b615977606083018461459f565b9594505050505056fea26469706673582212202e7b52ae4675a9d8b6574938d64954b9260544bd764bded361f189aff607861064736f6c634300080a00330000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000032000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c000000000000000000000000082e44ad879e804a873b4b425d80bbca32e74415000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000a506572656e6e69616c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450524e4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023f5760003560e01c806368855b641161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba0146108a8578063e5a6b10f146108d3578063e985e9c5146108fe578063efd0cbf91461093b578063f2fde38b146109575761027f565b8063a22cb465146107c0578063a9cbd06d146107e9578063b88d4fde14610805578063b9bd28011461082e578063c87b56dd1461086b5761027f565b80637cac2602116100f25780637cac2602146106ed5780638ad433ac146107165780638da5cb5b1461073f57806395d89b411461076a5780639da3f8fd146107955761027f565b806368855b64146106065780636c0360eb146106315780636c82054b1461065c57806370a0823114610699578063715018a6146106d65761027f565b80633ccfd60b116101bc57806355f804b31161018057806355f804b31461051f5780635c975abb146105485780636352211e146105735780636373a6b1146105b05780636817c76c146105db5761027f565b80633ccfd60b1461044e57806342842e0e1461046557806344fead9e1461048e57806349df728c146104b95780634f6ccce7146104e25761027f565b806318160ddd1161020357806318160ddd1461037b57806323b872dd146103a65780632f745c59146103cf578063333171bb1461040c578063386b7691146104235761027f565b806301ffc9a71461028457806306fdde03146102c1578063081812fc146102ec578063095ea7b31461032957806310969523146103525761027f565b3661027f577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f8852587433346040516102759291906140a9565b60405180910390a1005b600080fd5b34801561029057600080fd5b506102ab60048036038101906102a6919061413e565b610980565b6040516102b89190614186565b60405180910390f35b3480156102cd57600080fd5b506102d6610aca565b6040516102e3919061423a565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190614288565b610b5c565b60405161032091906142b5565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b91906142fc565b610be1565b005b34801561035e57600080fd5b5061037960048036038101906103749190614471565b610cfa565b005b34801561038757600080fd5b50610390610dc5565b60405161039d91906144ba565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906144d5565b610dce565b005b3480156103db57600080fd5b506103f660048036038101906103f191906142fc565b610dde565b60405161040391906144ba565b60405180910390f35b34801561041857600080fd5b50610421610fdc565b005b34801561042f57600080fd5b50610438611084565b60405161044591906144ba565b60405180910390f35b34801561045a57600080fd5b5061046361108a565b005b34801561047157600080fd5b5061048c600480360381019061048791906144d5565b611155565b005b34801561049a57600080fd5b506104a3611175565b6040516104b091906144ba565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190614528565b61117b565b005b3480156104ee57600080fd5b5061050960048036038101906105049190614288565b6112f2565b60405161051691906144ba565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190614471565b611345565b005b34801561055457600080fd5b5061055d6113cd565b60405161056a9190614186565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190614288565b6113e0565b6040516105a791906142b5565b60405180910390f35b3480156105bc57600080fd5b506105c56113f6565b6040516105d2919061423a565b60405180910390f35b3480156105e757600080fd5b506105f0611484565b6040516105fd91906144ba565b60405180910390f35b34801561061257600080fd5b5061061b61148a565b60405161062891906144ba565b60405180910390f35b34801561063d57600080fd5b50610646611490565b604051610653919061423a565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190614555565b611522565b60405161069091906145ae565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190614528565b611555565b6040516106cd91906144ba565b60405180910390f35b3480156106e257600080fd5b506106eb61163e565b005b3480156106f957600080fd5b50610714600480360381019061070f91906145ee565b6116c6565b005b34801561072257600080fd5b5061073d60048036038101906107389190614288565b611810565b005b34801561074b57600080fd5b50610754611966565b60405161076191906142b5565b60405180910390f35b34801561077657600080fd5b5061077f611990565b60405161078c919061423a565b60405180910390f35b3480156107a157600080fd5b506107aa611a22565b6040516107b79190614692565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906146d9565b611a35565b005b61080360048036038101906107fe91906147a5565b611bb6565b005b34801561081157600080fd5b5061082c600480360381019061082791906148ba565b61214a565b005b34801561083a57600080fd5b5061085560048036038101906108509190614528565b6121a6565b60405161086291906144ba565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190614288565b6121be565b60405161089f919061423a565b60405180910390f35b3480156108b457600080fd5b506108bd612266565b6040516108ca91906144ba565b60405180910390f35b3480156108df57600080fd5b506108e861226c565b6040516108f591906142b5565b60405180910390f35b34801561090a57600080fd5b5061092560048036038101906109209190614555565b612290565b6040516109329190614186565b60405180910390f35b61095560048036038101906109509190614288565b612324565b005b34801561096357600080fd5b5061097e60048036038101906109799190614528565b612829565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac35750610ac282612921565b5b9050919050565b606060018054610ad99061496c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b059061496c565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b5050505050905090565b6000610b678261298b565b610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906149ea565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bec826113e0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490614a56565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7c612998565b73ffffffffffffffffffffffffffffffffffffffff161480610cab5750610caa81610ca5612998565b612290565b5b610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce1906149ea565b60405180910390fd5b610cf58383836129a0565b505050565b610d02612998565b73ffffffffffffffffffffffffffffffffffffffff16610d20611966565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614ac2565b60405180910390fd5b600b60009054906101000a900460ff1615610d9057600080fd5b80600a9080519060200190610da6929190613f72565b506001600b60006101000a81548160ff02191690831515021790555050565b60008054905090565b610dd9838383612a52565b505050565b6000610de983611555565b8210610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190614b2e565b60405180910390fd5b6000610e34610dc5565b905060008060005b83811015610f9a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f865786841415610f77578195505050505050610fd6565b8380610f8290614b7d565b9450505b508080610f9290614b7d565b915050610e3c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90614c12565b60405180910390fd5b92915050565b610fe4612998565b73ffffffffffffffffffffffffffffffffffffffff16611002611966565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90614ac2565b60405180910390fd5b601060149054906101000a900460ff1615601060146101000a81548160ff021916908315150217905550565b600d5481565b611092612998565b73ffffffffffffffffffffffffffffffffffffffff166110b0611966565b73ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90614ac2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611151573d6000803e3d6000fd5b5050565b6111708383836040518060200160405280600081525061214a565b505050565b600f5481565b611183612998565b73ffffffffffffffffffffffffffffffffffffffff166111a1611966565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90614ac2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124d91906142b5565b602060405180830381865afa15801561126a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128e9190614c47565b6040518363ffffffff1660e01b81526004016112ab9291906140a9565b6020604051808303816000875af11580156112ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ee9190614c89565b5050565b60006112fc610dc5565b821061133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490614d02565b60405180910390fd5b819050919050565b61134d612998565b73ffffffffffffffffffffffffffffffffffffffff1661136b611966565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890614ac2565b60405180910390fd5b6113ca8161300b565b50565b601060149054906101000a900460ff1681565b60006113eb82613025565b600001519050919050565b600a80546114039061496c565b80601f016020809104026020016040519081016040528092919081815260200182805461142f9061496c565b801561147c5780601f106114515761010080835404028352916020019161147c565b820191906000526020600020905b81548152906001019060200180831161145f57829003601f168201915b505050505081565b600c5481565b600e5481565b60606003805461149f9061496c565b80601f01602080910402602001604051908101604052809291908181526020018280546114cb9061496c565b80156115185780601f106114ed57610100808354040283529160200191611518565b820191906000526020600020905b8154815290600101906020018083116114fb57829003601f168201915b5050505050905090565b60008282604051602001611537929190614d6a565b60405160208183030381529060405280519060200120905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90614de2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611646612998565b73ffffffffffffffffffffffffffffffffffffffff16611664611966565b73ffffffffffffffffffffffffffffffffffffffff16146116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190614ac2565b60405180910390fd5b6116c46000613228565b565b6116ce612998565b73ffffffffffffffffffffffffffffffffffffffff166116ec611966565b73ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173990614ac2565b60405180910390fd5b600060038111156117565761175561461b565b5b8160038111156117695761176861461b565b5b141561177457600080fd5b600260038111156117885761178761461b565b5b601060159054906101000a900460ff1660038111156117aa576117a961461b565b5b14156117e357600160038111156117c4576117c361461b565b5b8160038111156117d7576117d661461b565b5b14156117e257600080fd5b5b80601060156101000a81548160ff021916908360038111156118085761180761461b565b5b021790555050565b611818612998565b73ffffffffffffffffffffffffffffffffffffffff16611836611966565b73ffffffffffffffffffffffffffffffffffffffff161461188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614ac2565b60405180910390fd5b600060038111156118a05761189f61461b565b5b601060159054906101000a900460ff1660038111156118c2576118c161461b565b5b14611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990614e4e565b60405180910390fd5b600d548161190e610dc5565b6119189190614e6e565b1115611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614f10565b60405180910390fd5b61196333826132ee565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461199f9061496c565b80601f01602080910402602001604051908101604052809291908181526020018280546119cb9061496c565b8015611a185780601f106119ed57610100808354040283529160200191611a18565b820191906000526020600020905b8154815290600101906020018083116119fb57829003601f168201915b5050505050905090565b601060159054906101000a900460ff1681565b611a3d612998565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa2906149ea565b60405180910390fd5b8060076000611ab8612998565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b65612998565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611baa9190614186565b60405180910390a35050565b60016003811115611bca57611bc961461b565b5b601060159054906101000a900460ff166003811115611bec57611beb61461b565b5b148015611c065750601060149054906101000a900460ff16155b611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614e4e565b60405180910390fd5b600d5481611c51610dc5565b611c5b9190614e6e565b1115611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390614f10565b60405180910390fd5b83611ca73330611522565b14611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde90614f7c565b60405180910390fd5b611d358484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061330c565b611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90614fe8565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc29190614e6e565b1115611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa90615054565b60405180910390fd5b600081600e54611e139190615074565b905060006103e8601983611e279190615074565b611e3191906150fd565b90507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff161415611f565734821115611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee1906149ea565b60405180910390fd5b7f000000000000000000000000082e44ad879e804a873b4b425d80bbca32e7441573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611f50573d6000803e3d6000fd5b506120aa565b60007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290508073ffffffffffffffffffffffffffffffffffffffff166323b872dd337f000000000000000000000000082e44ad879e804a873b4b425d80bbca32e74415856040518463ffffffff1660e01b8152600401611fd89392919061518d565b6020604051808303816000875af1158015611ff7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201b9190614c89565b508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330858761204691906151c4565b6040518463ffffffff1660e01b8152600401612064939291906151f8565b6020604051808303816000875af1158015612083573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a79190614c89565b50505b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120f59190614e6e565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061214233846132ee565b505050505050565b612155848484612a52565b61216184848484613381565b6121a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121979061527b565b60405180910390fd5b50505050565b60116020528060005260406000206000915090505481565b60606121c98261298b565b612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff9061527b565b60405180910390fd5b6000600380546122179061496c565b905011612233576040518060200160405280600081525061225f565b600361223e83613509565b60405160200161224f92919061536b565b6040516020818303038152906040525b9050919050565b60085481565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260038111156123385761233761461b565b5b601060159054906101000a900460ff16600381111561235a5761235961461b565b5b1480156123745750601060149054906101000a900460ff16155b6123b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123aa90614e4e565b60405180910390fd5b600d54816123bf610dc5565b6123c99190614e6e565b111561240a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240190614f10565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124589190614e6e565b1115612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249090615054565b60405180910390fd5b600081600c546124a99190615074565b905060006103e86019836124bd9190615074565b6124c791906150fd565b90507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1614156125f9573483600c5461254c9190615074565b111561258d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612584906149ea565b60405180910390fd5b7f000000000000000000000000082e44ad879e804a873b4b425d80bbca32e7441573ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156125f3573d6000803e3d6000fd5b5061274f565b60007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290508073ffffffffffffffffffffffffffffffffffffffff166323b872dd337f000000000000000000000000082e44ad879e804a873b4b425d80bbca32e74415856040518463ffffffff1660e01b815260040161267b9392919061518d565b6020604051808303816000875af115801561269a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126be9190614c89565b508073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600c54886126eb9190615074565b6040518463ffffffff1660e01b8152600401612709939291906151f8565b6020604051808303816000875af1158015612728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274c9190614c89565b50505b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279a9190614e6e565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127e733846132ee565b600d546127f2610dc5565b1415612824576003601060156101000a81548160ff0219169083600381111561281e5761281d61461b565b5b02179055505b505050565b612831612998565b73ffffffffffffffffffffffffffffffffffffffff1661284f611966565b73ffffffffffffffffffffffffffffffffffffffff16146128a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289c90614ac2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290c90615401565b60405180910390fd5b61291e81613228565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a5d82613025565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a84612998565b73ffffffffffffffffffffffffffffffffffffffff161480612ae05750612aa9612998565b73ffffffffffffffffffffffffffffffffffffffff16612ac884610b5c565b73ffffffffffffffffffffffffffffffffffffffff16145b80612afc5750612afb8260000151612af6612998565b612290565b5b905080612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b35906149ea565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba790614a56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790614de2565b60405180910390fd5b612c2d858585600161366a565b612c3d60008484600001516129a0565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612cab919061543d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612d4f9190615471565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612e559190614e6e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f9b57612ecb8161298b565b15612f9a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130038686866001613670565b505050505050565b8060039080519060200190613021929190613f72565b5050565b61302d613ff8565b6130368261298b565b613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c90615503565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106130d95760017f000000000000000000000000000000000000000000000000000000000000000a846130cc91906151c4565b6130d69190614e6e565b90505b60008390505b8181106131e7576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131d357809350505050613223565b5080806131df90615523565b9150506130df565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321a90614a56565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613308828260405180602001604052806000815250613676565b5050565b60006133298261331b85613b55565b613b8590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60006133a28473ffffffffffffffffffffffffffffffffffffffff16613bac565b156134fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133cb612998565b8786866040518563ffffffff1660e01b81526004016133ed94939291906155a2565b6020604051808303816000875af192505050801561342957506040513d601f19601f820116820180604052508101906134269190615603565b60015b6134ac573d8060008114613459576040519150601f19603f3d011682016040523d82523d6000602084013e61345e565b606091505b506000815114156134a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349b9061527b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613501565b600190505b949350505050565b60606000821415613551576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613665565b600082905060005b6000821461358357808061356c90614b7d565b915050600a8261357c91906150fd565b9150613559565b60008167ffffffffffffffff81111561359f5761359e614346565b5b6040519080825280601f01601f1916602001820160405280156135d15781602001600182028036833780820191505090505b5090505b6000851461365e576001826135ea91906151c4565b9150600a856135f99190615630565b60306136059190614e6e565b60f81b81838151811061361b5761361a615661565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561365791906150fd565b94506135d5565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156136ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e390614de2565b60405180910390fd5b6136f58161298b565b15613735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372c906149ea565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115613798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378f90614f10565b60405180910390fd5b6137a5600085838661366a565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516138a29190615471565b6fffffffffffffffffffffffffffffffff1681526020018583602001516138c99190615471565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613b3857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ad86000888488613381565b613b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b0e9061527b565b60405180910390fd5b8180613b2290614b7d565b9250508080613b3090614b7d565b915050613a67565b5080600081905550613b4d6000878588613670565b505050505050565b600081604051602001613b6891906156fd565b604051602081830303815290604052805190602001209050919050565b6000806000613b948585613bbf565b91509150613ba181613c42565b819250505092915050565b600080823b905060008111915050919050565b600080604183511415613c015760008060006020860151925060408601519150606086015160001a9050613bf587828585613e17565b94509450505050613c3b565b604083511415613c32576000806020850151915060408501519050613c27868383613f24565b935093505050613c3b565b60006002915091505b9250929050565b60006004811115613c5657613c5561461b565b5b816004811115613c6957613c6861461b565b5b1415613c7457613e14565b60016004811115613c8857613c8761461b565b5b816004811115613c9b57613c9a61461b565b5b1415613cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cd39061576f565b60405180910390fd5b60026004811115613cf057613cef61461b565b5b816004811115613d0357613d0261461b565b5b1415613d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3b906157db565b60405180910390fd5b60036004811115613d5857613d5761461b565b5b816004811115613d6b57613d6a61461b565b5b1415613dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613da39061586d565b60405180910390fd5b600480811115613dbf57613dbe61461b565b5b816004811115613dd257613dd161461b565b5b1415613e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e0a906158ff565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613e52576000600391509150613f1b565b601b8560ff1614158015613e6a5750601c8560ff1614155b15613e7c576000600491509150613f1b565b600060018787878760405160008152602001604052604051613ea1949392919061593b565b6020604051602081039080840390855afa158015613ec3573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613f1257600060019250925050613f1b565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613f6487828885613e17565b935093505050935093915050565b828054613f7e9061496c565b90600052602060002090601f016020900481019282613fa05760008555613fe7565b82601f10613fb957805160ff1916838001178555613fe7565b82800160010185558215613fe7579182015b82811115613fe6578251825591602001919060010190613fcb565b5b509050613ff49190614032565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561404b576000816000905550600101614033565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061407a8261404f565b9050919050565b61408a8161406f565b82525050565b6000819050919050565b6140a381614090565b82525050565b60006040820190506140be6000830185614081565b6140cb602083018461409a565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61411b816140e6565b811461412657600080fd5b50565b60008135905061413881614112565b92915050565b600060208284031215614154576141536140dc565b5b600061416284828501614129565b91505092915050565b60008115159050919050565b6141808161416b565b82525050565b600060208201905061419b6000830184614177565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141db5780820151818401526020810190506141c0565b838111156141ea576000848401525b50505050565b6000601f19601f8301169050919050565b600061420c826141a1565b61421681856141ac565b93506142268185602086016141bd565b61422f816141f0565b840191505092915050565b600060208201905081810360008301526142548184614201565b905092915050565b61426581614090565b811461427057600080fd5b50565b6000813590506142828161425c565b92915050565b60006020828403121561429e5761429d6140dc565b5b60006142ac84828501614273565b91505092915050565b60006020820190506142ca6000830184614081565b92915050565b6142d98161406f565b81146142e457600080fd5b50565b6000813590506142f6816142d0565b92915050565b60008060408385031215614313576143126140dc565b5b6000614321858286016142e7565b925050602061433285828601614273565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61437e826141f0565b810181811067ffffffffffffffff8211171561439d5761439c614346565b5b80604052505050565b60006143b06140d2565b90506143bc8282614375565b919050565b600067ffffffffffffffff8211156143dc576143db614346565b5b6143e5826141f0565b9050602081019050919050565b82818337600083830152505050565b600061441461440f846143c1565b6143a6565b9050828152602081018484840111156144305761442f614341565b5b61443b8482856143f2565b509392505050565b600082601f8301126144585761445761433c565b5b8135614468848260208601614401565b91505092915050565b600060208284031215614487576144866140dc565b5b600082013567ffffffffffffffff8111156144a5576144a46140e1565b5b6144b184828501614443565b91505092915050565b60006020820190506144cf600083018461409a565b92915050565b6000806000606084860312156144ee576144ed6140dc565b5b60006144fc868287016142e7565b935050602061450d868287016142e7565b925050604061451e86828701614273565b9150509250925092565b60006020828403121561453e5761453d6140dc565b5b600061454c848285016142e7565b91505092915050565b6000806040838503121561456c5761456b6140dc565b5b600061457a858286016142e7565b925050602061458b858286016142e7565b9150509250929050565b6000819050919050565b6145a881614595565b82525050565b60006020820190506145c3600083018461459f565b92915050565b600481106145d657600080fd5b50565b6000813590506145e8816145c9565b92915050565b600060208284031215614604576146036140dc565b5b6000614612848285016145d9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061465b5761465a61461b565b5b50565b600081905061466c8261464a565b919050565b600061467c8261465e565b9050919050565b61468c81614671565b82525050565b60006020820190506146a76000830184614683565b92915050565b6146b68161416b565b81146146c157600080fd5b50565b6000813590506146d3816146ad565b92915050565b600080604083850312156146f0576146ef6140dc565b5b60006146fe858286016142e7565b925050602061470f858286016146c4565b9150509250929050565b61472281614595565b811461472d57600080fd5b50565b60008135905061473f81614719565b92915050565b600080fd5b600080fd5b60008083601f8401126147655761476461433c565b5b8235905067ffffffffffffffff81111561478257614781614745565b5b60208301915083600182028301111561479e5761479d61474a565b5b9250929050565b600080600080606085870312156147bf576147be6140dc565b5b60006147cd87828801614730565b945050602085013567ffffffffffffffff8111156147ee576147ed6140e1565b5b6147fa8782880161474f565b9350935050604061480d87828801614273565b91505092959194509250565b600067ffffffffffffffff82111561483457614833614346565b5b61483d826141f0565b9050602081019050919050565b600061485d61485884614819565b6143a6565b90508281526020810184848401111561487957614878614341565b5b6148848482856143f2565b509392505050565b600082601f8301126148a1576148a061433c565b5b81356148b184826020860161484a565b91505092915050565b600080600080608085870312156148d4576148d36140dc565b5b60006148e2878288016142e7565b94505060206148f3878288016142e7565b935050604061490487828801614273565b925050606085013567ffffffffffffffff811115614925576149246140e1565b5b6149318782880161488c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498457607f821691505b602082108114156149985761499761493d565b5b50919050565b7f6100000000000000000000000000000000000000000000000000000000000000600082015250565b60006149d46001836141ac565b91506149df8261499e565b602082019050919050565b60006020820190508181036000830152614a03816149c7565b9050919050565b7f6f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a406001836141ac565b9150614a4b82614a0a565b602082019050919050565b60006020820190508181036000830152614a6f81614a33565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614aac6020836141ac565b9150614ab782614a76565b602082019050919050565b60006020820190508181036000830152614adb81614a9f565b9050919050565b7f6200000000000000000000000000000000000000000000000000000000000000600082015250565b6000614b186001836141ac565b9150614b2382614ae2565b602082019050919050565b60006020820190508181036000830152614b4781614b0b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b8882614090565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bbb57614bba614b4e565b5b600182019050919050565b7f7500000000000000000000000000000000000000000000000000000000000000600082015250565b6000614bfc6001836141ac565b9150614c0782614bc6565b602082019050919050565b60006020820190508181036000830152614c2b81614bef565b9050919050565b600081519050614c418161425c565b92915050565b600060208284031215614c5d57614c5c6140dc565b5b6000614c6b84828501614c32565b91505092915050565b600081519050614c83816146ad565b92915050565b600060208284031215614c9f57614c9e6140dc565b5b6000614cad84828501614c74565b91505092915050565b7f6700000000000000000000000000000000000000000000000000000000000000600082015250565b6000614cec6001836141ac565b9150614cf782614cb6565b602082019050919050565b60006020820190508181036000830152614d1b81614cdf565b9050919050565b60008160601b9050919050565b6000614d3a82614d22565b9050919050565b6000614d4c82614d2f565b9050919050565b614d64614d5f8261406f565b614d41565b82525050565b6000614d768285614d53565b601482019150614d868284614d53565b6014820191508190509392505050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000614dcc6001836141ac565b9150614dd782614d96565b602082019050919050565b60006020820190508181036000830152614dfb81614dbf565b9050919050565b7f7300000000000000000000000000000000000000000000000000000000000000600082015250565b6000614e386001836141ac565b9150614e4382614e02565b602082019050919050565b60006020820190508181036000830152614e6781614e2b565b9050919050565b6000614e7982614090565b9150614e8483614090565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614eb957614eb8614b4e565b5b828201905092915050565b7f6d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614efa6001836141ac565b9150614f0582614ec4565b602082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f6900000000000000000000000000000000000000000000000000000000000000600082015250565b6000614f666001836141ac565b9150614f7182614f30565b602082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f6600000000000000000000000000000000000000000000000000000000000000600082015250565b6000614fd26001836141ac565b9150614fdd82614f9c565b602082019050919050565b6000602082019050818103600083015261500181614fc5565b9050919050565b7f6c00000000000000000000000000000000000000000000000000000000000000600082015250565b600061503e6001836141ac565b915061504982615008565b602082019050919050565b6000602082019050818103600083015261506d81615031565b9050919050565b600061507f82614090565b915061508a83614090565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150c3576150c2614b4e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061510882614090565b915061511383614090565b925082615123576151226150ce565b5b828204905092915050565b6000819050919050565b600061515361514e6151498461404f565b61512e565b61404f565b9050919050565b600061516582615138565b9050919050565b60006151778261515a565b9050919050565b6151878161516c565b82525050565b60006060820190506151a26000830186614081565b6151af602083018561517e565b6151bc604083018461409a565b949350505050565b60006151cf82614090565b91506151da83614090565b9250828210156151ed576151ec614b4e565b5b828203905092915050565b600060608201905061520d6000830186614081565b61521a6020830185614081565b615227604083018461409a565b949350505050565b7f7a00000000000000000000000000000000000000000000000000000000000000600082015250565b60006152656001836141ac565b91506152708261522f565b602082019050919050565b6000602082019050818103600083015261529481615258565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546152c88161496c565b6152d2818661529b565b945060018216600081146152ed57600181146152fe57615331565b60ff19831686528186019350615331565b615307856152a6565b60005b838110156153295781548189015260018201915060208101905061530a565b838801955050505b50505092915050565b6000615345826141a1565b61534f818561529b565b935061535f8185602086016141bd565b80840191505092915050565b600061537782856152bb565b9150615383828461533a565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153eb6026836141ac565b91506153f68261538f565b604082019050919050565b6000602082019050818103600083015261541a816153de565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061544882615421565b915061545383615421565b92508282101561546657615465614b4e565b5b828203905092915050565b600061547c82615421565b915061548783615421565b9250826fffffffffffffffffffffffffffffffff038211156154ac576154ab614b4e565b5b828201905092915050565b7f7400000000000000000000000000000000000000000000000000000000000000600082015250565b60006154ed6001836141ac565b91506154f8826154b7565b602082019050919050565b6000602082019050818103600083015261551c816154e0565b9050919050565b600061552e82614090565b9150600082141561554257615541614b4e565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b60006155748261554d565b61557e8185615558565b935061558e8185602086016141bd565b615597816141f0565b840191505092915050565b60006080820190506155b76000830187614081565b6155c46020830186614081565b6155d1604083018561409a565b81810360608301526155e38184615569565b905095945050505050565b6000815190506155fd81614112565b92915050565b600060208284031215615619576156186140dc565b5b6000615627848285016155ee565b91505092915050565b600061563b82614090565b915061564683614090565b925082615656576156556150ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006156c6601c8361529b565b91506156d182615690565b601c82019050919050565b6000819050919050565b6156f76156f282614595565b6156dc565b82525050565b6000615708826156b9565b915061571482846156e6565b60208201915081905092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006157596018836141ac565b915061576482615723565b602082019050919050565b600060208201905081810360008301526157888161574c565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006157c5601f836141ac565b91506157d08261578f565b602082019050919050565b600060208201905081810360008301526157f4816157b8565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006158576022836141ac565b9150615862826157fb565b604082019050919050565b600060208201905081810360008301526158868161584a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006158e96022836141ac565b91506158f48261588d565b604082019050919050565b60006020820190508181036000830152615918816158dc565b9050919050565b600060ff82169050919050565b6159358161591f565b82525050565b6000608082019050615950600083018761459f565b61595d602083018661592c565b61596a604083018561459f565b615977606083018461459f565b9594505050505056fea26469706673582212202e7b52ae4675a9d8b6574938d64954b9260544bd764bded361f189aff607861064736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000032000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c000000000000000000000000082e44ad879e804a873b4b425d80bbca32e74415000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000000a506572656e6e69616c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000450524e4c00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Perennials
Arg [1] : _symbol (string): PRNL
Arg [2] : _maxPossibleSupply (uint256): 1000
Arg [3] : _mintPrice (uint256): 1
Arg [4] : _allowListMintPrice (uint256): 1
Arg [5] : _maxAllowedMints (uint256): 50
Arg [6] : _signerAddress (address): 0xe9A347e4bFbe5A219F3497B1CA3Ac8568a99ED6c
Arg [7] : _omakasea (address): 0x082e44ad879e804A873B4B425d80BbCa32E74415
Arg [8] : _currency (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [9] : _wrappedNativeCoinAddress (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [6] : 000000000000000000000000e9a347e4bfbe5a219f3497b1ca3ac8568a99ed6c
Arg [7] : 000000000000000000000000082e44ad879e804a873b4b425d80bbca32e74415
Arg [8] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [9] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [11] : 506572656e6e69616c7300000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 50524e4c00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.