ERC-721
Overview
Max Total Supply
93 Magic Key
Holders
30
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Magic KeyLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DozerDollKeyV2
Compiler Version
v0.5.15+commit.6a57276f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-05-14 */ // File: @openzeppelin/contracts/GSN/Context.sol 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; } } // File: @openzeppelin/contracts/introspection/IERC165.sol 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.5.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol 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); } // File: @openzeppelin/contracts/math/SafeMath.sol 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; } } // File: @openzeppelin/contracts/utils/Address.sol 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"); } } // File: @openzeppelin/contracts/drafts/Counters.sol pragma solidity ^0.5.0; /** * @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); } } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity ^0.5.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.5.0; /** * @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); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity ^0.5.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Enumerable is IERC721 { function totalSupply() public view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId); function tokenByIndex(uint256 index) public view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/ERC721Enumerable.sol pragma solidity ^0.5.0; /** * @title ERC-721 Non-Fungible Token with optional enumeration extension logic * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Enumerable is Context, ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Constructor function. */ constructor () public { // register the supported interface to conform to ERC721Enumerable via ERC165 _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev Gets the token ID at a given index of the tokens list of the requested owner. * @param owner address owning the tokens list to be accessed * @param index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the tokens list owned by the requested address */ function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @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 _allTokens.length; } /** * @dev Gets the token ID at a given index of all the tokens in this contract * Reverts if the index is greater or equal to the total number of tokens. * @param index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens list */ function tokenByIndex(uint256 index) public view returns (uint256) { require(index < totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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 { super._transferFrom(from, to, tokenId); _removeTokenFromOwnerEnumeration(from, tokenId); _addTokenToOwnerEnumeration(to, tokenId); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to address the beneficiary that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { super._mint(to, tokenId); _addTokenToOwnerEnumeration(to, tokenId); _addTokenToAllTokensEnumeration(tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {ERC721-_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 { super._burn(owner, tokenId); _removeTokenFromOwnerEnumeration(owner, tokenId); // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund _ownedTokensIndex[tokenId] = 0; _removeTokenFromAllTokensEnumeration(tokenId); } /** * @dev Gets the list of token IDs of the requested owner. * @param owner address owning the tokens * @return uint256[] List of token IDs owned by the requested address */ function _tokensOfOwner(address owner) internal view returns (uint256[] storage) { return _ownedTokens[owner]; } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { _ownedTokensIndex[tokenId] = _ownedTokens[to].length; _ownedTokens[to].push(tokenId); } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _ownedTokens[from].length.sub(1); uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array _ownedTokens[from].length--; // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by // lastTokenId, or just over the end of the array if the token was the last one). } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length.sub(1); uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array _allTokens.length--; _allTokensIndex[tokenId] = 0; } } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol pragma solidity ^0.5.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721Metadata.sol pragma solidity ^0.5.0; 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]; } } } // File: @openzeppelin/contracts/token/ERC721/ERC721Full.sol pragma solidity ^0.5.0; /** * @title Full ERC721 Token * @dev This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology. * * See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata { constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) { // solhint-disable-previous-line no-empty-blocks } } // File: @openzeppelin/contracts/access/Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: @openzeppelin/contracts/access/roles/MinterRole.sol pragma solidity ^0.5.0; contract MinterRole is Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(_msgSender()); } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } // File: @openzeppelin/contracts/token/ERC721/ERC721Mintable.sol pragma solidity ^0.5.0; /** * @title ERC721Mintable * @dev ERC721 minting logic. */ contract ERC721Mintable is ERC721, MinterRole { /** * @dev Function to mint tokens. * @param to The address that will receive the minted token. * @param tokenId The token id to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address to, uint256 tokenId) public onlyMinter returns (bool) { _mint(to, tokenId); return true; } /** * @dev Function to safely mint tokens. * @param to The address that will receive the minted token. * @param tokenId The token id to mint. * @return A boolean that indicates if the operation was successful. */ function safeMint(address to, uint256 tokenId) public onlyMinter returns (bool) { _safeMint(to, tokenId); return true; } /** * @dev Function to safely mint tokens. * @param to The address that will receive the minted token. * @param tokenId The token id to mint. * @param _data bytes data to send along with a safe transfer check. * @return A boolean that indicates if the operation was successful. */ function safeMint(address to, uint256 tokenId, bytes memory _data) public onlyMinter returns (bool) { _safeMint(to, tokenId, _data); return true; } } // File: @openzeppelin/contracts/token/ERC721/ERC721MetadataMintable.sol pragma solidity ^0.5.0; /** * @title ERC721MetadataMintable * @dev ERC721 minting logic with metadata. */ contract ERC721MetadataMintable is ERC721, ERC721Metadata, MinterRole { /** * @dev Function to mint tokens. * @param to The address that will receive the minted tokens. * @param tokenId The token id to mint. * @param tokenURI The token URI of the minted token. * @return A boolean that indicates if the operation was successful. */ function mintWithTokenURI(address to, uint256 tokenId, string memory tokenURI) public onlyMinter returns (bool) { _mint(to, tokenId); _setTokenURI(tokenId, tokenURI); return true; } } // File: @openzeppelin/contracts/token/ERC721/ERC721Burnable.sol pragma solidity ^0.5.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ contract ERC721Burnable is Context, ERC721 { /** * @dev Burns a specific ERC721 token. * @param tokenId uint256 id of the ERC721 token to be burned. */ function burn(uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File: @openzeppelin/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @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; } } // File: contracts/keyV2/DozerDollKeyBaseV2.sol pragma solidity 0.5.15; contract DozerDollKeyBaseV2 is ERC721Full, ERC721Mintable, ERC721MetadataMintable, ERC721Burnable, Ownable { using SafeMath for uint256; uint256 internal itemsIndex; uint256 internal currentPrice; address payable ownerAddress; event EventWithdraw(address _to, uint256 _value); function mintUniqueTokenTo( address _to, uint256 _tokenId ) internal { _mint(_to, _tokenId); _setTokenURI(_tokenId, uint2str(_tokenId)); itemsIndex = itemsIndex.add(1); } function getCurrentPrice() public view onlyOwner returns (uint256) { return currentPrice; } function setCurrentPrice(uint256 _currentPrice) public onlyOwner{ require(_currentPrice > 0, 'wrong price'); currentPrice = _currentPrice; } function setBaseURI ( string memory _baseURI ) public onlyOwner { _setBaseURI(_baseURI); } function withdraw (uint256 _amount, address payable _account) public onlyOwner { require ( address(_account) != address(0) && address(_account) != address(this), 'wrong address'); require(_amount <= address(this).balance, 'wrong price'); _account.transfer(_amount); emit EventWithdraw(_account, _amount); } function uint2str ( uint _i ) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len - 1; while (_i != 0) { bstr[k--] = byte(uint8(48 + _i % 10)); _i /= 10; } return string(bstr); } } // File: contracts/keyV2/DozerDollKeyV2.sol pragma solidity 0.5.15; contract DozerDollKeyV2 is DozerDollKeyBaseV2 { using SafeMath for uint256; uint256 public prefix; event KeyMint(address _to, uint256 tokenId); event KeyExchange(address _to, uint256 tokenId); constructor ( string memory _name, string memory _symbol, string memory _baseURI, uint256 _currentPrice, uint256 _prefix ) ERC721Mintable() ERC721Full(_name, _symbol) public { ownerAddress = msg.sender; _setBaseURI(_baseURI); currentPrice = _currentPrice; prefix = _prefix; } function () external payable { require( address(msg.sender) != address(0) && address(msg.sender) != address(this), 'wrong address'); require( uint256(SafeMath.mod(uint256(msg.value), uint256(currentPrice))) == 0, 'wrong price'); uint256 amount = uint256(SafeMath.div(uint256(msg.value), uint256(currentPrice))); keyMint(msg.sender, amount); } function keyMint ( address _to, uint256 _amount ) private { uint256 tokenId = 0; for (uint256 i = 0; i < _amount; i++) { tokenId = prefix + itemsIndex; mintUniqueTokenTo(_to, tokenId); emit KeyMint(_to, tokenId); } } function keyMintMultiple ( address[] memory _to, uint256[] memory _amount ) public onlyOwner { for (uint256 i = 0 ; i < _to.length; i++) { keyMint(_to[i], _amount[i]); } } function keyExchange ( uint256 _tokenId ) public { burn(_tokenId); emit KeyExchange(msg.sender, _tokenId); } function keyExchangeMultiple ( uint256[] memory _tokenId ) public { for (uint i = 0; i < _tokenId.length; i++) { keyExchange(_tokenId[i]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"uint256","name":"_currentPrice","type":"uint256"},{"internalType":"uint256","name":"_prefix","type":"uint256"}],"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":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"EventWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"KeyExchange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"KeyMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":"tokenId","type":"uint256"}],"name":"burn","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":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":false,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"keyExchange","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"keyExchangeMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"keyMintMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintWithTokenURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"prefix","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_currentPrice","type":"uint256"}],"name":"setCurrentPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_account","type":"address"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200397138038062003971833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001bc57600080fd5b908301906020820185811115620001d257600080fd5b8251640100000000811182820188101715620001ed57600080fd5b82525081516020918201929091019080838360005b838110156200021c57818101518382015260200162000202565b50505050905090810190601f1680156200024a5780820380516001836020036101000a031916815260200191505b50604090815260208201519101519092509050848481816200027c6301ffc9a760e01b6001600160e01b03620003bc16565b620002976380ac58cd60e01b6001600160e01b03620003bc16565b620002b263780e9d6360e01b6001600160e01b03620003bc16565b8151620002c7906009906020850190620005a7565b508051620002dd90600a906020840190620005a7565b50620002f9635b5e139f60e01b6001600160e01b03620003bc16565b5050505062000320620003116200044160201b60201c565b6001600160e01b036200044616565b6000620003356001600160e01b036200044116565b600e80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601180546001600160a01b03191633179055620003a9836001600160e01b036200049816565b6010919091556012555062000649915050565b6001600160e01b031980821614156200041c576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b6200046181600d620004b160201b62002a9a1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b8051620004ad90600b906020840190620005a7565b5050565b620004c682826001600160e01b036200053e16565b1562000519576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620005875760405162461bcd60e51b81526004018080602001828103825260228152602001806200394f6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005ea57805160ff19168380011785556200061a565b828001600101855582156200061a579182015b828111156200061a578251825591602001919060010190620005fd565b50620006289291506200062c565b5090565b6200044391905b8082111562000628576000815560010162000633565b6132f680620006596000396000f3fe6080604052600436106102195760003560e01c8063715018a611610123578063a132ee20116100ab578063c87b56dd1161006f578063c87b56dd14610bab578063e985e9c514610bd5578063eb91d37e14610c10578063f2fde38b14610c25578063fc04601614610c5857610219565b8063a132ee2014610a09578063a144819414610a33578063a22cb46514610a6c578063aa271e1a14610aa7578063b88d4fde14610ada57610219565b80638da5cb5b116100f25780638da5cb5b146109825780638f32d59b1461099757806395d89b41146109ac578063983b2d56146109c157806398650275146109f457610219565b8063715018a6146107e457806375dadb32146107f95780638832e6e31461080e57806388bd6783146108d457610219565b806340c10f19116101a657806350bb4e7f1161017557806350bb4e7f146105fb57806355f804b3146106c15780636352211e146107725780636c0360eb1461079c57806370a08231146107b157610219565b806340c10f191461052b57806342842e0e1461056457806342966c68146105a75780634f6ccce7146105d157610219565b8063095ea7b3116101ed578063095ea7b31461042557806318160ddd1461045e57806318b200711461048557806323b872dd146104af5780632f745c59146104f257610219565b8062f714ce146102d257806301ffc9a71461030d57806306fdde0314610355578063081812fc146103df575b33158015906102285750333014155b610269576040805162461bcd60e51b815260206004820152600d60248201526c77726f6e67206164647265737360981b604482015290519081900360640190fd5b61027534601054610d88565b156102b5576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b604482015290519081900360640190fd5b60006102c334601054610dd1565b90506102cf3382610e13565b50005b3480156102de57600080fd5b5061030b600480360360408110156102f557600080fd5b50803590602001356001600160a01b0316610e84565b005b34801561031957600080fd5b506103416004803603602081101561033057600080fd5b50356001600160e01b031916610fef565b604080519115158252519081900360200190f35b34801561036157600080fd5b5061036a611012565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103a457818101518382015260200161038c565b50505050905090810190601f1680156103d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103eb57600080fd5b506104096004803603602081101561040257600080fd5b50356110a9565b604080516001600160a01b039092168252519081900360200190f35b34801561043157600080fd5b5061030b6004803603604081101561044857600080fd5b506001600160a01b03813516906020013561110b565b34801561046a57600080fd5b50610473611233565b60408051918252519081900360200190f35b34801561049157600080fd5b5061030b600480360360208110156104a857600080fd5b5035611239565b3480156104bb57600080fd5b5061030b600480360360608110156104d257600080fd5b506001600160a01b038135811691602081013590911690604001356112c8565b3480156104fe57600080fd5b506104736004803603604081101561051557600080fd5b506001600160a01b038135169060200135611324565b34801561053757600080fd5b506103416004803603604081101561054e57600080fd5b506001600160a01b0381351690602001356113a3565b34801561057057600080fd5b5061030b6004803603606081101561058757600080fd5b506001600160a01b03813581169160208101359091169060400135611403565b3480156105b357600080fd5b5061030b600480360360208110156105ca57600080fd5b503561141e565b3480156105dd57600080fd5b50610473600480360360208110156105f457600080fd5b5035611470565b34801561060757600080fd5b506103416004803603606081101561061e57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561064d57600080fd5b82018360208201111561065f57600080fd5b803590602001918460018302840111600160201b8311171561068057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114d6945050505050565b3480156106cd57600080fd5b5061030b600480360360208110156106e457600080fd5b810190602081018135600160201b8111156106fe57600080fd5b82018360208201111561071057600080fd5b803590602001918460018302840111600160201b8311171561073157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061153c945050505050565b34801561077e57600080fd5b506104096004803603602081101561079557600080fd5b503561158c565b3480156107a857600080fd5b5061036a6115e6565b3480156107bd57600080fd5b50610473600480360360208110156107d457600080fd5b50356001600160a01b0316611647565b3480156107f057600080fd5b5061030b6116af565b34801561080557600080fd5b50610473611740565b34801561081a57600080fd5b506103416004803603606081101561083157600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561086057600080fd5b82018360208201111561087257600080fd5b803590602001918460018302840111600160201b8311171561089357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611746945050505050565b3480156108e057600080fd5b5061030b600480360360208110156108f757600080fd5b810190602081018135600160201b81111561091157600080fd5b82018360208201111561092357600080fd5b803590602001918460208302840111600160201b8311171561094457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611799945050505050565b34801561098e57600080fd5b506104096117cd565b3480156109a357600080fd5b506103416117dc565b3480156109b857600080fd5b5061036a611802565b3480156109cd57600080fd5b5061030b600480360360208110156109e457600080fd5b50356001600160a01b0316611863565b348015610a0057600080fd5b5061030b6118b2565b348015610a1557600080fd5b5061030b60048036036020811015610a2c57600080fd5b50356118c4565b348015610a3f57600080fd5b5061034160048036036040811015610a5657600080fd5b506001600160a01b03813516906020013561190b565b348015610a7857600080fd5b5061030b60048036036040811015610a8f57600080fd5b506001600160a01b038135169060200135151561195d565b348015610ab357600080fd5b5061034160048036036020811015610aca57600080fd5b50356001600160a01b0316611a62565b348015610ae657600080fd5b5061030b60048036036080811015610afd57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610b3757600080fd5b820183602082011115610b4957600080fd5b803590602001918460018302840111600160201b83111715610b6a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611a75945050505050565b348015610bb757600080fd5b5061036a60048036036020811015610bce57600080fd5b5035611acd565b348015610be157600080fd5b5061034160048036036040811015610bf857600080fd5b506001600160a01b0381358116916020013516611c99565b348015610c1c57600080fd5b50610473611cc7565b348015610c3157600080fd5b5061030b60048036036020811015610c4857600080fd5b50356001600160a01b0316611d17565b348015610c6457600080fd5b5061030b60048036036040811015610c7b57600080fd5b810190602081018135600160201b811115610c9557600080fd5b820183602082011115610ca757600080fd5b803590602001918460208302840111600160201b83111715610cc857600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610d1757600080fd5b820183602082011115610d2957600080fd5b803590602001918460208302840111600160201b83111715610d4a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611d67945050505050565b6000610dca83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250611df2565b9392505050565b6000610dca83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e91565b6000805b82811015610e7e57600f54601254019150610e328483611ef6565b604080516001600160a01b03861681526020810184905281517fdb5bbe7d5fe103d36bd91dbd1b6f5614b95d7e953e64febc3839007b4ca6fbd6929181900390910190a1600101610e17565b50505050565b610e8c6117dc565b610ecb576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b6001600160a01b03811615801590610eec57506001600160a01b0381163014155b610f2d576040805162461bcd60e51b815260206004820152600d60248201526c77726f6e67206164647265737360981b604482015290519081900360640190fd5b47821115610f70576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b604482015290519081900360640190fd5b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610fa6573d6000803e3d6000fd5b50604080516001600160a01b03831681526020810184905281517f41caea7d684d5ba5fba1924d54c5169a147971fb5ffdde987624e8bbd450828b929181900390910190a15050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561109e5780601f106110735761010080835404028352916020019161109e565b820191906000526020600020905b81548152906001019060200180831161108157829003601f168201915b505050505090505b90565b60006110b482611f2d565b6110ef5760405162461bcd60e51b815260040180806020018281038252602c8152602001806130fd602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006111168261158c565b9050806001600160a01b0316836001600160a01b031614156111695760405162461bcd60e51b81526004018080602001828103825260218152602001806131ef6021913960400191505060405180910390fd5b806001600160a01b031661117b611f4a565b6001600160a01b0316148061119c575061119c81611197611f4a565b611c99565b6111d75760405162461bcd60e51b81526004018080602001828103825260388152602001806130216038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6112416117dc565b611280576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b600081116112c3576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b604482015290519081900360640190fd5b601055565b6112d96112d3611f4a565b82611f4e565b6113145760405162461bcd60e51b81526004018080602001828103825260318152602001806132106031913960400191505060405180910390fd5b61131f838383611ff2565b505050565b600061132f83611647565b821061136c5760405162461bcd60e51b815260040180806020018281038252602b815260200180612f4e602b913960400191505060405180910390fd5b6001600160a01b038316600090815260056020526040902080548390811061139057fe5b9060005260206000200154905092915050565b60006113b56113b0611f4a565b611a62565b6113f05760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b6113fa8383612011565b50600192915050565b61131f83838360405180602001604052806000815250611a75565b6114296112d3611f4a565b6114645760405162461bcd60e51b81526004018080602001828103825260308152602001806132926030913960400191505060405180910390fd5b61146d8161202e565b50565b600061147a611233565b82106114b75760405162461bcd60e51b815260040180806020018281038252602c815260200180613241602c913960400191505060405180910390fd5b600782815481106114c457fe5b90600052602060002001549050919050565b60006114e36113b0611f4a565b61151e5760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b6115288484612011565b6115328383612040565b5060019392505050565b6115446117dc565b611583576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b61146d816120a3565b6000818152600160205260408120546001600160a01b0316806115e05760405162461bcd60e51b81526004018080602001828103825260298152602001806130836029913960400191505060405180910390fd5b92915050565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561109e5780601f106110735761010080835404028352916020019161109e565b60006001600160a01b03821661168e5760405162461bcd60e51b815260040180806020018281038252602a815260200180613059602a913960400191505060405180910390fd5b6001600160a01b03821660009081526003602052604090206115e0906120b6565b6116b76117dc565b6116f6576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b600e546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600e80546001600160a01b0319169055565b60125481565b60006117536113b0611f4a565b61178e5760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b6115328484846120ba565b60005b81518110156117c9576117c18282815181106117b457fe5b60200260200101516118c4565b60010161179c565b5050565b600e546001600160a01b031690565b600e546000906001600160a01b03166117f3611f4a565b6001600160a01b031614905090565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561109e5780601f106110735761010080835404028352916020019161109e565b61186e6113b0611f4a565b6118a95760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b61146d8161210c565b6118c26118bd611f4a565b612154565b565b6118cd8161141e565b604080513381526020810183905281517f12d75b3abdeb8c09bfeeb464b11209530b5ed501308b141c4d3ec50255ef3daa929181900390910190a150565b60006119186113b0611f4a565b6119535760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b6113fa838361219c565b611965611f4a565b6001600160a01b0316826001600160a01b031614156119cb576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006119d8611f4a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611a1c611f4a565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b60006115e0600d8363ffffffff6121b616565b611a86611a80611f4a565b83611f4e565b611ac15760405162461bcd60e51b81526004018080602001828103825260318152602001806132106031913960400191505060405180910390fd5b610e7e8484848461221d565b6060611ad882611f2d565b611b135760405162461bcd60e51b815260040180806020018281038252602f8152602001806131c0602f913960400191505060405180910390fd5b6000828152600c602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611ba85780601f10611b7d57610100808354040283529160200191611ba8565b820191906000526020600020905b815481529060010190602001808311611b8b57829003601f168201915b50505050509050805160001415611bcf57505060408051602081019091526000815261100d565b600b816040516020018083805460018160011615610100020316600290048015611c305780601f10611c0e576101008083540402835291820191611c30565b820191906000526020600020905b815481529060010190602001808311611c1c575b5050825160208401908083835b60208310611c5c5780518252601f199092019160209182019101611c3d565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405291505061100d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6000611cd16117dc565b611d10576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b5060105490565b611d1f6117dc565b611d5e576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b61146d8161226f565b611d6f6117dc565b611dae576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b60005b825181101561131f57611dea838281518110611dc957fe5b6020026020010151838381518110611ddd57fe5b6020026020010151610e13565b600101611db1565b60008183611e7e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e43578181015183820152602001611e2b565b50505050905090810190601f168015611e705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50828481611e8857fe5b06949350505050565b60008183611ee05760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e43578181015183820152602001611e2b565b506000838581611eec57fe5b0495945050505050565b611f008282612011565b611f1281611f0d83612310565b612040565b600f54611f2690600163ffffffff6123d116565b600f555050565b6000908152600160205260409020546001600160a01b0316151590565b3390565b6000611f5982611f2d565b611f945760405162461bcd60e51b815260040180806020018281038252602c815260200180612ff5602c913960400191505060405180910390fd5b6000611f9f8361158c565b9050806001600160a01b0316846001600160a01b03161480611fda5750836001600160a01b0316611fcf846110a9565b6001600160a01b0316145b80611fea5750611fea8185611c99565b949350505050565b611ffd83838361242b565b612007838261256f565b61131f8282612664565b61201b82826126a2565b6120258282612664565b6117c9816127d3565b61146d61203a8261158c565b82612817565b61204982611f2d565b6120845760405162461bcd60e51b815260040180806020018281038252602c815260200180613129602c913960400191505060405180910390fd5b6000828152600c60209081526040909120825161131f92840190612e51565b80516117c990600b906020840190612e51565b5490565b6120c48383612011565b6120d1600084848461285f565b61131f5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f796032913960400191505060405180910390fd5b61211d600d8263ffffffff612a9a16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b612165600d8263ffffffff612b1b16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6117c98282604051806020016040528060008152506120ba565b60006001600160a01b0382166121fd5760405162461bcd60e51b81526004018080602001828103825260228152602001806131756022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b612228848484611ff2565b6122348484848461285f565b610e7e5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f796032913960400191505060405180910390fd5b6001600160a01b0381166122b45760405162461bcd60e51b8152600401808060200182810382526026815260200180612fab6026913960400191505060405180910390fd5b600e546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60608161233557506040805180820190915260018152600360fc1b602082015261100d565b8160005b811561234d57600101600a82049150612339565b6060816040519080825280601f01601f19166020018201604052801561237a576020820181803883390190505b50905060001982015b85156123c857600a860660300160f81b828280600190039350815181106123a657fe5b60200101906001600160f81b031916908160001a905350600a86049550612383565b50949350505050565b600082820183811015610dca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b826001600160a01b031661243e8261158c565b6001600160a01b0316146124835760405162461bcd60e51b81526004018080602001828103825260298152602001806131976029913960400191505060405180910390fd5b6001600160a01b0382166124c85760405162461bcd60e51b8152600401808060200182810382526024815260200180612fd16024913960400191505060405180910390fd5b6124d181612b82565b6001600160a01b03831660009081526003602052604090206124f290612bbd565b6001600160a01b038216600090815260036020526040902061251390612bd4565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461259990600163ffffffff612bdd16565b600083815260066020526040902054909150808214612634576001600160a01b03841660009081526005602052604081208054849081106125d657fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061261457fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b038416600090815260056020526040902080549061265d906000198301612ecf565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b0382166126fd576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61270681611f2d565b15612758576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061279790612bd4565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6128218282612c1f565b6000818152600c602052604090205460026000196101006001841615020190911604156117c9576000818152600c602052604081206117c991612ef3565b6000612873846001600160a01b0316612c4b565b61287f57506001611fea565b600060606001600160a01b038616630a85bd0160e11b61289d611f4a565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156129165781810151838201526020016128fe565b50505050905090810190601f1680156129435780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b602083106129ab5780518252601f19909201916020918201910161298c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612a0d576040519150601f19603f3d011682016040523d82523d6000602084013e612a12565b606091505b509150915081612a6357805115612a2c5780518082602001fd5b60405162461bcd60e51b8152600401808060200182810382526032815260200180612f796032913960400191505060405180910390fd5b6000818060200190516020811015612a7a57600080fd5b50516001600160e01b031916630a85bd0160e11b149350611fea92505050565b612aa482826121b6565b15612af6576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b612b2582826121b6565b612b605760405162461bcd60e51b81526004018080602001828103825260218152602001806130dc6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000818152600260205260409020546001600160a01b03161561146d57600090815260026020526040902080546001600160a01b0319169055565b8054612bd090600163ffffffff612bdd16565b9055565b80546001019055565b6000610dca83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612c84565b612c298282612cde565b612c33828261256f565b6000818152600660205260408120556117c981612db5565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611fea575050151592915050565b60008184841115612cd65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e43578181015183820152602001611e2b565b505050900390565b816001600160a01b0316612cf18261158c565b6001600160a01b031614612d365760405162461bcd60e51b815260040180806020018281038252602581526020018061326d6025913960400191505060405180910390fd5b612d3f81612b82565b6001600160a01b0382166000908152600360205260409020612d6090612bbd565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600754600090612dcc90600163ffffffff612bdd16565b60008381526008602052604081205460078054939450909284908110612dee57fe5b906000526020600020015490508060078381548110612e0957fe5b60009182526020808320909101929092558281526008909152604090208290556007805490612e3c906000198301612ecf565b50505060009182525060086020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612e9257805160ff1916838001178555612ebf565b82800160010185558215612ebf579182015b82811115612ebf578251825591602001919060010190612ea4565b50612ecb929150612f33565b5090565b81548183558181111561131f5760008381526020902061131f918101908301612f33565b50805460018160011615610100020316600290046000825580601f10612f19575061146d565b601f01602090049060005260206000209081019061146d91905b6110a691905b80821115612ecb5760008155600101612f3956fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a72315820bd953552f78a08ce9d668e3fe9e75f23bd76d49537141d370b217ef97b1bf47d64736f6c634300050f0032526f6c65733a206163636f756e7420697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000009446f7a6572446f6c6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d61676963204b65790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007168747470733a2f2f717473616a346a3962632e657865637574652d6170692e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f642f76342f67616d652f646f7a65722f70322f66616e63796b65792f6d6574612f76322f66616e63796b65794d616769632f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102195760003560e01c8063715018a611610123578063a132ee20116100ab578063c87b56dd1161006f578063c87b56dd14610bab578063e985e9c514610bd5578063eb91d37e14610c10578063f2fde38b14610c25578063fc04601614610c5857610219565b8063a132ee2014610a09578063a144819414610a33578063a22cb46514610a6c578063aa271e1a14610aa7578063b88d4fde14610ada57610219565b80638da5cb5b116100f25780638da5cb5b146109825780638f32d59b1461099757806395d89b41146109ac578063983b2d56146109c157806398650275146109f457610219565b8063715018a6146107e457806375dadb32146107f95780638832e6e31461080e57806388bd6783146108d457610219565b806340c10f19116101a657806350bb4e7f1161017557806350bb4e7f146105fb57806355f804b3146106c15780636352211e146107725780636c0360eb1461079c57806370a08231146107b157610219565b806340c10f191461052b57806342842e0e1461056457806342966c68146105a75780634f6ccce7146105d157610219565b8063095ea7b3116101ed578063095ea7b31461042557806318160ddd1461045e57806318b200711461048557806323b872dd146104af5780632f745c59146104f257610219565b8062f714ce146102d257806301ffc9a71461030d57806306fdde0314610355578063081812fc146103df575b33158015906102285750333014155b610269576040805162461bcd60e51b815260206004820152600d60248201526c77726f6e67206164647265737360981b604482015290519081900360640190fd5b61027534601054610d88565b156102b5576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b604482015290519081900360640190fd5b60006102c334601054610dd1565b90506102cf3382610e13565b50005b3480156102de57600080fd5b5061030b600480360360408110156102f557600080fd5b50803590602001356001600160a01b0316610e84565b005b34801561031957600080fd5b506103416004803603602081101561033057600080fd5b50356001600160e01b031916610fef565b604080519115158252519081900360200190f35b34801561036157600080fd5b5061036a611012565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103a457818101518382015260200161038c565b50505050905090810190601f1680156103d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103eb57600080fd5b506104096004803603602081101561040257600080fd5b50356110a9565b604080516001600160a01b039092168252519081900360200190f35b34801561043157600080fd5b5061030b6004803603604081101561044857600080fd5b506001600160a01b03813516906020013561110b565b34801561046a57600080fd5b50610473611233565b60408051918252519081900360200190f35b34801561049157600080fd5b5061030b600480360360208110156104a857600080fd5b5035611239565b3480156104bb57600080fd5b5061030b600480360360608110156104d257600080fd5b506001600160a01b038135811691602081013590911690604001356112c8565b3480156104fe57600080fd5b506104736004803603604081101561051557600080fd5b506001600160a01b038135169060200135611324565b34801561053757600080fd5b506103416004803603604081101561054e57600080fd5b506001600160a01b0381351690602001356113a3565b34801561057057600080fd5b5061030b6004803603606081101561058757600080fd5b506001600160a01b03813581169160208101359091169060400135611403565b3480156105b357600080fd5b5061030b600480360360208110156105ca57600080fd5b503561141e565b3480156105dd57600080fd5b50610473600480360360208110156105f457600080fd5b5035611470565b34801561060757600080fd5b506103416004803603606081101561061e57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561064d57600080fd5b82018360208201111561065f57600080fd5b803590602001918460018302840111600160201b8311171561068057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114d6945050505050565b3480156106cd57600080fd5b5061030b600480360360208110156106e457600080fd5b810190602081018135600160201b8111156106fe57600080fd5b82018360208201111561071057600080fd5b803590602001918460018302840111600160201b8311171561073157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061153c945050505050565b34801561077e57600080fd5b506104096004803603602081101561079557600080fd5b503561158c565b3480156107a857600080fd5b5061036a6115e6565b3480156107bd57600080fd5b50610473600480360360208110156107d457600080fd5b50356001600160a01b0316611647565b3480156107f057600080fd5b5061030b6116af565b34801561080557600080fd5b50610473611740565b34801561081a57600080fd5b506103416004803603606081101561083157600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561086057600080fd5b82018360208201111561087257600080fd5b803590602001918460018302840111600160201b8311171561089357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611746945050505050565b3480156108e057600080fd5b5061030b600480360360208110156108f757600080fd5b810190602081018135600160201b81111561091157600080fd5b82018360208201111561092357600080fd5b803590602001918460208302840111600160201b8311171561094457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611799945050505050565b34801561098e57600080fd5b506104096117cd565b3480156109a357600080fd5b506103416117dc565b3480156109b857600080fd5b5061036a611802565b3480156109cd57600080fd5b5061030b600480360360208110156109e457600080fd5b50356001600160a01b0316611863565b348015610a0057600080fd5b5061030b6118b2565b348015610a1557600080fd5b5061030b60048036036020811015610a2c57600080fd5b50356118c4565b348015610a3f57600080fd5b5061034160048036036040811015610a5657600080fd5b506001600160a01b03813516906020013561190b565b348015610a7857600080fd5b5061030b60048036036040811015610a8f57600080fd5b506001600160a01b038135169060200135151561195d565b348015610ab357600080fd5b5061034160048036036020811015610aca57600080fd5b50356001600160a01b0316611a62565b348015610ae657600080fd5b5061030b60048036036080811015610afd57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610b3757600080fd5b820183602082011115610b4957600080fd5b803590602001918460018302840111600160201b83111715610b6a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611a75945050505050565b348015610bb757600080fd5b5061036a60048036036020811015610bce57600080fd5b5035611acd565b348015610be157600080fd5b5061034160048036036040811015610bf857600080fd5b506001600160a01b0381358116916020013516611c99565b348015610c1c57600080fd5b50610473611cc7565b348015610c3157600080fd5b5061030b60048036036020811015610c4857600080fd5b50356001600160a01b0316611d17565b348015610c6457600080fd5b5061030b60048036036040811015610c7b57600080fd5b810190602081018135600160201b811115610c9557600080fd5b820183602082011115610ca757600080fd5b803590602001918460208302840111600160201b83111715610cc857600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610d1757600080fd5b820183602082011115610d2957600080fd5b803590602001918460208302840111600160201b83111715610d4a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611d67945050505050565b6000610dca83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250611df2565b9392505050565b6000610dca83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e91565b6000805b82811015610e7e57600f54601254019150610e328483611ef6565b604080516001600160a01b03861681526020810184905281517fdb5bbe7d5fe103d36bd91dbd1b6f5614b95d7e953e64febc3839007b4ca6fbd6929181900390910190a1600101610e17565b50505050565b610e8c6117dc565b610ecb576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b6001600160a01b03811615801590610eec57506001600160a01b0381163014155b610f2d576040805162461bcd60e51b815260206004820152600d60248201526c77726f6e67206164647265737360981b604482015290519081900360640190fd5b47821115610f70576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b604482015290519081900360640190fd5b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610fa6573d6000803e3d6000fd5b50604080516001600160a01b03831681526020810184905281517f41caea7d684d5ba5fba1924d54c5169a147971fb5ffdde987624e8bbd450828b929181900390910190a15050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561109e5780601f106110735761010080835404028352916020019161109e565b820191906000526020600020905b81548152906001019060200180831161108157829003601f168201915b505050505090505b90565b60006110b482611f2d565b6110ef5760405162461bcd60e51b815260040180806020018281038252602c8152602001806130fd602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006111168261158c565b9050806001600160a01b0316836001600160a01b031614156111695760405162461bcd60e51b81526004018080602001828103825260218152602001806131ef6021913960400191505060405180910390fd5b806001600160a01b031661117b611f4a565b6001600160a01b0316148061119c575061119c81611197611f4a565b611c99565b6111d75760405162461bcd60e51b81526004018080602001828103825260388152602001806130216038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6112416117dc565b611280576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b600081116112c3576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e6720707269636560a81b604482015290519081900360640190fd5b601055565b6112d96112d3611f4a565b82611f4e565b6113145760405162461bcd60e51b81526004018080602001828103825260318152602001806132106031913960400191505060405180910390fd5b61131f838383611ff2565b505050565b600061132f83611647565b821061136c5760405162461bcd60e51b815260040180806020018281038252602b815260200180612f4e602b913960400191505060405180910390fd5b6001600160a01b038316600090815260056020526040902080548390811061139057fe5b9060005260206000200154905092915050565b60006113b56113b0611f4a565b611a62565b6113f05760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b6113fa8383612011565b50600192915050565b61131f83838360405180602001604052806000815250611a75565b6114296112d3611f4a565b6114645760405162461bcd60e51b81526004018080602001828103825260308152602001806132926030913960400191505060405180910390fd5b61146d8161202e565b50565b600061147a611233565b82106114b75760405162461bcd60e51b815260040180806020018281038252602c815260200180613241602c913960400191505060405180910390fd5b600782815481106114c457fe5b90600052602060002001549050919050565b60006114e36113b0611f4a565b61151e5760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b6115288484612011565b6115328383612040565b5060019392505050565b6115446117dc565b611583576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b61146d816120a3565b6000818152600160205260408120546001600160a01b0316806115e05760405162461bcd60e51b81526004018080602001828103825260298152602001806130836029913960400191505060405180910390fd5b92915050565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561109e5780601f106110735761010080835404028352916020019161109e565b60006001600160a01b03821661168e5760405162461bcd60e51b815260040180806020018281038252602a815260200180613059602a913960400191505060405180910390fd5b6001600160a01b03821660009081526003602052604090206115e0906120b6565b6116b76117dc565b6116f6576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b600e546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600e80546001600160a01b0319169055565b60125481565b60006117536113b0611f4a565b61178e5760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b6115328484846120ba565b60005b81518110156117c9576117c18282815181106117b457fe5b60200260200101516118c4565b60010161179c565b5050565b600e546001600160a01b031690565b600e546000906001600160a01b03166117f3611f4a565b6001600160a01b031614905090565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561109e5780601f106110735761010080835404028352916020019161109e565b61186e6113b0611f4a565b6118a95760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b61146d8161210c565b6118c26118bd611f4a565b612154565b565b6118cd8161141e565b604080513381526020810183905281517f12d75b3abdeb8c09bfeeb464b11209530b5ed501308b141c4d3ec50255ef3daa929181900390910190a150565b60006119186113b0611f4a565b6119535760405162461bcd60e51b81526004018080602001828103825260308152602001806130ac6030913960400191505060405180910390fd5b6113fa838361219c565b611965611f4a565b6001600160a01b0316826001600160a01b031614156119cb576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006119d8611f4a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611a1c611f4a565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b60006115e0600d8363ffffffff6121b616565b611a86611a80611f4a565b83611f4e565b611ac15760405162461bcd60e51b81526004018080602001828103825260318152602001806132106031913960400191505060405180910390fd5b610e7e8484848461221d565b6060611ad882611f2d565b611b135760405162461bcd60e51b815260040180806020018281038252602f8152602001806131c0602f913960400191505060405180910390fd5b6000828152600c602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611ba85780601f10611b7d57610100808354040283529160200191611ba8565b820191906000526020600020905b815481529060010190602001808311611b8b57829003601f168201915b50505050509050805160001415611bcf57505060408051602081019091526000815261100d565b600b816040516020018083805460018160011615610100020316600290048015611c305780601f10611c0e576101008083540402835291820191611c30565b820191906000526020600020905b815481529060010190602001808311611c1c575b5050825160208401908083835b60208310611c5c5780518252601f199092019160209182019101611c3d565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405291505061100d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6000611cd16117dc565b611d10576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b5060105490565b611d1f6117dc565b611d5e576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b61146d8161226f565b611d6f6117dc565b611dae576040805162461bcd60e51b81526020600482018190526024820152600080516020613155833981519152604482015290519081900360640190fd5b60005b825181101561131f57611dea838281518110611dc957fe5b6020026020010151838381518110611ddd57fe5b6020026020010151610e13565b600101611db1565b60008183611e7e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e43578181015183820152602001611e2b565b50505050905090810190601f168015611e705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50828481611e8857fe5b06949350505050565b60008183611ee05760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e43578181015183820152602001611e2b565b506000838581611eec57fe5b0495945050505050565b611f008282612011565b611f1281611f0d83612310565b612040565b600f54611f2690600163ffffffff6123d116565b600f555050565b6000908152600160205260409020546001600160a01b0316151590565b3390565b6000611f5982611f2d565b611f945760405162461bcd60e51b815260040180806020018281038252602c815260200180612ff5602c913960400191505060405180910390fd5b6000611f9f8361158c565b9050806001600160a01b0316846001600160a01b03161480611fda5750836001600160a01b0316611fcf846110a9565b6001600160a01b0316145b80611fea5750611fea8185611c99565b949350505050565b611ffd83838361242b565b612007838261256f565b61131f8282612664565b61201b82826126a2565b6120258282612664565b6117c9816127d3565b61146d61203a8261158c565b82612817565b61204982611f2d565b6120845760405162461bcd60e51b815260040180806020018281038252602c815260200180613129602c913960400191505060405180910390fd5b6000828152600c60209081526040909120825161131f92840190612e51565b80516117c990600b906020840190612e51565b5490565b6120c48383612011565b6120d1600084848461285f565b61131f5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f796032913960400191505060405180910390fd5b61211d600d8263ffffffff612a9a16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b612165600d8263ffffffff612b1b16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6117c98282604051806020016040528060008152506120ba565b60006001600160a01b0382166121fd5760405162461bcd60e51b81526004018080602001828103825260228152602001806131756022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b612228848484611ff2565b6122348484848461285f565b610e7e5760405162461bcd60e51b8152600401808060200182810382526032815260200180612f796032913960400191505060405180910390fd5b6001600160a01b0381166122b45760405162461bcd60e51b8152600401808060200182810382526026815260200180612fab6026913960400191505060405180910390fd5b600e546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60608161233557506040805180820190915260018152600360fc1b602082015261100d565b8160005b811561234d57600101600a82049150612339565b6060816040519080825280601f01601f19166020018201604052801561237a576020820181803883390190505b50905060001982015b85156123c857600a860660300160f81b828280600190039350815181106123a657fe5b60200101906001600160f81b031916908160001a905350600a86049550612383565b50949350505050565b600082820183811015610dca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b826001600160a01b031661243e8261158c565b6001600160a01b0316146124835760405162461bcd60e51b81526004018080602001828103825260298152602001806131976029913960400191505060405180910390fd5b6001600160a01b0382166124c85760405162461bcd60e51b8152600401808060200182810382526024815260200180612fd16024913960400191505060405180910390fd5b6124d181612b82565b6001600160a01b03831660009081526003602052604090206124f290612bbd565b6001600160a01b038216600090815260036020526040902061251390612bd4565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461259990600163ffffffff612bdd16565b600083815260066020526040902054909150808214612634576001600160a01b03841660009081526005602052604081208054849081106125d657fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061261457fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b038416600090815260056020526040902080549061265d906000198301612ecf565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b0382166126fd576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61270681611f2d565b15612758576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061279790612bd4565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6128218282612c1f565b6000818152600c602052604090205460026000196101006001841615020190911604156117c9576000818152600c602052604081206117c991612ef3565b6000612873846001600160a01b0316612c4b565b61287f57506001611fea565b600060606001600160a01b038616630a85bd0160e11b61289d611f4a565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156129165781810151838201526020016128fe565b50505050905090810190601f1680156129435780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b602083106129ab5780518252601f19909201916020918201910161298c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612a0d576040519150601f19603f3d011682016040523d82523d6000602084013e612a12565b606091505b509150915081612a6357805115612a2c5780518082602001fd5b60405162461bcd60e51b8152600401808060200182810382526032815260200180612f796032913960400191505060405180910390fd5b6000818060200190516020811015612a7a57600080fd5b50516001600160e01b031916630a85bd0160e11b149350611fea92505050565b612aa482826121b6565b15612af6576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b612b2582826121b6565b612b605760405162461bcd60e51b81526004018080602001828103825260218152602001806130dc6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000818152600260205260409020546001600160a01b03161561146d57600090815260026020526040902080546001600160a01b0319169055565b8054612bd090600163ffffffff612bdd16565b9055565b80546001019055565b6000610dca83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612c84565b612c298282612cde565b612c33828261256f565b6000818152600660205260408120556117c981612db5565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611fea575050151592915050565b60008184841115612cd65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e43578181015183820152602001611e2b565b505050900390565b816001600160a01b0316612cf18261158c565b6001600160a01b031614612d365760405162461bcd60e51b815260040180806020018281038252602581526020018061326d6025913960400191505060405180910390fd5b612d3f81612b82565b6001600160a01b0382166000908152600360205260409020612d6090612bbd565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600754600090612dcc90600163ffffffff612bdd16565b60008381526008602052604081205460078054939450909284908110612dee57fe5b906000526020600020015490508060078381548110612e0957fe5b60009182526020808320909101929092558281526008909152604090208290556007805490612e3c906000198301612ecf565b50505060009182525060086020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612e9257805160ff1916838001178555612ebf565b82800160010185558215612ebf579182015b82811115612ebf578251825591602001919060010190612ea4565b50612ecb929150612f33565b5090565b81548183558181111561131f5760008381526020902061131f918101908301612f33565b50805460018160011615610100020316600290046000825580601f10612f19575061146d565b601f01602090049060005260206000209081019061146d91905b6110a691905b80821115612ecb5760008155600101612f3956fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a72315820bd953552f78a08ce9d668e3fe9e75f23bd76d49537141d370b217ef97b1bf47d64736f6c634300050f0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000009446f7a6572446f6c6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d61676963204b65790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007168747470733a2f2f717473616a346a3962632e657865637574652d6170692e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f642f76342f67616d652f646f7a65722f70322f66616e63796b65792f6d6574612f76322f66616e63796b65794d616769632f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): DozerDoll
Arg [1] : _symbol (string): Magic Key
Arg [2] : _baseURI (string): https://qtsaj4j9bc.execute-api.ap-southeast-1.amazonaws.com/prod/v4/game/dozer/p2/fancykey/meta/v2/fancykeyMagic/
Arg [3] : _currentPrice (uint256): 70000000000000000
Arg [4] : _prefix (uint256): 1000000000000000
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000000000000000000000000000000f8b0a10e470000
Arg [4] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 446f7a6572446f6c6c0000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 4d61676963204b65790000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000071
Arg [10] : 68747470733a2f2f717473616a346a3962632e657865637574652d6170692e61
Arg [11] : 702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f64
Arg [12] : 2f76342f67616d652f646f7a65722f70322f66616e63796b65792f6d6574612f
Arg [13] : 76322f66616e63796b65794d616769632f000000000000000000000000000000
Deployed Bytecode Sourcemap
57248:1868:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57910:10;57902:33;;;;:82;;-1:-1:-1;57956:10:0;57979:4;57948:36;;57902:82;57884:118;;;;;-1:-1:-1;;;57884:118:0;;;;;;;;;;;;-1:-1:-1;;;57884:118:0;;;;;;;;;;;;;;;58037:55;58058:9;58078:12;;58037;:55::i;:::-;58029:69;58011:103;;;;;-1:-1:-1;;;58011:103:0;;;;;;;;;;;;-1:-1:-1;;;58011:103:0;;;;;;;;;;;;;;;58125:14;58150:55;58171:9;58191:12;;58150;:55::i;:::-;58125:81;;58215:27;58223:10;58235:6;58215:7;:27::i;:::-;57846:404;57248:1868;56380:350;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56380:350:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56380:350:0;;;;;;-1:-1:-1;;;;;56380:350:0;;:::i;:::-;;16488:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16488:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16488:135:0;-1:-1:-1;;;;;;16488:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;44285:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44285:85:0;;;:::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;44285:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21450:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21450:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21450:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;21450:204:0;;;;;;;;;;;;;;20732:425;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20732:425:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20732:425:0;;;;;;;;:::i;35877:96::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35877:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;56105:153;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56105:153:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56105:153:0;;:::i;23133:292::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23133:292:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23133:292:0;;;;;;;;;;;;;;;;;:::i;35486:232::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35486:232:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35486:232:0;;;;;;;;:::i;50426:135::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50426:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50426:135:0;;;;;;;;:::i;24087:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24087:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24087:134:0;;;;;;;;;;;;;;;;;:::i;52652:237::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52652:237:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52652:237:0;;:::i;36319:199::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36319:199:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36319:199:0;;:::i;52043:213::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52043:213:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;52043:213:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;52043:213:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;52043:213:0;;;;;;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;52043:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52043:213:0;;-1:-1:-1;52043:213:0;;-1:-1:-1;;;;;52043:213:0:i;56266:106::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56266:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56266:106:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56266:106:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56266:106:0;;;;;;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;56266:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56266:106:0;;-1:-1:-1;56266:106:0;;-1:-1:-1;;;;;56266:106:0:i;20073:228::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20073:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20073:228:0;;:::i;46538:91::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46538:91:0;;;:::i;19636:211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19636:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19636:211:0;-1:-1:-1;;;;;19636:211:0;;:::i;54663:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54663:140:0;;;:::i;57336:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;57336:21:0;;;:::i;51290:170::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51290:170:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;51290:170:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;51290:170:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51290:170:0;;;;;;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;51290:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;51290:170:0;;-1:-1:-1;51290:170:0;;-1:-1:-1;;;;;51290:170:0:i;58931:182::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58931:182:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;58931:182:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;58931:182:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;58931:182:0;;;;;;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;58931:182:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;58931:182:0;;-1:-1:-1;58931:182:0;;-1:-1:-1;;;;;58931:182:0:i;53852:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53852:79:0;;;:::i;54218:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54218:94:0;;;:::i;44485:89::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44485:89:0;;;:::i;49512:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49512:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49512:92:0;-1:-1:-1;;;;;49512:92:0;;:::i;49612:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49612:79:0;;;:::i;58784:139::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58784:139:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;58784:139:0;;:::i;50817:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50817:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50817:143:0;;;;;;;;:::i;21955:254::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21955:254:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21955:254:0;;;;;;;;;;:::i;49395:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49395:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49395:109:0;-1:-1:-1;;;;;49395:109:0;;:::i;24958:272::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24958:272:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;24958:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;24958:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24958:272:0;;;;;;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;24958:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;24958:272:0;;-1:-1:-1;24958:272:0;;-1:-1:-1;;;;;24958:272:0:i;44887:557::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44887:557:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44887:557:0;;:::i;22539:147::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22539:147:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22539:147:0;;;;;;;;;;:::i;56002:99::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56002:99:0;;;:::i;54958:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54958:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54958:109:0;-1:-1:-1;;;;;54958:109:0;;:::i;58556:218::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58556:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;58556:218:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;58556:218:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;58556:218:0;;;;;;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;58556:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;58556:218:0;;;;;;;;-1:-1:-1;58556:218:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;58556:218:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;58556:218:0;;;;;;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;58556:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;58556:218:0;;-1:-1:-1;58556:218:0;;-1:-1:-1;;;;;58556:218:0:i;10060:130::-;10118:7;10145:37;10149:1;10152;10145:37;;;;;;;;;;;;;;;;;:3;:37::i;:::-;10138:44;10060:130;-1:-1:-1;;;10060:130:0:o;8596:132::-;8654:7;8681:39;8685:1;8688;8681:39;;;;;;;;;;;;;;;;;:3;:39::i;58260:288::-;58346:15;;58374:167;58398:7;58394:1;:11;58374:167;;;58442:10;;58433:6;;:19;58423:29;;58463:31;58481:3;58486:7;58463:17;:31::i;:::-;58510:21;;;-1:-1:-1;;;;;58510:21:0;;;;;;;;;;;;;;;;;;;;;;;58407:3;;58374:167;;;;58260:288;;;:::o;56380:350::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56488:31:0;;;;;;:76;;-1:-1:-1;;;;;;56530:34:0;;56559:4;56530:34;;56488:76;56471:111;;;;;-1:-1:-1;;;56471:111:0;;;;;;;;;;;;-1:-1:-1;;;56471:111:0;;;;;;;;;;;;;;;56608:21;56597:7;:32;;56589:56;;;;;-1:-1:-1;;;56589:56:0;;;;;;;;;;;;-1:-1:-1;;;56589:56:0;;;;;;;;;;;;;;;56654:26;;-1:-1:-1;;;;;56654:17:0;;;:26;;;;;56672:7;;56654:26;;;;56672:7;56654:17;:26;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;56692:32:0;;;-1:-1:-1;;;;;56692:32:0;;;;;;;;;;;;;;;;;;;;;;;56380:350;;:::o;16488:135::-;-1:-1:-1;;;;;;16582:33:0;;16558:4;16582:33;;;;;;;;;;;;;16488:135;;;;:::o;44285:85::-;44357:5;44350:12;;;;;;;;-1:-1:-1;;44350:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44324:13;;44350:12;;44357:5;;44350:12;;44357:5;44350:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44285:85;;:::o;21450:204::-;21509:7;21537:16;21545:7;21537;:16::i;:::-;21529:73;;;;-1:-1:-1;;;21529:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21622:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21622:24:0;;21450:204::o;20732:425::-;20796:13;20812:16;20820:7;20812;:16::i;:::-;20796:32;;20853:5;-1:-1:-1;;;;;20847:11:0;:2;-1:-1:-1;;;;;20847:11:0;;;20839:57;;;;-1:-1:-1;;;20839:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20933:5;-1:-1:-1;;;;;20917:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;20917:21:0;;:62;;;;20942:37;20959:5;20966:12;:10;:12::i;:::-;20942:16;:37::i;:::-;20909:154;;;;-1:-1:-1;;;20909:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21076:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21076:29:0;-1:-1:-1;;;;;21076:29:0;;;;;;;;;21121:28;;21076:24;;21121:28;;;;;;;20732:425;;;:::o;35877:96::-;35948:10;:17;35877:96;:::o;56105:153::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;56200:1;56184:13;:17;56176:41;;;;;-1:-1:-1;;;56176:41:0;;;;;;;;;;;;-1:-1:-1;;;56176:41:0;;;;;;;;;;;;;;;56224:12;:28;56105:153::o;23133:292::-;23277:41;23296:12;:10;:12::i;:::-;23310:7;23277:18;:41::i;:::-;23269:103;;;;-1:-1:-1;;;23269:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23385:32;23399:4;23405:2;23409:7;23385:13;:32::i;:::-;23133:292;;;:::o;35486:232::-;35566:7;35602:16;35612:5;35602:9;:16::i;:::-;35594:5;:24;35586:80;;;;-1:-1:-1;;;35586:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35684:19:0;;;;;;:12;:19;;;;;:26;;35704:5;;35684:26;;;;;;;;;;;;;;35677:33;;35486:232;;;;:::o;50426:135::-;50496:4;49292:22;49301:12;:10;:12::i;:::-;49292:8;:22::i;:::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50513:18;50519:2;50523:7;50513:5;:18::i;:::-;-1:-1:-1;50549:4:0;50426:135;;;;:::o;24087:134::-;24174:39;24191:4;24197:2;24201:7;24174:39;;;;;;;;;;;;:16;:39::i;52652:237::-;52762:41;52781:12;:10;:12::i;52762:41::-;52754:102;;;;-1:-1:-1;;;52754:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52867:14;52873:7;52867:5;:14::i;:::-;52652:237;:::o;36319:199::-;36377:7;36413:13;:11;:13::i;:::-;36405:5;:21;36397:78;;;;-1:-1:-1;;;36397:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36493:10;36504:5;36493:17;;;;;;;;;;;;;;;;36486:24;;36319:199;;;:::o;52043:213::-;52149:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52166:18;52172:2;52176:7;52166:5;:18::i;:::-;52195:31;52208:7;52217:8;52195:12;:31::i;:::-;-1:-1:-1;52244:4:0;52043:213;;;;;:::o;56266:106::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;56345:21;56357:8;56345:11;:21::i;20073:228::-;20128:7;20164:20;;;:11;:20;;;;;;-1:-1:-1;;;;;20164:20:0;20203:19;20195:73;;;;-1:-1:-1;;;20195:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20288:5;20073:228;-1:-1:-1;;20073:228:0:o;46538:91::-;46613:8;46606:15;;;;;;;;-1:-1:-1;;46606:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46580:13;;46606:15;;46613:8;;46606:15;;46613:8;46606:15;;;;;;;;;;;;;;;;;;;;;;;;19636:211;19691:7;-1:-1:-1;;;;;19719:19:0;;19711:74;;;;-1:-1:-1;;;19711:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19805:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;54663:140::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;54746:6;;54725:40;;54762:1;;-1:-1:-1;;;;;54746:6:0;;54725:40;;54762:1;;54725:40;54776:6;:19;;-1:-1:-1;;;;;;54776:19:0;;;54663:140::o;57336:21::-;;;;:::o;51290:170::-;51384:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51401:29;51411:2;51415:7;51424:5;51401:9;:29::i;58931:182::-;59023:6;59018:88;59039:8;:15;59035:1;:19;59018:88;;;59072:24;59084:8;59093:1;59084:11;;;;;;;;;;;;;;59072;:24::i;:::-;59056:3;;59018:88;;;;58931:182;:::o;53852:79::-;53917:6;;-1:-1:-1;;;;;53917:6:0;53852:79;:::o;54218:94::-;54298:6;;54258:4;;-1:-1:-1;;;;;54298:6:0;54282:12;:10;:12::i;:::-;-1:-1:-1;;;;;54282:22:0;;54275:29;;54218:94;:::o;44485:89::-;44559:7;44552:14;;;;;;;;-1:-1:-1;;44552:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44526:13;;44552:14;;44559:7;;44552:14;;44559:7;44552:14;;;;;;;;;;;;;;;;;;;;;;;;49512:92;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49577:19;49588:7;49577:10;:19::i;49612:79::-;49656:27;49670:12;:10;:12::i;:::-;49656:13;:27::i;:::-;49612:79::o;58784:139::-;58854:14;58859:8;58854:4;:14::i;:::-;58882:33;;;58894:10;58882:33;;;;;;;;;;;;;;;;;;;;;58784:139;:::o;50817:143::-;50891:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50908:22;50918:2;50922:7;50908:9;:22::i;21955:254::-;22041:12;:10;:12::i;:::-;-1:-1:-1;;;;;22035:18:0;:2;-1:-1:-1;;;;;22035:18:0;;;22027:56;;;;;-1:-1:-1;;;22027:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22135:8;22096:18;:32;22115:12;:10;:12::i;:::-;-1:-1:-1;;;;;22096:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22096:32:0;;;:36;;;;;;;;;;;;:47;;-1:-1:-1;;22096:47:0;;;;;;;;;;;22174:12;:10;:12::i;:::-;22159:42;;;;;;;;;;-1:-1:-1;;;;;22159:42:0;;;;;;;;;;;;;;21955:254;;:::o;49395:109::-;49451:4;49475:21;:8;49488:7;49475:21;:12;:21;:::i;24958:272::-;25073:41;25092:12;:10;:12::i;:::-;25106:7;25073:18;:41::i;:::-;25065:103;;;;-1:-1:-1;;;25065:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25179:43;25197:4;25203:2;25207:7;25216:5;25179:17;:43::i;44887:557::-;44945:13;44979:16;44987:7;44979;:16::i;:::-;44971:76;;;;-1:-1:-1;;;44971:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45086:19;;;;:10;:19;;;;;;;;;45060:45;;;;;;-1:-1:-1;;45060:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;45086:19;45060:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45222:9;45216:23;45243:1;45216:28;45212:225;;;-1:-1:-1;;45261:9:0;;;;;;;;;-1:-1:-1;45261:9:0;;;;45212:225;45404:8;45414:9;45387:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45387:37:0;;;;;;;;;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;;;45387:37:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;45387:37:0;;;45373:52;;;;;22539:147;-1:-1:-1;;;;;22643:25:0;;;22619:4;22643:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22539:147::o;56002:99::-;56060:7;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;-1:-1:-1;56083:12:0;;56002:99;:::o;54958:109::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;55031:28;55050:8;55031:18;:28::i;58556:218::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;54056:54:0;;;;;;;;;;;;;;;58682:9;58677:90;58702:3;:10;58698:1;:14;58677:90;;;58730:27;58738:3;58742:1;58738:6;;;;;;;;;;;;;;58746:7;58754:1;58746:10;;;;;;;;;;;;;;58730:7;:27::i;:::-;58714:3;;58677:90;;10709:166;10795:7;10831:12;10823:6;10815:29;;;;-1:-1:-1;;;10815:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;10815:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10866:1;10862;:5;;;;;;;10709:166;-1:-1:-1;;;;10709:166:0:o;9258:345::-;9344:7;9446:12;9439:5;9431:28;;;;-1:-1:-1;;;9431:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9431:28:0;;9470:9;9486:1;9482;:5;;;;;;;9258:345;-1:-1:-1;;;;;9258:345:0:o;55798:196::-;55882:20;55888:3;55893:8;55882:5;:20::i;:::-;55909:42;55922:8;55932:18;55941:8;55932;:18::i;:::-;55909:12;:42::i;:::-;55971:10;;:17;;55986:1;55971:17;:14;:17;:::i;:::-;55958:10;:30;-1:-1:-1;;55798:196:0:o;26423:155::-;26480:4;26513:20;;;:11;:20;;;;;;-1:-1:-1;;;;;26513:20:0;26551:19;;;26423:155::o;858:98::-;938:10;858:98;:::o;26948:333::-;27033:4;27058:16;27066:7;27058;:16::i;:::-;27050:73;;;;-1:-1:-1;;;27050:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27134:13;27150:16;27158:7;27150;:16::i;:::-;27134:32;;27196:5;-1:-1:-1;;;;;27185:16:0;:7;-1:-1:-1;;;;;27185:16:0;;:51;;;;27229:7;-1:-1:-1;;;;;27205:31:0;:20;27217:7;27205:11;:20::i;:::-;-1:-1:-1;;;;;27205:31:0;;27185:51;:87;;;;27240:32;27257:5;27264:7;27240:16;:32::i;:::-;27177:96;26948:333;-1:-1:-1;;;;26948:333:0:o;36902:245::-;36988:38;37008:4;37014:2;37018:7;36988:19;:38::i;:::-;37039:47;37072:4;37078:7;37039:32;:47::i;:::-;37099:40;37127:2;37131:7;37099:27;:40::i;37412:202::-;37476:24;37488:2;37492:7;37476:11;:24::i;:::-;37513:40;37541:2;37545:7;37513:27;:40::i;:::-;37566;37598:7;37566:31;:40::i;30166:92::-;30218:32;30224:16;30232:7;30224;:16::i;:::-;30242:7;30218:5;:32::i;45779:207::-;45871:16;45879:7;45871;:16::i;:::-;45863:73;;;;-1:-1:-1;;;45863:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45947:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;46207:90::-;46271:18;;;;:8;;:18;;;;;:::i;15077:114::-;15169:14;;15077:114::o;28538:242::-;28626:18;28632:2;28636:7;28626:5;:18::i;:::-;28663:54;28694:1;28698:2;28702:7;28711:5;28663:22;:54::i;:::-;28655:117;;;;-1:-1:-1;;;28655:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49699:122;49756:21;:8;49769:7;49756:21;:12;:21;:::i;:::-;49793:20;;-1:-1:-1;;;;;49793:20:0;;;;;;;;49699:122;:::o;49829:130::-;49889:24;:8;49905:7;49889:24;:15;:24;:::i;:::-;49929:22;;-1:-1:-1;;;;;49929:22:0;;;;;;;;49829:130;:::o;27822:102::-;27890:26;27900:2;27904:7;27890:26;;;;;;;;;;;;:9;:26::i;48660:203::-;48732:4;-1:-1:-1;;;;;48757:21:0;;48749:68;;;;-1:-1:-1;;;48749:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48835:20:0;:11;:20;;;;;;;;;;;;;;;48660:203::o;25949:272::-;26059:32;26073:4;26079:2;26083:7;26059:13;:32::i;:::-;26110:48;26133:4;26139:2;26143:7;26152:5;26110:22;:48::i;:::-;26102:111;;;;-1:-1:-1;;;26102:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55173:229;-1:-1:-1;;;;;55247:22:0;;55239:73;;;;-1:-1:-1;;;55239:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55349:6;;55328:38;;-1:-1:-1;;;;;55328:38:0;;;;55349:6;;55328:38;;55349:6;;55328:38;55377:6;:17;;-1:-1:-1;;;;;;55377:17:0;-1:-1:-1;;;;;55377:17:0;;;;;;;;;;55173:229::o;56738:427::-;56799:27;56839:7;56835:42;;-1:-1:-1;56859:10:0;;;;;;;;;;;;-1:-1:-1;;;56859:10:0;;;;;;56835:42;56892:2;56883:6;56916:57;56923:6;;56916:57;;56942:5;;56963:2;56958:7;;;;56916:57;;;56979:17;57009:3;56999:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;56999:14:0;87:34:-1;135:17;;-1:-1;56999:14:0;-1:-1:-1;56979:34:0;-1:-1:-1;;;57029:7:0;;57043:91;57050:7;;57043:91;;57103:2;57098;:7;57093:2;:12;57082:25;;57070:4;57075:3;;;;;;;57070:9;;;;;;;;;;;:37;-1:-1:-1;;;;;57070:37:0;;;;;;;;-1:-1:-1;57124:2:0;57118:8;;;;57043:91;;;-1:-1:-1;57154:4:0;56738:427;-1:-1:-1;;;;56738:427:0:o;6285:181::-;6343:7;6375:5;;;6399:6;;;;6391:46;;;;;-1:-1:-1;;;6391:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;30644:459;30758:4;-1:-1:-1;;;;;30738:24:0;:16;30746:7;30738;:16::i;:::-;-1:-1:-1;;;;;30738:24:0;;30730:78;;;;-1:-1:-1;;;30730:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30827:16:0;;30819:65;;;;-1:-1:-1;;;30819:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30897:23;30912:7;30897:14;:23::i;:::-;-1:-1:-1;;;;;30933:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;30979:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;31025:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;31025:25:0;-1:-1:-1;;;;;31025:25:0;;;;;;;;;31068:27;;31025:20;;31068:27;;;;;;;30644:459;;;:::o;40087:1148::-;-1:-1:-1;;;;;40378:18:0;;40353:22;40378:18;;;:12;:18;;;;;:25;:32;;40408:1;40378:32;:29;:32;:::i;:::-;40421:18;40442:26;;;:17;:26;;;;;;40353:57;;-1:-1:-1;40575:28:0;;;40571:328;;-1:-1:-1;;;;;40642:18:0;;40620:19;40642:18;;;:12;:18;;;;;:34;;40661:14;;40642:34;;;;;;;;;;;;;;40620:56;;40726:11;40693:12;:18;40706:4;-1:-1:-1;;;;;40693:18:0;-1:-1:-1;;;;;40693:18:0;;;;;;;;;;;;40712:10;40693:30;;;;;;;;;;;;;;;;;;;:44;;;;40810:30;;;:17;:30;;;;;:43;;;40571:328;-1:-1:-1;;;;;40988:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;40988:27:0;;;:::i;:::-;;40087:1148;;;;:::o;38909:186::-;-1:-1:-1;;;;;39023:16:0;;;;;;;:12;:16;;;;;;;;:23;;38994:26;;;:17;:26;;;;;:52;;;39057:16;;;39:1:-1;23:18;;45:23;;39057:30:0;;;;;;;;38909:186::o;29033:335::-;-1:-1:-1;;;;;29105:16:0;;29097:61;;;;;-1:-1:-1;;;29097:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29178:16;29186:7;29178;:16::i;:::-;29177:17;29169:58;;;;;-1:-1:-1;;;29169:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29240:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;29240:25:0;-1:-1:-1;;;;;29240:25:0;;;;;;;;29276:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;29327;;29352:7;;-1:-1:-1;;;;;29327:33:0;;;29344:1;;29327:33;;29344:1;;29327:33;29033:335;;:::o;39296:164::-;39400:10;:17;;39373:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;39428:24:0;;;;;;;39296:164::o;46931:247::-;46998:27;47010:5;47017:7;46998:11;:27::i;:::-;47084:19;;;;:10;:19;;;;;47078:33;;-1:-1:-1;;47078:33:0;;;;;;;;;;;:38;47074:97;;47140:19;;;;:10;:19;;;;;47133:26;;;:::i;31755:1079::-;31877:4;31904:15;:2;-1:-1:-1;;;;;31904:13:0;;:15::i;:::-;31899:60;;-1:-1:-1;31943:4:0;31936:11;;31899:60;32030:12;32044:23;-1:-1:-1;;;;;32071:7:0;;-1:-1:-1;;;32176:12:0;:10;:12::i;:::-;32203:4;32222:7;32244:5;32079:181;;;;;;-1:-1:-1;;;;;32079:181:0;-1:-1:-1;;;;;32079:181:0;;;;;;-1:-1:-1;;;;;32079:181:0;-1:-1:-1;;;;;32079:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;32079:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32079:181:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;32079:181:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;32079:181:0;;;179:29:-1;;;;160:49;;32071:190:0;;;32079:181;;32071:190;;-1:-1:-1;32071:190:0;;-1:-1:-1;25:18;-1:-1;32071:190:0;-1:-1:-1;32071:190:0;;-1:-1:-1;32071:190:0;;-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;;;32071:190:0;;;;;;;;;;;;;;;;;;;;;;;;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;;32029:232:0;;;;32277:7;32272:555;;32305:17;;:21;32301:384;;32473:10;32467:17;32534:15;32521:10;32517:2;32513:19;32506:44;32421:148;32609:60;;-1:-1:-1;;;32609:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32272:555;32717:13;32744:10;32733:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32733:32:0;-1:-1:-1;;;;;;32788:26:0;-1:-1:-1;;;32788:26:0;;-1:-1:-1;32780:35:0;;-1:-1:-1;;;32780:35:0;48124:178;48202:18;48206:4;48212:7;48202:3;:18::i;:::-;48201:19;48193:63;;;;;-1:-1:-1;;;48193:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48267:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;48267:27:0;48290:4;48267:27;;;48124:178::o;48382:183::-;48462:18;48466:4;48472:7;48462:3;:18::i;:::-;48454:64;;;;-1:-1:-1;;;48454:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48529:20:0;48552:5;48529:20;;;;;;;;;;;:28;;-1:-1:-1;;48529:28:0;;;48382:183::o;33002:175::-;33102:1;33066:24;;;:15;:24;;;;;;-1:-1:-1;;;;;33066:24:0;:38;33062:108;;33156:1;33121:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;33121:37:0;;;33002:175::o;15388:110::-;15469:14;;:21;;15488:1;15469:21;:18;:21;:::i;:::-;15452:38;;15388:110::o;15199:181::-;15353:19;;15371:1;15353:19;;;15199:181::o;6741:136::-;6799:7;6826:43;6830:1;6833;6826:43;;;;;;;;;;;;;;;;;:3;:43::i;37898:372::-;37965:27;37977:5;37984:7;37965:11;:27::i;:::-;38005:48;38038:5;38045:7;38005:32;:48::i;:::-;38203:1;38174:26;;;:17;:26;;;;;:30;38217:45;38192:7;38217:36;:45::i;11645:619::-;11705:4;12173:20;;12016:66;12213:23;;;;;;:42;;-1:-1:-1;;12240:15:0;;;12205:51;-1:-1:-1;;11645:619:0:o;7214:192::-;7300:7;7336:12;7328:6;;;;7320:29;;;;-1:-1:-1;;;7320:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;7320:29:0;-1:-1:-1;;;7372:5:0;;;7214:192::o;29645:333::-;29740:5;-1:-1:-1;;;;;29720:25:0;:16;29728:7;29720;:16::i;:::-;-1:-1:-1;;;;;29720:25:0;;29712:75;;;;-1:-1:-1;;;29712:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29800:23;29815:7;29800:14;:23::i;:::-;-1:-1:-1;;;;;29836:24:0;;;;;;:17;:24;;;;;:36;;:34;:36::i;:::-;29914:1;29883:20;;;:11;:20;;;;;;:33;;-1:-1:-1;;;;;;29883:33:0;;;29934:36;29895:7;;29914:1;-1:-1:-1;;;;;29934:36:0;;;;;29914:1;;29934:36;29645:333;;:::o;41530:1082::-;41808:10;:17;41783:22;;41808:24;;41830:1;41808:24;:21;:24;:::i;:::-;41843:18;41864:24;;;:15;:24;;;;;;42237:10;:26;;41783:49;;-1:-1:-1;41864:24:0;;41783:49;;42237:26;;;;;;;;;;;;;;42215:48;;42301:11;42276:10;42287;42276:22;;;;;;;;;;;;;;;;;;;:36;;;;42381:28;;;:15;:28;;;;;;:41;;;42546:10;:19;;;;;-1:-1:-1;;42546:19:0;;;:::i;:::-;-1:-1:-1;;;42603:1:0;42576:24;;;-1:-1:-1;42576:15:0;:24;;;;;:28;41530:1082::o;57248:1868::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57248:1868:0;;;-1:-1:-1;57248:1868:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://bd953552f78a08ce9d668e3fe9e75f23bd76d49537141d370b217ef97b1bf47d
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.