ERC-721
Overview
Max Total Supply
1,013 PEV3
Holders
338
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PEV3Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HPToken
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.5.17; import "@openzeppelin/contracts/ownership/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721Metadata.sol"; import "@openzeppelin/contracts/cryptography/MerkleProof.sol"; import "./Minter.sol"; import "./Utils.sol"; contract HPToken is Utils, ERC721Metadata, Ownable, Minter { string private _baseURI; uint256 private _totalSupply; bytes32 private _rootHash; constructor( string memory baseURI, address[] memory mintersWhitelist, bytes32 rootHash ) public Ownable() ERC721Metadata("Postereum 3", "PEV3") Minter() { _baseURI = baseURI; _rootHash = rootHash; addMinter(msg.sender); uint256 accountsCount = mintersWhitelist.length; for (uint256 i = 0; i < accountsCount; i++) { addMinter(mintersWhitelist[i]); } } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return _totalSupply; } function setBaseURI(string memory uri) public onlyOwner { _baseURI = uri; } function _mint(address to, uint256 tokenId) internal { super._mint(to, tokenId); _totalSupply = _totalSupply.add(1); } /** * @dev Public function to set calculated root hash. * @param rootHash bytes32 Calculated root hash of merkle proof tree */ function setRootHash(bytes32 rootHash) public onlyOwner { _rootHash = rootHash; } /** * @dev Public function to check merkleProof and reedem token to owner. * @param index uint256- Token index in sorted merkle tree * @param tokenId uint256 - Token id * @param merkleProof bytes32[] memory array of a storage proof */ function redeem( uint256 index, uint256 tokenId, address owner, bytes32[] calldata merkleProof ) external returns (uint256) { bytes32 leaf = keccak256(abi.encodePacked(index, tokenId, owner)); require( MerkleProof.verify(merkleProof, _rootHash, leaf), "Merkle proof verification failed" ); _mint(owner, tokenId); return tokenId; } /** * @dev Public function to check minter signature and mint to claimer address * @param tokenIds uint256[] - List of tokenIds to claim * @param to address - Address of user claiming token * @param signature bytes memory signature provided by minter to authroize minting */ function claim( uint256[] calldata tokenIds, address to, bytes calldata signature ) external { require(to != address(0), "Invalid address"); bytes32 message = prefixed(keccak256(abi.encodePacked(tokenIds, to))); address minter = recoverSigner(message, signature); require(isMinter(minter), "Invalid signer"); for (uint256 i = 0; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; require(tokenId > 0 && tokenId <= 1500, "Invalid tokenId"); _mint(to, tokenId); } } function tokenURI(uint256 tokenId) public view returns (string memory) { return string(abi.encodePacked(_baseURI, "/stamp/", toString(tokenId))); } }
pragma solidity ^0.5.0; import "../GSN/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. * * 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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
pragma solidity ^0.5.0; import "../../GSN/Context.sol"; import "./ERC721.sol"; import "./IERC721Metadata.sol"; import "../../introspection/ERC165.sol"; contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata { // Token name string private _name; // Token symbol string private _symbol; // Base URI string private _baseURI; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /** * @dev Constructor function */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721_METADATA); } /** * @dev Gets the token name. * @return string representing the token name */ function name() external view returns (string memory) { return _name; } /** * @dev Gets the token symbol. * @return string representing the token symbol */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the URI for a given token ID. May return an empty string. * * If the token's URI is non-empty and a base URI was set (via * {_setBaseURI}), it will be added to the token ID's URI as a prefix. * * Reverts if the token ID does not exist. */ function tokenURI(uint256 tokenId) external view returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // Even if there is a base URI, it is only appended to non-empty token-specific URIs if (bytes(_tokenURI).length == 0) { return ""; } else { // abi.encodePacked is being used to concatenate strings return string(abi.encodePacked(_baseURI, _tokenURI)); } } /** * @dev Internal function to set the token URI for a given token. * * Reverts if the token ID does not exist. * * TIP: if all token IDs share a prefix (e.g. if your URIs look like * `http://api.myproject.com/token/<id>`), use {_setBaseURI} to store * it and save gas. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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}. * * _Available since v2.5.0._ */ function _setBaseURI(string memory baseURI) internal { _baseURI = baseURI; } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a preffix in {tokenURI} to each token's URI, when * they are non-empty. * * _Available since v2.5.0._ */ function baseURI() external view returns (string memory) { return _baseURI; } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use _burn(uint256) instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned by the msg.sender */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
pragma solidity ^0.5.0; /** * @dev These functions deal with verification of Merkle trees (hash trees), */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT pragma solidity 0.5.17; import "@openzeppelin/contracts/ownership/Ownable.sol"; contract Minter is Ownable { mapping(address => bool) internal minters; function addMinter(address account) public onlyOwner { require(account != address(0), "Minter: zero address provided."); minters[account] = true; } function removeMinter(address account) public onlyOwner { require(account != address(0), "Minter: zero address provided."); minters[account] = false; } function isMinter(address account) public view returns (bool) { return minters[account]; } }
// SPDX-License-Identifier: MIT pragma solidity 0.5.17; contract Utils { /** * To String * * Converts an unsigned integer to the ASCII string equivalent value * * @param _base The unsigned integer to be converted to a string * @return string The resulting ASCII string value */ function toString(uint256 _base) internal pure returns (string memory) { bytes memory _tmp = new bytes(32); uint256 i; for (i = 0; _base > 0; i++) { _tmp[i] = bytes1(uint8((_base % 10) + 48)); _base /= 10; } bytes memory _real = new bytes(i--); for (uint256 j = 0; j < _real.length; j++) { _real[j] = _tmp[i--]; } return string(_real); } /// signature methods. function splitSignature(bytes memory sig) internal pure returns ( uint8 v, bytes32 r, bytes32 s ) { require(sig.length == 65, "Invalid signature length"); assembly { // first 32 bytes, after the length prefix. r := mload(add(sig, 32)) // second 32 bytes. s := mload(add(sig, 64)) // final byte (first byte of the next 32 bytes). v := byte(0, mload(add(sig, 96))) } return (v, r, s); } function recoverSigner(bytes32 message, bytes memory sig) internal pure returns (address) { (uint8 v, bytes32 r, bytes32 s) = splitSignature(sig); return ecrecover(message, v, r, s); } /// builds a prefixed hash to mimic the behavior of eth_sign. function prefixed(bytes32 hash) internal pure returns (bytes32) { return keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", hash) ); } }
pragma solidity ^0.5.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 GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.5.0; import "../../GSN/Context.sol"; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; import "../../drafts/Counters.sol"; import "../../introspection/ERC165.sol"; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from token ID to owner mapping (uint256 => address) private _tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to number of owned token mapping (address => Counters.Counter) private _ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; constructor () public { // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); } /** * @dev Gets the balance of the specified address. * @param owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address owner) public view returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _ownedTokensCount[owner].current(); } /** * @dev Gets the owner of the specified token ID. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view returns (address) { address owner = _tokenOwner[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ function approve(address to, uint256 tokenId) public { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf. * @param to operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address to, bool approved) public { require(to != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][to] = approved; emit ApprovalForAll(_msgSender(), to, approved); } /** * @dev Tells whether an operator is approved by a given owner. * @param owner owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner */ function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Transfers the ownership of a given token ID to another address. * Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * Requires the msg.sender to be the owner, approved, or operator. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function transferFrom(address from, address to, uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transferFrom(from, to, tokenId); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the _msgSender() to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransferFrom(from, to, tokenId, _data); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal { _transferFrom(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether the specified token exists. * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 tokenId) internal view returns (bool) { address owner = _tokenOwner[tokenId]; return owner != address(0); } /** * @dev Returns whether the given spender can transfer a given token ID. * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted * @param _data bytes data to send along with a safe transfer check */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _tokenOwner[tokenId] = to; _ownedTokensCount[to].increment(); emit Transfer(address(0), to, tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own"); _clearApproval(tokenId); _ownedTokensCount[owner].decrement(); _tokenOwner[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * @param tokenId uint256 ID of the token being burned */ function _burn(uint256 tokenId) internal { _burn(ownerOf(tokenId), tokenId); } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _clearApproval(tokenId); _ownedTokensCount[from].decrement(); _ownedTokensCount[to].increment(); _tokenOwner[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * This is an internal detail of the `ERC721` contract and its use is deprecated. * @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) internal returns (bool) { if (!to.isContract()) { return true; } // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data )); if (!success) { if (returndata.length > 0) { // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert("ERC721: transfer to non ERC721Receiver implementer"); } } else { bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } } /** * @dev Private function to clear current approval of a given token ID. * @param tokenId uint256 ID of the token to be transferred */ function _clearApproval(uint256 tokenId) private { if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } }
pragma solidity ^0.5.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); }
pragma solidity ^0.5.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } }
pragma solidity ^0.5.0; import "../../introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ contract IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in `owner`'s account. */ function balanceOf(address owner) public view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) public view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) public; function approve(address to, uint256 tokenId) public; function getApproved(uint256 tokenId) public view returns (address operator); function setApprovalForAll(address operator, bool _approved) public; function isApprovedForAll(address owner, address operator) public view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public; }
pragma solidity ^0.5.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4); }
pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
pragma solidity ^0.5.5; /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } }
pragma solidity ^0.5.0; import "../math/SafeMath.sol"; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } }
pragma solidity ^0.5.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": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address[]","name":"mintersWhitelist","type":"address[]"},{"internalType":"bytes32","name":"rootHash","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"rootHash","type":"bytes32"}],"name":"setRootHash","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620027e8380380620027e8833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82518660208202830111640100000000821117156200013e57600080fd5b82525081516020918201928201910280838360005b838110156200016d57818101518382015260200162000153565b505050509190910160408181526020938401518183018252600b83526a506f7374657265756d203360a81b85840152815180830190925260048252635045563360e01b948201949094529294509250620001d990506301ffc9a760e01b6001600160e01b036200031716565b620001f46380ac58cd60e01b6001600160e01b036200031716565b815162000209906005906020850190620004b7565b5080516200021f906006906020840190620004b7565b506200023b635b5e139f60e01b6001600160e01b036200031716565b5060009050620002536001600160e01b036200039c16565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508251620002b690600b906020860190620004b7565b50600d819055620002d0336001600160e01b03620003a116565b815160005b818110156200030c5762000303848281518110620002ef57fe5b6020026020010151620003a160201b60201c565b600101620002d5565b505050505062000559565b6001600160e01b0319808216141562000377576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b620003b46001600160e01b036200048616565b62000406576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811662000462576040805162461bcd60e51b815260206004820152601e60248201527f4d696e7465723a207a65726f20616464726573732070726f76696465642e0000604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6009546000906001600160a01b0316620004a86001600160e01b036200039c16565b6001600160a01b031614905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004fa57805160ff19168380011785556200052a565b828001600101855582156200052a579182015b828111156200052a5782518255916020019190600101906200050d565b50620005389291506200053c565b5090565b6200039e91905b8082111562000538576000815560010162000543565b61227f80620005696000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063983b2d5611610097578063b88d4fde11610071578063b88d4fde14610659578063c87b56dd1461071d578063e985e9c51461073a578063f2fde38b146107685761018e565b8063983b2d56146105df578063a22cb46514610605578063aa271e1a146106335761018e565b806370a08231146104ce578063715018a6146104f4578063875b4f63146104fc5780638da5cb5b146105c75780638f32d59b146105cf57806395d89b41146105d75761018e565b80632d7eae661161014b57806342842e0e1161012557806342842e0e146103cf57806355f804b3146104055780636352211e146104a95780636c0360eb146104c65761018e565b80632d7eae66146103025780633092afd51461031f57806335b000a2146103455761018e565b806301ffc9a71461019357806306fdde03146101ce578063081812fc1461024b578063095ea7b31461028457806318160ddd146102b257806323b872dd146102cc575b600080fd5b6101ba600480360360208110156101a957600080fd5b50356001600160e01b03191661078e565b604080519115158252519081900360200190f35b6101d66107ad565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102105781810151838201526020016101f8565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102686004803603602081101561026157600080fd5b5035610844565b604080516001600160a01b039092168252519081900360200190f35b6102b06004803603604081101561029a57600080fd5b506001600160a01b0381351690602001356108a6565b005b6102ba6109ce565b60408051918252519081900360200190f35b6102b0600480360360608110156102e257600080fd5b506001600160a01b038135811691602081013590911690604001356109d4565b6102b06004803603602081101561031857600080fd5b5035610a30565b6102b06004803603602081101561033557600080fd5b50356001600160a01b0316610a7c565b6102ba6004803603608081101561035b57600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b81111561039157600080fd5b8201836020820111156103a357600080fd5b803590602001918460208302840111600160201b831117156103c457600080fd5b509092509050610b3f565b6102b0600480360360608110156103e557600080fd5b506001600160a01b03813581169160208101359091169060400135610c28565b6102b06004803603602081101561041b57600080fd5b810190602081018135600160201b81111561043557600080fd5b82018360208201111561044757600080fd5b803590602001918460018302840111600160201b8311171561046857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c43945050505050565b610268600480360360208110156104bf57600080fd5b5035610ca1565b6101d6610cfb565b6102ba600480360360208110156104e457600080fd5b50356001600160a01b0316610d5c565b6102b0610dc4565b6102b06004803603606081101561051257600080fd5b810190602081018135600160201b81111561052c57600080fd5b82018360208201111561053e57600080fd5b803590602001918460208302840111600160201b8311171561055f57600080fd5b919390926001600160a01b0383351692604081019060200135600160201b81111561058957600080fd5b82018360208201111561059b57600080fd5b803590602001918460018302840111600160201b831117156105bc57600080fd5b509092509050610e55565b610268611021565b6101ba611030565b6101d6611056565b6102b0600480360360208110156105f557600080fd5b50356001600160a01b03166110b7565b6102b06004803603604081101561061b57600080fd5b506001600160a01b038135169060200135151561117d565b6101ba6004803603602081101561064957600080fd5b50356001600160a01b0316611282565b6102b06004803603608081101561066f57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156106a957600080fd5b8201836020820111156106bb57600080fd5b803590602001918460018302840111600160201b831117156106dc57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506112a0945050505050565b6101d66004803603602081101561073357600080fd5b50356112fe565b6101ba6004803603604081101561075057600080fd5b506001600160a01b03813581169160200135166113e4565b6102b06004803603602081101561077e57600080fd5b50356001600160a01b0316611412565b6001600160e01b03191660009081526020819052604090205460ff1690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b505050505090505b90565b600061084f82611465565b61088a5760405162461bcd60e51b815260040180806020018281038252602c815260200180612184602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006108b182610ca1565b9050806001600160a01b0316836001600160a01b031614156109045760405162461bcd60e51b81526004018080602001828103825260218152602001806121f96021913960400191505060405180910390fd5b806001600160a01b0316610916611482565b6001600160a01b03161480610937575061093781610932611482565b6113e4565b6109725760405162461bcd60e51b81526004018080602001828103825260388152602001806120f96038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600c5490565b6109e56109df611482565b82611486565b610a205760405162461bcd60e51b815260040180806020018281038252603181526020018061221a6031913960400191505060405180910390fd5b610a2b83838361152a565b505050565b610a38611030565b610a77576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b600d55565b610a84611030565b610ac3576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b6001600160a01b038116610b1e576040805162461bcd60e51b815260206004820152601e60248201527f4d696e7465723a207a65726f20616464726573732070726f76696465642e0000604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19169055565b604080516020808201889052818301879052606086811b6bffffffffffffffffffffffff191690830152825180830360540181526074830180855281519183019190912091850280840160949081019095528582526000949293610bc293889288928392019084908082843760009201919091525050600d54915084905061166e565b610c13576040805162461bcd60e51b815260206004820181905260248201527f4d65726b6c652070726f6f6620766572696669636174696f6e206661696c6564604482015290519081900360640190fd5b610c1d8587611717565b509395945050505050565b610a2b838383604051806020016040528060008152506112a0565b610c4b611030565b610c8a576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b8051610c9d90600b906020840190611fb8565b5050565b6000818152600160205260408120546001600160a01b031680610cf55760405162461bcd60e51b815260040180806020018281038252602981526020018061215b6029913960400191505060405180910390fd5b92915050565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108395780601f1061080e57610100808354040283529160200191610839565b60006001600160a01b038216610da35760405162461bcd60e51b815260040180806020018281038252602a815260200180612131602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610cf59061173c565b610dcc611030565b610e0b576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6001600160a01b038316610ea2576040805162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015290519081900360640190fd5b6000610efc8686866040516020018084846020028082843780830192505050826001600160a01b03166001600160a01b031660601b8152601401935050505060405160208183030381529060405280519060200120611740565b90506000610f408285858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061179192505050565b9050610f4b81611282565b610f8d576040805162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b604482015290519081900360640190fd5b60005b86811015611017576000888883818110610fa657fe5b905060200201359050600081118015610fc157506105dc8111155b611004576040805162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b604482015290519081900360640190fd5b61100e8782611717565b50600101610f90565b5050505050505050565b6009546001600160a01b031690565b6009546000906001600160a01b0316611047611482565b6001600160a01b031614905090565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108395780601f1061080e57610100808354040283529160200191610839565b6110bf611030565b6110fe576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b6001600160a01b038116611159576040805162461bcd60e51b815260206004820152601e60248201527f4d696e7465723a207a65726f20616464726573732070726f76696465642e0000604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b611185611482565b6001600160a01b0316826001600160a01b031614156111eb576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006111f8611482565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561123c611482565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b6001600160a01b03166000908152600a602052604090205460ff1690565b6112b16112ab611482565b83611486565b6112ec5760405162461bcd60e51b815260040180806020018281038252603181526020018061221a6031913960400191505060405180910390fd5b6112f884848484611818565b50505050565b6060600b61130b8361186a565b60405160200180838054600181600116156101000203166002900480156113695780601f10611347576101008083540402835291820191611369565b820191906000526020600020905b815481529060010190602001808311611355575b505080662f7374616d702f60c81b81525060070182805190602001908083835b602083106113a85780518252601f199092019160209182019101611389565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61141a611030565b611459576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b61146281611966565b50565b6000908152600160205260409020546001600160a01b0316151590565b3390565b600061149182611465565b6114cc5760405162461bcd60e51b815260040180806020018281038252602c8152602001806120cd602c913960400191505060405180910390fd5b60006114d783610ca1565b9050806001600160a01b0316846001600160a01b031614806115125750836001600160a01b031661150784610844565b6001600160a01b0316145b80611522575061152281856113e4565b949350505050565b826001600160a01b031661153d82610ca1565b6001600160a01b0316146115825760405162461bcd60e51b81526004018080602001828103825260298152602001806121d06029913960400191505060405180910390fd5b6001600160a01b0382166115c75760405162461bcd60e51b81526004018080602001828103825260248152602001806120a96024913960400191505060405180910390fd5b6115d081611a07565b6001600160a01b03831660009081526003602052604090206115f190611a42565b6001600160a01b038216600090815260036020526040902061161290611a59565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b855181101561170c57600086828151811061168a57fe5b602002602001015190508083116116d15782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250611703565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b50600101611673565b509092149392505050565b6117218282611a62565b600c5461173590600163ffffffff611b9316565b600c555050565b5490565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b6000806000806117a085611bf4565b92509250925060018684848460405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611803573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b61182384848461152a565b61182f84848484611c6b565b6112f85760405162461bcd60e51b81526004018080602001828103825260328152602001806120516032913960400191505060405180910390fd5b60408051602080825281830190925260609182919060208201818038833901905050905060005b83156118d257600a840660300160f81b8282815181106118ad57fe5b60200101906001600160f81b031916908160001a905350600a84049350600101611891565b60408051828152601f19601f8401168101602001909152600019820191606091908015611906576020820181803883390190505b50905060005b815181101561195d5783516000198401938591811061192757fe5b602001015160f81c60f81b82828151811061193e57fe5b60200101906001600160f81b031916908160001a90535060010161190c565b50949350505050565b6001600160a01b0381166119ab5760405162461bcd60e51b81526004018080602001828103825260268152602001806120836026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546001600160a01b03161561146257600090815260026020526040902080546001600160a01b0319169055565b8054611a5590600163ffffffff611ea616565b9055565b80546001019055565b6001600160a01b038216611abd576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611ac681611465565b15611b18576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260039091529020611b5790611a59565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600082820183811015611bed576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008060008351604114611c4f576040805162461bcd60e51b815260206004820152601860248201527f496e76616c6964207369676e6174757265206c656e6774680000000000000000604482015290519081900360640190fd5b5050506020810151604082015160609092015160001a92909190565b6000611c7f846001600160a01b0316611ee8565b611c8b57506001611522565b600060606001600160a01b038616630a85bd0160e11b611ca9611482565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611d22578181015183820152602001611d0a565b50505050905090810190601f168015611d4f5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310611db75780518252601f199092019160209182019101611d98565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611e19576040519150601f19603f3d011682016040523d82523d6000602084013e611e1e565b606091505b509150915081611e6f57805115611e385780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806120516032913960400191505060405180910390fd5b6000818060200190516020811015611e8657600080fd5b50516001600160e01b031916630a85bd0160e11b14935061152292505050565b6000611bed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f21565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611522575050151592915050565b60008184841115611fb05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f75578181015183820152602001611f5d565b50505050905090810190601f168015611fa25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611ff957805160ff1916838001178555612026565b82800160010185558215612026579182015b8281111561202657825182559160200191906001019061200b565b50612032929150612036565b5090565b61084191905b80821115612032576000815560010161203c56fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a72315820c121e8b59712ca764475f90568a1379890d991f6eeccfbd65235b8cfb0d27f4564736f6c63430005110032000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a04de91dbd8a6198ae470d0009324b5b93c87fd3bf7293e44229a32d2bc36c34dc000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f61706976326b726970746f2e706f7374612e68722f7633000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063983b2d5611610097578063b88d4fde11610071578063b88d4fde14610659578063c87b56dd1461071d578063e985e9c51461073a578063f2fde38b146107685761018e565b8063983b2d56146105df578063a22cb46514610605578063aa271e1a146106335761018e565b806370a08231146104ce578063715018a6146104f4578063875b4f63146104fc5780638da5cb5b146105c75780638f32d59b146105cf57806395d89b41146105d75761018e565b80632d7eae661161014b57806342842e0e1161012557806342842e0e146103cf57806355f804b3146104055780636352211e146104a95780636c0360eb146104c65761018e565b80632d7eae66146103025780633092afd51461031f57806335b000a2146103455761018e565b806301ffc9a71461019357806306fdde03146101ce578063081812fc1461024b578063095ea7b31461028457806318160ddd146102b257806323b872dd146102cc575b600080fd5b6101ba600480360360208110156101a957600080fd5b50356001600160e01b03191661078e565b604080519115158252519081900360200190f35b6101d66107ad565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102105781810151838201526020016101f8565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102686004803603602081101561026157600080fd5b5035610844565b604080516001600160a01b039092168252519081900360200190f35b6102b06004803603604081101561029a57600080fd5b506001600160a01b0381351690602001356108a6565b005b6102ba6109ce565b60408051918252519081900360200190f35b6102b0600480360360608110156102e257600080fd5b506001600160a01b038135811691602081013590911690604001356109d4565b6102b06004803603602081101561031857600080fd5b5035610a30565b6102b06004803603602081101561033557600080fd5b50356001600160a01b0316610a7c565b6102ba6004803603608081101561035b57600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b81111561039157600080fd5b8201836020820111156103a357600080fd5b803590602001918460208302840111600160201b831117156103c457600080fd5b509092509050610b3f565b6102b0600480360360608110156103e557600080fd5b506001600160a01b03813581169160208101359091169060400135610c28565b6102b06004803603602081101561041b57600080fd5b810190602081018135600160201b81111561043557600080fd5b82018360208201111561044757600080fd5b803590602001918460018302840111600160201b8311171561046857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c43945050505050565b610268600480360360208110156104bf57600080fd5b5035610ca1565b6101d6610cfb565b6102ba600480360360208110156104e457600080fd5b50356001600160a01b0316610d5c565b6102b0610dc4565b6102b06004803603606081101561051257600080fd5b810190602081018135600160201b81111561052c57600080fd5b82018360208201111561053e57600080fd5b803590602001918460208302840111600160201b8311171561055f57600080fd5b919390926001600160a01b0383351692604081019060200135600160201b81111561058957600080fd5b82018360208201111561059b57600080fd5b803590602001918460018302840111600160201b831117156105bc57600080fd5b509092509050610e55565b610268611021565b6101ba611030565b6101d6611056565b6102b0600480360360208110156105f557600080fd5b50356001600160a01b03166110b7565b6102b06004803603604081101561061b57600080fd5b506001600160a01b038135169060200135151561117d565b6101ba6004803603602081101561064957600080fd5b50356001600160a01b0316611282565b6102b06004803603608081101561066f57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156106a957600080fd5b8201836020820111156106bb57600080fd5b803590602001918460018302840111600160201b831117156106dc57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506112a0945050505050565b6101d66004803603602081101561073357600080fd5b50356112fe565b6101ba6004803603604081101561075057600080fd5b506001600160a01b03813581169160200135166113e4565b6102b06004803603602081101561077e57600080fd5b50356001600160a01b0316611412565b6001600160e01b03191660009081526020819052604090205460ff1690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b505050505090505b90565b600061084f82611465565b61088a5760405162461bcd60e51b815260040180806020018281038252602c815260200180612184602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006108b182610ca1565b9050806001600160a01b0316836001600160a01b031614156109045760405162461bcd60e51b81526004018080602001828103825260218152602001806121f96021913960400191505060405180910390fd5b806001600160a01b0316610916611482565b6001600160a01b03161480610937575061093781610932611482565b6113e4565b6109725760405162461bcd60e51b81526004018080602001828103825260388152602001806120f96038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600c5490565b6109e56109df611482565b82611486565b610a205760405162461bcd60e51b815260040180806020018281038252603181526020018061221a6031913960400191505060405180910390fd5b610a2b83838361152a565b505050565b610a38611030565b610a77576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b600d55565b610a84611030565b610ac3576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b6001600160a01b038116610b1e576040805162461bcd60e51b815260206004820152601e60248201527f4d696e7465723a207a65726f20616464726573732070726f76696465642e0000604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19169055565b604080516020808201889052818301879052606086811b6bffffffffffffffffffffffff191690830152825180830360540181526074830180855281519183019190912091850280840160949081019095528582526000949293610bc293889288928392019084908082843760009201919091525050600d54915084905061166e565b610c13576040805162461bcd60e51b815260206004820181905260248201527f4d65726b6c652070726f6f6620766572696669636174696f6e206661696c6564604482015290519081900360640190fd5b610c1d8587611717565b509395945050505050565b610a2b838383604051806020016040528060008152506112a0565b610c4b611030565b610c8a576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b8051610c9d90600b906020840190611fb8565b5050565b6000818152600160205260408120546001600160a01b031680610cf55760405162461bcd60e51b815260040180806020018281038252602981526020018061215b6029913960400191505060405180910390fd5b92915050565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108395780601f1061080e57610100808354040283529160200191610839565b60006001600160a01b038216610da35760405162461bcd60e51b815260040180806020018281038252602a815260200180612131602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610cf59061173c565b610dcc611030565b610e0b576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6001600160a01b038316610ea2576040805162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015290519081900360640190fd5b6000610efc8686866040516020018084846020028082843780830192505050826001600160a01b03166001600160a01b031660601b8152601401935050505060405160208183030381529060405280519060200120611740565b90506000610f408285858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061179192505050565b9050610f4b81611282565b610f8d576040805162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b4b3b732b960911b604482015290519081900360640190fd5b60005b86811015611017576000888883818110610fa657fe5b905060200201359050600081118015610fc157506105dc8111155b611004576040805162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b604482015290519081900360640190fd5b61100e8782611717565b50600101610f90565b5050505050505050565b6009546001600160a01b031690565b6009546000906001600160a01b0316611047611482565b6001600160a01b031614905090565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108395780601f1061080e57610100808354040283529160200191610839565b6110bf611030565b6110fe576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b6001600160a01b038116611159576040805162461bcd60e51b815260206004820152601e60248201527f4d696e7465723a207a65726f20616464726573732070726f76696465642e0000604482015290519081900360640190fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b611185611482565b6001600160a01b0316826001600160a01b031614156111eb576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006111f8611482565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561123c611482565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b6001600160a01b03166000908152600a602052604090205460ff1690565b6112b16112ab611482565b83611486565b6112ec5760405162461bcd60e51b815260040180806020018281038252603181526020018061221a6031913960400191505060405180910390fd5b6112f884848484611818565b50505050565b6060600b61130b8361186a565b60405160200180838054600181600116156101000203166002900480156113695780601f10611347576101008083540402835291820191611369565b820191906000526020600020905b815481529060010190602001808311611355575b505080662f7374616d702f60c81b81525060070182805190602001908083835b602083106113a85780518252601f199092019160209182019101611389565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529050919050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61141a611030565b611459576040805162461bcd60e51b815260206004820181905260248201526000805160206121b0833981519152604482015290519081900360640190fd5b61146281611966565b50565b6000908152600160205260409020546001600160a01b0316151590565b3390565b600061149182611465565b6114cc5760405162461bcd60e51b815260040180806020018281038252602c8152602001806120cd602c913960400191505060405180910390fd5b60006114d783610ca1565b9050806001600160a01b0316846001600160a01b031614806115125750836001600160a01b031661150784610844565b6001600160a01b0316145b80611522575061152281856113e4565b949350505050565b826001600160a01b031661153d82610ca1565b6001600160a01b0316146115825760405162461bcd60e51b81526004018080602001828103825260298152602001806121d06029913960400191505060405180910390fd5b6001600160a01b0382166115c75760405162461bcd60e51b81526004018080602001828103825260248152602001806120a96024913960400191505060405180910390fd5b6115d081611a07565b6001600160a01b03831660009081526003602052604090206115f190611a42565b6001600160a01b038216600090815260036020526040902061161290611a59565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b855181101561170c57600086828151811061168a57fe5b602002602001015190508083116116d15782816040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209250611703565b808360405160200180838152602001828152602001925050506040516020818303038152906040528051906020012092505b50600101611673565b509092149392505050565b6117218282611a62565b600c5461173590600163ffffffff611b9316565b600c555050565b5490565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b6000806000806117a085611bf4565b92509250925060018684848460405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611803573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b61182384848461152a565b61182f84848484611c6b565b6112f85760405162461bcd60e51b81526004018080602001828103825260328152602001806120516032913960400191505060405180910390fd5b60408051602080825281830190925260609182919060208201818038833901905050905060005b83156118d257600a840660300160f81b8282815181106118ad57fe5b60200101906001600160f81b031916908160001a905350600a84049350600101611891565b60408051828152601f19601f8401168101602001909152600019820191606091908015611906576020820181803883390190505b50905060005b815181101561195d5783516000198401938591811061192757fe5b602001015160f81c60f81b82828151811061193e57fe5b60200101906001600160f81b031916908160001a90535060010161190c565b50949350505050565b6001600160a01b0381166119ab5760405162461bcd60e51b81526004018080602001828103825260268152602001806120836026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546001600160a01b03161561146257600090815260026020526040902080546001600160a01b0319169055565b8054611a5590600163ffffffff611ea616565b9055565b80546001019055565b6001600160a01b038216611abd576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611ac681611465565b15611b18576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260039091529020611b5790611a59565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600082820183811015611bed576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008060008351604114611c4f576040805162461bcd60e51b815260206004820152601860248201527f496e76616c6964207369676e6174757265206c656e6774680000000000000000604482015290519081900360640190fd5b5050506020810151604082015160609092015160001a92909190565b6000611c7f846001600160a01b0316611ee8565b611c8b57506001611522565b600060606001600160a01b038616630a85bd0160e11b611ca9611482565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611d22578181015183820152602001611d0a565b50505050905090810190601f168015611d4f5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b60208310611db75780518252601f199092019160209182019101611d98565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611e19576040519150601f19603f3d011682016040523d82523d6000602084013e611e1e565b606091505b509150915081611e6f57805115611e385780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806120516032913960400191505060405180910390fd5b6000818060200190516020811015611e8657600080fd5b50516001600160e01b031916630a85bd0160e11b14935061152292505050565b6000611bed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f21565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611522575050151592915050565b60008184841115611fb05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f75578181015183820152602001611f5d565b50505050905090810190601f168015611fa25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611ff957805160ff1916838001178555612026565b82800160010185558215612026579182015b8281111561202657825182559160200191906001019061200b565b50612032929150612036565b5090565b61084191905b80821115612032576000815560010161203c56fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a72315820c121e8b59712ca764475f90568a1379890d991f6eeccfbd65235b8cfb0d27f4564736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a04de91dbd8a6198ae470d0009324b5b93c87fd3bf7293e44229a32d2bc36c34dc000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f61706976326b726970746f2e706f7374612e68722f7633000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://apiv2kripto.posta.hr/v3
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 4de91dbd8a6198ae470d0009324b5b93c87fd3bf7293e44229a32d2bc36c34dc
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [4] : 68747470733a2f2f61706976326b726970746f2e706f7374612e68722f763300
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
299:3099:13:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;299:3099:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;915:133:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;915:133:3;-1:-1:-1;;;;;;915:133:3;;:::i;:::-;;;;;;;;;;;;;;;;;;1199:83:8;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1199:83:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4283:200:7;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4283:200:7;;:::i;:::-;;;;-1:-1:-1;;;;;4283:200:7;;;;;;;;;;;;;;3583:415;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3583:415:7;;;;;;;;:::i;:::-;;1057:89:13;;;:::i;:::-;;;;;;;;;;;;;;;;5929:287:7;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5929:287:7;;;;;;;;;;;;;;;;;:::i;1535:93:13:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1535:93:13;;:::i;370:172:14:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;370:172:14;-1:-1:-1;;;;;370:172:14;;:::i;1898:436:13:-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;1898:436:13;;;;;;;;-1:-1:-1;;;;;1898:436:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;1898:436:13;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1898:436:13;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;1898:436:13;;-1:-1:-1;1898:436:13;-1:-1:-1;1898:436:13;:::i;6865:132:7:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6865:132:7;;;;;;;;;;;;;;;;;:::i;1152:87:13:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1152:87:13;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;1152:87:13;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1152:87:13;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;1152:87:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;1152:87:13;;-1:-1:-1;1152:87:13;;-1:-1:-1;;;;;1152:87:13:i;2939:223:7:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2939:223:7;;:::i;3387:89:8:-;;;:::i;2513:207:7:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2513:207:7;-1:-1:-1;;;;;2513:207:7;;:::i;1684:137:6:-;;;:::i;2644:587:13:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2644:587:13;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;2644:587:13;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2644:587:13;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;2644:587:13;;;;-1:-1:-1;;;;;2644:587:13;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;2644:587:13;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2644:587:13;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;2644:587:13;;-1:-1:-1;2644:587:13;-1:-1:-1;2644:587:13;:::i;899:77:6:-;;;:::i;1250:92::-;;;:::i;1391:87:8:-;;;:::i;196:168:14:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;196:168:14;-1:-1:-1;;;;;196:168:14;;:::i;4776:249:7:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4776:249:7;;;;;;;;;;:::i;548:102:14:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;548:102:14;-1:-1:-1;;;;;548:102:14;;:::i;7720:269:7:-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;7720:269:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;7720:269:7;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;7720:269:7;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;7720:269:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;7720:269:7;;-1:-1:-1;7720:269:7;;-1:-1:-1;;;;;7720:269:7:i;3237:159:13:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3237:159:13;;:::i;5347:145:7:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5347:145:7;;;;;;;;;;:::i;1970:107:6:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1970:107:6;-1:-1:-1;;;;;1970:107:6;;:::i;915:133:3:-;-1:-1:-1;;;;;;1008:33:3;985:4;1008:33;;;;;;;;;;;;;;915:133::o;1199:83:8:-;1270:5;1263:12;;;;;;;;-1:-1:-1;;1263:12:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1238:13;;1263:12;;1270:5;;1263:12;;1270:5;1263:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1199:83;;:::o;4283:200:7:-;4342:7;4369:16;4377:7;4369;:16::i;:::-;4361:73;;;;-1:-1:-1;;;4361:73:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4452:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;4452:24:7;;4283:200::o;3583:415::-;3646:13;3662:16;3670:7;3662;:16::i;:::-;3646:32;;3702:5;-1:-1:-1;;;;;3696:11:7;:2;-1:-1:-1;;;;;3696:11:7;;;3688:57;;;;-1:-1:-1;;;3688:57:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3780:5;-1:-1:-1;;;;;3764:21:7;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3764:21:7;;:62;;;;3789:37;3806:5;3813:12;:10;:12::i;:::-;3789:16;:37::i;:::-;3756:152;;;;-1:-1:-1;;;3756:152:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3919:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;3919:29:7;-1:-1:-1;;;;;3919:29:7;;;;;;;;;3963:28;;3919:24;;3963:28;;;;;;;3583:415;;;:::o;1057:89:13:-;1127:12;;1057:89;:::o;5929:287:7:-;6071:41;6090:12;:10;:12::i;:::-;6104:7;6071:18;:41::i;:::-;6063:103;;;;-1:-1:-1;;;6063:103:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6177:32;6191:4;6197:2;6201:7;6177:13;:32::i;:::-;5929:287;;;:::o;1535:93:13:-;1103:9:6;:7;:9::i;:::-;1095:54;;;;;-1:-1:-1;;;1095:54:6;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1095:54:6;;;;;;;;;;;;;;;1601:9:13;:20;1535:93::o;370:172:14:-;1103:9:6;:7;:9::i;:::-;1095:54;;;;;-1:-1:-1;;;1095:54:6;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1095:54:6;;;;;;;;;;;;;;;-1:-1:-1;;;;;444:21:14;;436:64;;;;;-1:-1:-1;;;436:64:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;511:16:14;530:5;511:16;;;:7;:16;;;;;:24;;-1:-1:-1;;511:24:14;;;370:172::o;1898:436:13:-;2093:39;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2093:39:13;;;;;;;26:21:-1;;;22:32;;6:49;;2093:39:13;;;;;;2083:50;;;;;;;;;2164:48;;;;;;;;;;;;;;;;-1:-1:-1;;2083:50:13;;2164:48;;2183:11;;2164:48;;;;;;2183:11;;2164:48;2183:11;2164:48;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;;2196:9:13;;;-1:-1:-1;2207:4:13;;-1:-1:-1;2164:18:13;:48::i;:::-;2143:127;;;;;-1:-1:-1;;;2143:127:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2281:21;2287:5;2294:7;2281:5;:21::i;:::-;-1:-1:-1;2320:7:13;;1898:436;-1:-1:-1;;;;;1898:436:13:o;6865:132:7:-;6951:39;6968:4;6974:2;6978:7;6951:39;;;;;;;;;;;;:16;:39::i;1152:87:13:-;1103:9:6;:7;:9::i;:::-;1095:54;;;;;-1:-1:-1;;;1095:54:6;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1095:54:6;;;;;;;;;;;;;;;1218:14:13;;;;:8;;:14;;;;;:::i;:::-;;1152:87;:::o;2939:223:7:-;2994:7;3029:20;;;:11;:20;;;;;;-1:-1:-1;;;;;3029:20:7;3067:19;3059:73;;;;-1:-1:-1;;;3059:73:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3150:5;2939:223;-1:-1:-1;;2939:223:7:o;3387:89:8:-;3461:8;3454:15;;;;;;;;-1:-1:-1;;3454:15:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3429:13;;3454:15;;3461:8;;3454:15;;3461:8;3454:15;;;;;;;;;;;;;;;;;;;;;;;;2513:207:7;2568:7;-1:-1:-1;;;;;2595:19:7;;2587:74;;;;-1:-1:-1;;;2587:74:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2679:24:7;;;;;;:17;:24;;;;;:34;;:32;:34::i;1684:137:6:-;1103:9;:7;:9::i;:::-;1095:54;;;;;-1:-1:-1;;;1095:54:6;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1095:54:6;;;;;;;;;;;;;;;1766:6;;1745:40;;1782:1;;-1:-1:-1;;;;;1766:6:6;;1745:40;;1782:1;;1745:40;1795:6;:19;;-1:-1:-1;;;;;;1795:19:6;;;1684:137::o;2644:587:13:-;-1:-1:-1;;;;;2783:16:13;;2775:44;;;;;-1:-1:-1;;;2775:44:13;;;;;;;;;;;;-1:-1:-1;;;2775:44:13;;;;;;;;;;;;;;;2829:15;2847:51;2883:8;;2893:2;2866:30;;;;;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;2866:30:13;;;-1:-1:-1;;;;;2866:30:13;-1:-1:-1;;;;;2866:30:13;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;2866:30:13;;;2856:41;;;;;;2847:8;:51::i;:::-;2829:69;;2908:14;2925:33;2939:7;2948:9;;2925:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;2925:13:13;;-1:-1:-1;;;2925:33:13:i;:::-;2908:50;;2976:16;2985:6;2976:8;:16::i;:::-;2968:43;;;;;-1:-1:-1;;;2968:43:13;;;;;;;;;;;;-1:-1:-1;;;2968:43:13;;;;;;;;;;;;;;;3026:9;3021:204;3041:19;;;3021:204;;;3081:15;3099:8;;3108:1;3099:11;;;;;;;;;;;;;3081:29;;3142:1;3132:7;:11;:30;;;;;3158:4;3147:7;:15;;3132:30;3124:58;;;;;-1:-1:-1;;;3124:58:13;;;;;;;;;;;;-1:-1:-1;;;3124:58:13;;;;;;;;;;;;;;;3196:18;3202:2;3206:7;3196:5;:18::i;:::-;-1:-1:-1;3062:3:13;;3021:204;;;;2644:587;;;;;;;:::o;899:77:6:-;963:6;;-1:-1:-1;;;;;963:6:6;899:77;:::o;1250:92::-;1329:6;;1290:4;;-1:-1:-1;;;;;1329:6:6;1313:12;:10;:12::i;:::-;-1:-1:-1;;;;;1313:22:6;;1306:29;;1250:92;:::o;1391:87:8:-;1464:7;1457:14;;;;;;;;-1:-1:-1;;1457:14:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1432:13;;1457:14;;1464:7;;1457:14;;1464:7;1457:14;;;;;;;;;;;;;;;;;;;;;;;;196:168:14;1103:9:6;:7;:9::i;:::-;1095:54;;;;;-1:-1:-1;;;1095:54:6;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1095:54:6;;;;;;;;;;;;;;;-1:-1:-1;;;;;267:21:14;;259:64;;;;;-1:-1:-1;;;259:64:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;334:16:14;;;;;:7;:16;;;;;:23;;-1:-1:-1;;334:23:14;353:4;334:23;;;196:168::o;4776:249:7:-;4861:12;:10;:12::i;:::-;-1:-1:-1;;;;;4855:18:7;:2;-1:-1:-1;;;;;4855:18:7;;;4847:56;;;;;-1:-1:-1;;;4847:56:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;4953:8;4914:18;:32;4933:12;:10;:12::i;:::-;-1:-1:-1;;;;;4914:32:7;;;;;;;;;;;;;;;;;-1:-1:-1;4914:32:7;;;:36;;;;;;;;;;;;:47;;-1:-1:-1;;4914:47:7;;;;;;;;;;;4991:12;:10;:12::i;:::-;4976:42;;;;;;;;;;-1:-1:-1;;;;;4976:42:7;;;;;;;;;;;;;;4776:249;;:::o;548:102:14:-;-1:-1:-1;;;;;627:16:14;604:4;627:16;;;:7;:16;;;;;;;;;548:102::o;7720:269:7:-;7834:41;7853:12;:10;:12::i;:::-;7867:7;7834:18;:41::i;:::-;7826:103;;;;-1:-1:-1;;;7826:103:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7939:43;7957:4;7963:2;7967:7;7976:5;7939:17;:43::i;:::-;7720:269;;;;:::o;3237:159:13:-;3293:13;3349:8;3370:17;3379:7;3370:8;:17::i;:::-;3332:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3332:56:13;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;3332:56:13;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;3332:56:13;;;3318:71;;3237:159;;;:::o;5347:145:7:-;-1:-1:-1;;;;;5450:25:7;;;5427:4;5450:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;5347:145::o;1970:107:6:-;1103:9;:7;:9::i;:::-;1095:54;;;;;-1:-1:-1;;;1095:54:6;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1095:54:6;;;;;;;;;;;;;;;2042:28;2061:8;2042:18;:28::i;:::-;1970:107;:::o;9158:152:7:-;9215:4;9247:20;;;:11;:20;;;;;;-1:-1:-1;;;;;9247:20:7;9284:19;;;9158:152::o;788:96:0:-;867:10;788:96;:::o;9671:329:7:-;9756:4;9780:16;9788:7;9780;:16::i;:::-;9772:73;;;;-1:-1:-1;;;9772:73:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9855:13;9871:16;9879:7;9871;:16::i;:::-;9855:32;;9916:5;-1:-1:-1;;;;;9905:16:7;:7;-1:-1:-1;;;;;9905:16:7;;:51;;;;9949:7;-1:-1:-1;;;;;9925:31:7;:20;9937:7;9925:11;:20::i;:::-;-1:-1:-1;;;;;9925:31:7;;9905:51;:87;;;;9960:32;9977:5;9984:7;9960:16;:32::i;:::-;9897:96;9671:329;-1:-1:-1;;;;9671:329:7:o;13281:447::-;13394:4;-1:-1:-1;;;;;13374:24:7;:16;13382:7;13374;:16::i;:::-;-1:-1:-1;;;;;13374:24:7;;13366:78;;;;-1:-1:-1;;;13366:78:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13462:16:7;;13454:65;;;;-1:-1:-1;;;13454:65:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13530:23;13545:7;13530:14;:23::i;:::-;-1:-1:-1;;;;;13564:23:7;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;13609:21:7;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;13653:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;13653:25:7;-1:-1:-1;;;;;13653:25:7;;;;;;;;;13694:27;;13653:20;;13694:27;;;;;;;13281:447;;;:::o;464:779:1:-;555:4;594;555;609:515;633:5;:12;629:1;:16;609:515;;;666:20;689:5;695:1;689:8;;;;;;;;;;;;;;666:31;;732:12;716;:28;712:402;;884:12;898;867:44;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;867:44:1;;;857:55;;;;;;842:70;;712:402;;;1071:12;1085;1054:44;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;1054:44:1;;;1044:55;;;;;;1029:70;;712:402;-1:-1:-1;647:3:1;;609:515;;;-1:-1:-1;1216:20:1;;;;464:779;-1:-1:-1;;;464:779:1:o;1245:138:13:-;1308:24;1320:2;1324:7;1308:11;:24::i;:::-;1357:12;;:19;;1374:1;1357:19;:16;:19;:::i;:::-;1342:12;:34;-1:-1:-1;;1245:138:13:o;1065:112:2:-;1156:14;;1065:112::o;1674:199:15:-;1794:58;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;1794:58:15;;;;;;;1767:99;;;;;;1674:199::o;1369:233::-;1474:7;1498;1507:9;1518;1531:19;1546:3;1531:14;:19::i;:::-;1497:53;;;;;;1568:27;1578:7;1587:1;1590;1593;1568:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;1568:27:15;;-1:-1:-1;;1568:27:15;;;1369:233;-1:-1:-1;;;;;;;1369:233:15:o;8694:269:7:-;8803:32;8817:4;8823:2;8827:7;8803:13;:32::i;:::-;8853:48;8876:4;8882:2;8886:7;8895:5;8853:22;:48::i;:::-;8845:111;;;;-1:-1:-1;;;8845:111:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;323:441:15;424:13;;;434:2;424:13;;;;;;;;;379;;;;424;;;;21:6:-1;;104:10;424:13:15;87:34:-1;135:17;;-1:-1;;404:33:15;-1:-1:-1;447:9:15;466:120;478:9;;466:120;;540:2;532:5;:10;546:2;531:17;518:32;;508:4;513:1;508:7;;;;;;;;;;;:42;-1:-1:-1;;;;;508:42:15;;;;;;;;-1:-1:-1;573:2:15;564:11;;;-1:-1:-1;489:3:15;;466:120;;;616:14;;;;;;-1:-1:-1;;616:14:15;;;;;;;;;;;-1:-1:-1;;626:3:15;;;595:18;;616:14;;;;;;;;21:6:-1;;104:10;616:14:15;87:34:-1;135:17;;-1:-1;616:14:15;-1:-1:-1;595:35:15;-1:-1:-1;645:9:15;640:88;664:5;:12;660:1;:16;640:88;;;708:9;;-1:-1:-1;;713:3:15;;;708:4;;:9;;;;;;;;;;;;;;697:5;703:1;697:8;;;;;;;;;;;:20;-1:-1:-1;;;;;697:20:15;;;;;;;;-1:-1:-1;678:3:15;;640:88;;;-1:-1:-1;751:5:15;323:441;-1:-1:-1;;;;323:441:15:o;2178:225:6:-;-1:-1:-1;;;;;2251:22:6;;2243:73;;;;-1:-1:-1;;;2243:73:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2352:6;;2331:38;;-1:-1:-1;;;;;2331:38:6;;;;2352:6;;2331:38;;2352:6;;2331:38;2379:6;:17;;-1:-1:-1;;;;;;2379:17:6;-1:-1:-1;;;;;2379:17:6;;;;;;;;;;2178:225::o;15580:171:7:-;15679:1;15643:24;;;:15;:24;;;;;;-1:-1:-1;;;;;15643:24:7;:38;15639:106;;15732:1;15697:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;15697:37:7;;;15580:171::o;1367:108:2:-;1447:14;;:21;;1466:1;1447:21;:18;:21;:::i;:::-;1430:38;;1367:108::o;1183:178::-;1335:19;;1353:1;1335:19;;;1183:178::o;11714:327:7:-;-1:-1:-1;;;;;11785:16:7;;11777:61;;;;;-1:-1:-1;;;11777:61:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11857:16;11865:7;11857;:16::i;:::-;11856:17;11848:58;;;;;-1:-1:-1;;;11848:58:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;11917:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;11917:25:7;-1:-1:-1;;;;;11917:25:7;;;;;;;;11952:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;12001;;12026:7;;-1:-1:-1;;;;;12001:33:7;;;12018:1;;12001:33;;12018:1;;12001:33;11714:327;;:::o;834:176:5:-;892:7;923:5;;;946:6;;;;938:46;;;;;-1:-1:-1;;;938:46:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;1002:1;834:176;-1:-1:-1;;;834:176:5:o;797:566:15:-;899:7;920:9;943;985:3;:10;999:2;985:16;977:53;;;;;-1:-1:-1;;;977:53:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1140:2:15;1131:12;;1125:19;1209:2;1200:12;;1194:19;1315:2;1306:12;;;1300:19;1297:1;1292:28;;1125:19;;1194;797:566::o;14367:1051:7:-;14488:4;14513:15;:2;-1:-1:-1;;;;;14513:13:7;;:15::i;:::-;14508:58;;-1:-1:-1;14551:4:7;14544:11;;14508:58;14635:12;14649:23;-1:-1:-1;;;;;14676:7:7;;-1:-1:-1;;;14779:12:7;:10;:12::i;:::-;14805:4;14823:7;14844:5;14684:175;;;;;;-1:-1:-1;;;;;14684:175:7;-1:-1:-1;;;;;14684:175:7;;;;;;-1:-1:-1;;;;;14684:175:7;-1:-1:-1;;;;;14684:175:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14684:175:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14684:175:7;;;-1:-1:-1;;26:21;;;22:32;6:49;;14684:175:7;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;14684:175:7;;;179:29:-1;;;;160:49;;14676:184:7;;;14684:175;;14676:184;;-1:-1:-1;14676:184:7;;-1:-1:-1;25:18;-1:-1;14676:184:7;-1:-1:-1;14676:184:7;;-1:-1:-1;14676:184:7;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14676:184:7;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;14634:226:7;;;;14875:7;14870:542;;14902:17;;:21;14898:376;;15067:10;15061:17;15127:15;15114:10;15110:2;15106:19;15099:44;15016:145;15199:60;;-1:-1:-1;;;15199:60:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14870:542;15304:13;15331:10;15320:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15320:32:7;-1:-1:-1;;;;;;15374:26:7;-1:-1:-1;;;15374:26:7;;-1:-1:-1;15366:35:7;;-1:-1:-1;;;15366:35:7;1274:134:5;1332:7;1358:43;1362:1;1365;1358:43;;;;;;;;;;;;;;;;;:3;:43::i;686:610:12:-;746:4;1207:20;;1052:66;1246:23;;;;;;:42;;-1:-1:-1;;1273:15:12;;;1238:51;-1:-1:-1;;686:610:12:o;1732:187:5:-;1818:7;1853:12;1845:6;;;;1837:29;;;;-1:-1:-1;;;1837:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1837:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1888:5:5;;;1732:187::o;299:3099:13:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;299:3099:13;;;-1:-1:-1;299:3099:13;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://c121e8b59712ca764475f90568a1379890d991f6eeccfbd65235b8cfb0d27f45
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.