ERC-721
Overview
Max Total Supply
380 EA
Holders
259
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 EALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EthernalArt
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-05-06 */ // Ethernal Art // File: openzeppelin-solidity/contracts/introspection/IERC165.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC165 standard, as defined in the * [EIP](https://eips.ethereum.org/EIPS/eip-165). * * 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 * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * 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-solidity/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 `setApproveForAll`. */ 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 `setApproveForAll`. */ 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-solidity/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 `safeTransfer`. 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-solidity/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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: openzeppelin-solidity/contracts/utils/Address.sol pragma solidity ^0.5.0; /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * > It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } // File: openzeppelin-solidity/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 { counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File: openzeppelin-solidity/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-solidity/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 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)')) == 0xe985e9c * 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(msg.sender == owner || isApprovedForAll(owner, msg.sender), "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 != msg.sender, "ERC721: approve to caller"); _operatorApprovals[msg.sender][to] = approved; emit ApprovalForAll(msg.sender, 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(msg.sender, 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 `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 `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) public { 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 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(uint256) 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 `onERC721Received` on a target address. * The call is not executed if the target address is not a contract. * * This function 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; } bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data); 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-solidity/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-solidity/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 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 _burn(uint256) 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-solidity/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-solidity/contracts/token/ERC721/ERC721Metadata.sol pragma solidity ^0.5.0; contract ERC721Metadata is ERC165, ERC721, IERC721Metadata { // Token name string private _name; // Token symbol string private _symbol; // 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 an URI for a given token ID. * Throws if the token ID does not exist. May return an empty string. * @param tokenId uint256 ID of the token to query */ function tokenURI(uint256 tokenId) external view returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return _tokenURIs[tokenId]; } /** * @dev Internal function to set the token URI for a given token. * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to set its URI * @param uri string URI to assign */ function _setTokenURI(uint256 tokenId, string memory uri) internal { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = uri; } /** * @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-solidity/contracts/token/ERC721/ERC721Full.sol pragma solidity ^0.5.0; /** * @title Full ERC721 Token * This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology * @dev 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-solidity/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 aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @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 msg.sender == _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/Strings.sol pragma solidity ^0.5.0; library Strings { // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint k = 0; for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i]; return string(babcde); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) { return strConcat(_a, _b, _c, _d, ""); } function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b) internal pure returns (string memory) { return strConcat(_a, _b, "", "", ""); } 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); } function equals(string memory a, string memory b) internal pure returns (bool) { return keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b))); } } // File: contracts/TradeableERC721Token.sol pragma solidity ^0.5.0; contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title TradeableERC721Token * TradeableERC721Token - ERC721 contract that whitelists a trading address, and has minting functionality. */ contract TradeableERC721Token is ERC721Full, Ownable { using Strings for string; address proxyRegistryAddress; uint256 private _currentTokenId = 0; constructor(string memory _name, string memory _symbol, address _proxyRegistryAddress) ERC721Full(_name, _symbol) public { proxyRegistryAddress = _proxyRegistryAddress; } /** * @dev Mints a token to an address with a tokenURI. * @param _to address of the future owner of the token */ function mintTo(address _to) internal returns (uint256) { uint256 newTokenId = _getNextTokenId(); _mint(_to, newTokenId); _incrementTokenId(); return newTokenId; } /** * @dev calculates the next token ID based on value of _currentTokenId * @return uint256 for the next token ID */ function _getNextTokenId() private view returns (uint256) { return _currentTokenId.add(1); } /** * @dev increments the value of _currentTokenId */ function _incrementTokenId() private { _currentTokenId++; } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll( address owner, address operator ) public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } } // File: contracts/EthernalArt.sol pragma solidity ^0.5.0; /** * @title EthernalArt */ contract EthernalArt is TradeableERC721Token { using Strings for string; struct Edition { uint16 size; string metadata; } struct Print { uint16 number; uint16 edition; } mapping(uint256 => Print) public prints; mapping(uint16 => Edition) public editions; uint16 public lastEdition = 0; event Printed(uint16 indexed edition, uint16 size, string metadata); constructor(address _proxyRegistryAddress) TradeableERC721Token("Ethernal-Art", "EA", _proxyRegistryAddress) public { } function tokenURI(uint256 _tokenId) external view returns (string memory) { Print storage print = prints[_tokenId]; require(print.edition != 0, 'not found'); return Strings.strConcat( "ipfs://", editions[print.edition].metadata, "/", Strings.uint2str(uint256(print.number)) ); } function printEdition(uint16 _editionId, uint16 size, string memory metadata) public onlyOwner { require(_editionId == lastEdition + 1, "not next edition"); require(_editionId > lastEdition, "too many editions"); require(!metadata.equals(editions[lastEdition].metadata), "last edition was same"); Edition storage edition = editions[_editionId]; edition.metadata = metadata; edition.size = size; for (uint16 i = 1; i <= size; i++) { uint256 token = mintTo(owner()); Print storage print = prints[token]; print.number = i; print.edition = _editionId; } lastEdition = _editionId; emit Printed(lastEdition, size, metadata); } function contractURI() public pure returns (string memory) { return "https://ipfs.io/ipfs/QmUzuEqRz6wzL5ABcc1uYjZ5DqCcG5MoxPoSKpMa8MrHts"; } function getEdition(uint16 _editionId) public view returns (uint16 size, string memory metadata) { size = editions[_editionId].size; metadata = editions[_editionId].metadata; } function getPrint(uint256 _tokenId) public view returns (uint16 number, uint16 edition) { number = prints[_tokenId].number; edition = prints[_tokenId].edition; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"edition","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"size","type":"uint16"},{"indexed":false,"internalType":"string","name":"metadata","type":"string"}],"name":"Printed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"editions","outputs":[{"internalType":"uint16","name":"size","type":"uint16"},{"internalType":"string","name":"metadata","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"_editionId","type":"uint16"}],"name":"getEdition","outputs":[{"internalType":"uint16","name":"size","type":"uint16"},{"internalType":"string","name":"metadata","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getPrint","outputs":[{"internalType":"uint16","name":"number","type":"uint16"},{"internalType":"uint16","name":"edition","type":"uint16"}],"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":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastEdition","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"_editionId","type":"uint16"},{"internalType":"uint16","name":"size","type":"uint16"},{"internalType":"string","name":"metadata","type":"string"}],"name":"printEdition","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"prints","outputs":[{"internalType":"uint16","name":"number","type":"uint16"},{"internalType":"uint16","name":"edition","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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"}]
Contract Creation Code
60806040526000600e556000601160006101000a81548161ffff021916908361ffff1602179055503480156200003457600080fd5b5060405162003f4838038062003f48833981810160405260208110156200005a57600080fd5b81019080805190602001909291905050506040518060400160405280600c81526020017f45746865726e616c2d41727400000000000000000000000000000000000000008152506040518060400160405280600281526020017f45410000000000000000000000000000000000000000000000000000000000008152508282828181620000f46301ffc9a760e01b6200027b60201b60201c565b6200010c6380ac58cd60e01b6200027b60201b60201c565b6200012463780e9d6360e01b6200027b60201b60201c565b81600990805190602001906200013c92919062000384565b5080600a90805190602001906200015592919062000384565b506200016e635b5e139f60e01b6200027b60201b60201c565b5050505033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000433565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003c757805160ff1916838001178555620003f8565b82800160010185558215620003f8579182015b82811115620003f7578251825591602001919060010190620003da565b5b5090506200040791906200040b565b5090565b6200043091905b808211156200042c57600081600090555060010162000412565b5090565b90565b613b0580620004436000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a22cb46511610097578063cf47b2d911610071578063cf47b2d914610ba8578063e8a3d48514610bce578063e985e9c514610c51578063f2fde38b14610ccd576101a9565b8063a22cb465146109ac578063b88d4fde146109fc578063c87b56dd14610b01576101a9565b8063873e1db8116100d3578063873e1db8146108645780638da5cb5b146108bd5780638f32d59b1461090757806395d89b4114610929576101a9565b8063715018a61461074757806379cdab9e146107515780637cb73d391461080b576101a9565b80632f745c59116101665780634f6ccce7116101405780634f6ccce7146105685780636352211e146105aa578063703126011461061857806370a08231146106ef576101a9565b80632f745c59146103de5780633ca386b21461044057806342842e0e146104fa576101a9565b806301ffc9a7146101ae57806306fdde0314610213578063081812fc14610296578063095ea7b31461030457806318160ddd1461035257806323b872dd14610370575b600080fd5b6101f9600480360360208110156101c457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610d11565b604051808215151515815260200191505060405180910390f35b61021b610d78565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025b578082015181840152602081019050610240565b50505050905090810190601f1680156102885780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c2600480360360208110156102ac57600080fd5b8101908080359060200190929190505050610e1a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103506004803603604081101561031a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb5565b005b61035a61108e565b6040518082815260200191505060405180910390f35b6103dc6004803603606081101561038657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061109b565b005b61042a600480360360408110156103f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061110a565b6040518082815260200191505060405180910390f35b6104706004803603602081101561045657600080fd5b81019080803561ffff1690602001909291905050506111c9565b604051808361ffff1661ffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156104be5780820151818401526020810190506104a3565b50505050905090810190601f1680156104eb5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b6105666004803603606081101561051057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611293565b005b6105946004803603602081101561057e57600080fd5b81019080803590602001909291905050506112b3565b6040518082815260200191505060405180910390f35b6105d6600480360360208110156105c057600080fd5b8101908080359060200190929190505050611333565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106ed6004803603606081101561062e57600080fd5b81019080803561ffff169060200190929190803561ffff1690602001909291908035906020019064010000000081111561066757600080fd5b82018360208201111561067957600080fd5b8035906020019184600183028401116401000000008311171561069b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506113fb565b005b6107316004803603602081101561070557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118a8565b6040518082815260200191505060405180910390f35b61074f61197d565b005b6107816004803603602081101561076757600080fd5b81019080803561ffff169060200190929190505050611ab8565b604051808361ffff1661ffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156107cf5780820151818401526020810190506107b4565b50505050905090810190601f1680156107fc5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b6108376004803603602081101561082157600080fd5b8101908080359060200190929190505050611ba9565b604051808361ffff1661ffff1681526020018261ffff1661ffff1681526020019250505060405180910390f35b6108906004803603602081101561087a57600080fd5b8101908080359060200190929190505050611bff565b604051808361ffff1661ffff1681526020018261ffff1661ffff1681526020019250505060405180910390f35b6108c5611c3f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61090f611c69565b604051808215151515815260200191505060405180910390f35b610931611cc1565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610971578082015181840152602081019050610956565b50505050905090810190601f16801561099e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109fa600480360360408110156109c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611d63565b005b610aff60048036036080811015610a1257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610a7957600080fd5b820183602082011115610a8b57600080fd5b80359060200191846001830284011164010000000083111715610aad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611f06565b005b610b2d60048036036020811015610b1757600080fd5b8101908080359060200190929190505050611f78565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b6d578082015181840152602081019050610b52565b50505050905090810190601f168015610b9a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610bb0612182565b604051808261ffff1661ffff16815260200191505060405180910390f35b610bd6612196565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c16578082015181840152602081019050610bfb565b50505050905090810190601f168015610c435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610cb360048036036040811015610c6757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121b6565b604051808215151515815260200191505060405180910390f35b610d0f60048036036020811015610ce357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122e7565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e105780601f10610de557610100808354040283529160200191610e10565b820191906000526020600020905b815481529060010190602001808311610df357829003601f168201915b5050505050905090565b6000610e258261236d565b610e7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806139fe602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec082611333565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a536021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f875750610f8681336121b6565b5b610fdc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806139736038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b6110a533826123df565b6110fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613a746031913960400191505060405180910390fd5b6111058383836124d3565b505050565b6000611115836118a8565b821061116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806138a0602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106111b657fe5b9060005260206000200154905092915050565b60106020528060005260406000206000915090508060000160009054906101000a900461ffff1690806001018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112895780601f1061125e57610100808354040283529160200191611289565b820191906000526020600020905b81548152906001019060200180831161126c57829003601f168201915b5050505050905082565b6112ae83838360405180602001604052806000815250611f06565b505050565b60006112bd61108e565b8210611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613aa5602c913960400191505060405180910390fd5b6007828154811061132157fe5b90600052602060002001549050919050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806139d56029913960400191505060405180910390fd5b80915050919050565b611403611c69565b611475576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160009054906101000a900461ffff160161ffff168361ffff1614611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6e6f74206e6578742065646974696f6e0000000000000000000000000000000081525060200191505060405180910390fd5b601160009054906101000a900461ffff1661ffff168361ffff1611611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f746f6f206d616e792065646974696f6e7300000000000000000000000000000081525060200191505060405180910390fd5b61166b60106000601160009054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000206001018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116575780601f1061162c57610100808354040283529160200191611657565b820191906000526020600020905b81548152906001019060200180831161163a57829003601f168201915b5050505050826124f790919063ffffffff16565b156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6c6173742065646974696f6e207761732073616d65000000000000000000000081525060200191505060405180910390fd5b6000601060008561ffff1661ffff16815260200190815260200160002090508181600101908051906020019061171592919061378b565b50828160000160006101000a81548161ffff021916908361ffff1602179055506000600190505b8361ffff168161ffff16116117c357600061175d611758611c3f565b6125e6565b90506000600f60008381526020019081526020016000209050828160000160006101000a81548161ffff021916908361ffff160217905550868160000160026101000a81548161ffff021916908361ffff1602179055505050808060010191505061173c565b5083601160006101000a81548161ffff021916908361ffff160217905550601160009054906101000a900461ffff1661ffff167f50e3902552cd99c26e35d1e1476b78cb8fc3a8838f354aed85b73fa721b4abc38484604051808361ffff1661ffff16815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561186757808201518184015260208101905061184c565b50505050905090810190601f1680156118945780820380516001836020036101000a031916815260200191505b50935050505060405180910390a250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806139ab602a913960400191505060405180910390fd5b611976600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061260e565b9050919050565b611985611c69565b6119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006060601060008461ffff1661ffff16815260200190815260200160002060000160009054906101000a900461ffff169150601060008461ffff1661ffff1681526020019081526020016000206001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b9d5780601f10611b7257610100808354040283529160200191611b9d565b820191906000526020600020905b815481529060010190602001808311611b8057829003601f168201915b50505050509050915091565b600080600f600084815260200190815260200160002060000160009054906101000a900461ffff169150600f600084815260200190815260200160002060000160029054906101000a900461ffff169050915091565b600f6020528060005260406000206000915090508060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d595780601f10611d2e57610100808354040283529160200191611d59565b820191906000526020600020905b815481529060010190602001808311611d3c57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b611f1184848461109b565b611f1d8484848461261c565b611f72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806138cb6032913960400191505060405180910390fd5b50505050565b60606000600f6000848152602001908152602001600020905060008160000160029054906101000a900461ffff1661ffff16141561201e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6e6f7420666f756e64000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b61217a6040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250601060008460000160029054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000206001018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561211b5780601f106120f05761010080835404028352916020019161211b565b820191906000526020600020905b8154815290600101906020018083116120fe57829003601f168201915b50505050506040518060400160405280600181526020017f2f000000000000000000000000000000000000000000000000000000000000008152506121758560000160009054906101000a900461ffff1661ffff16612805565b612932565b915050919050565b601160009054906101000a900461ffff1681565b606060405180608001604052806043815260200161385d60439139905090565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561227257600080fd5b505afa158015612286573d6000803e3d6000fd5b505050506040513d602081101561229c57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614156122d35760019150506122e1565b6122dd848461295a565b9150505b92915050565b6122ef611c69565b612361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61236a816129ee565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b60006123ea8261236d565b61243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613947602c913960400191505060405180910390fd5b600061244a83611333565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124b957508373ffffffffffffffffffffffffffffffffffffffff166124a184610e1a565b73ffffffffffffffffffffffffffffffffffffffff16145b806124ca57506124c981856121b6565b5b91505092915050565b6124de838383612b34565b6124e88382612d8f565b6124f28282612f2d565b505050565b6000816040516020018082805190602001908083835b60208310612530578051825260208201915060208101905060208303925061250d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405160208183030381529060405280519060200120836040516020018082805190602001908083835b602083106125a2578051825260208201915060208101905060208303925061257f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528051906020012014905092915050565b6000806125f1612ff4565b90506125fd8382613011565b612605613032565b80915050919050565b600081600001549050919050565b600061263d8473ffffffffffffffffffffffffffffffffffffffff16613046565b61264a57600190506127fd565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561272557808201518184015260208101905061270a565b50505050905090810190601f1680156127525780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561277457600080fd5b505af1158015612788573d6000803e3d6000fd5b505050506040513d602081101561279e57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6060600082141561284d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292d565b600082905060005b60008214612877578080600101915050600a828161286f57fe5b049150612855565b6060816040519080825280601f01601f1916602001820160405280156128ac5781602001600182028038833980820191505090505b50905060006001830390505b6000861461292557600a86816128ca57fe5b0660300160f81b828280600190039350815181106128e457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161291d57fe5b0495506128b8565b819450505050505b919050565b60606129508585858560405180602001604052806000815250613059565b9050949350505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806138fd6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff16612b5482611333565b73ffffffffffffffffffffffffffffffffffffffff1614612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613a2a6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c46576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806139236024913960400191505060405180910390fd5b612c4f8161331f565b612c96600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206133dd565b612cdd600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613400565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612de76001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061341690919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114612ed4576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110612e5457fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110612eac57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003612f26919061380b565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600061300c6001600e5461349f90919063ffffffff16565b905090565b61301b8282613527565b6130258282612f2d565b61302e8161373f565b5050565b600e60008154809291906001019190505550565b600080823b905060008111915050919050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156130b55781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015613136578881815181106130dd57fe5b602001015160f81c60f81b8383806001019450815181106130fa57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506130c8565b5060008090505b87518110156131ab5787818151811061315257fe5b602001015160f81c60f81b83838060010194508151811061316f57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061313d565b5060008090505b8651811015613220578681815181106131c757fe5b602001015160f81c60f81b8383806001019450815181106131e457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506131b2565b5060008090505b85518110156132955785818151811061323c57fe5b602001015160f81c60f81b83838060010194508151811061325957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613227565b5060008090505b845181101561330a578481815181106132b157fe5b602001015160f81c60f81b8383806001019450815181106132ce57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061329c565b50819850505050505050505095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146133da5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6133f56001826000015461341690919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b60008282111561348e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008082840190508381101561351d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6135d38161236d565b15613646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506136df600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613400565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106137cc57805160ff19168380011785556137fa565b828001600101855582156137fa579182015b828111156137f95782518255916020019190600101906137de565b5b5090506138079190613837565b5090565b815481835581811115613832578183600052602060002091820191016138319190613837565b5b505050565b61385991905b8082111561385557600081600090555060010161383d565b5090565b9056fe68747470733a2f2f697066732e696f2f697066732f516d557a754571527a36777a4c35414263633175596a5a354471436347354d6f78506f534b704d61384d72487473455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820432ad056e175df63ac68f129ff82cac7d6b94788b3bc3f9b196006164d4522e864736f6c63430005110032000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a22cb46511610097578063cf47b2d911610071578063cf47b2d914610ba8578063e8a3d48514610bce578063e985e9c514610c51578063f2fde38b14610ccd576101a9565b8063a22cb465146109ac578063b88d4fde146109fc578063c87b56dd14610b01576101a9565b8063873e1db8116100d3578063873e1db8146108645780638da5cb5b146108bd5780638f32d59b1461090757806395d89b4114610929576101a9565b8063715018a61461074757806379cdab9e146107515780637cb73d391461080b576101a9565b80632f745c59116101665780634f6ccce7116101405780634f6ccce7146105685780636352211e146105aa578063703126011461061857806370a08231146106ef576101a9565b80632f745c59146103de5780633ca386b21461044057806342842e0e146104fa576101a9565b806301ffc9a7146101ae57806306fdde0314610213578063081812fc14610296578063095ea7b31461030457806318160ddd1461035257806323b872dd14610370575b600080fd5b6101f9600480360360208110156101c457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610d11565b604051808215151515815260200191505060405180910390f35b61021b610d78565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561025b578082015181840152602081019050610240565b50505050905090810190601f1680156102885780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c2600480360360208110156102ac57600080fd5b8101908080359060200190929190505050610e1a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103506004803603604081101561031a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb5565b005b61035a61108e565b6040518082815260200191505060405180910390f35b6103dc6004803603606081101561038657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061109b565b005b61042a600480360360408110156103f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061110a565b6040518082815260200191505060405180910390f35b6104706004803603602081101561045657600080fd5b81019080803561ffff1690602001909291905050506111c9565b604051808361ffff1661ffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156104be5780820151818401526020810190506104a3565b50505050905090810190601f1680156104eb5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b6105666004803603606081101561051057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611293565b005b6105946004803603602081101561057e57600080fd5b81019080803590602001909291905050506112b3565b6040518082815260200191505060405180910390f35b6105d6600480360360208110156105c057600080fd5b8101908080359060200190929190505050611333565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106ed6004803603606081101561062e57600080fd5b81019080803561ffff169060200190929190803561ffff1690602001909291908035906020019064010000000081111561066757600080fd5b82018360208201111561067957600080fd5b8035906020019184600183028401116401000000008311171561069b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506113fb565b005b6107316004803603602081101561070557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118a8565b6040518082815260200191505060405180910390f35b61074f61197d565b005b6107816004803603602081101561076757600080fd5b81019080803561ffff169060200190929190505050611ab8565b604051808361ffff1661ffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156107cf5780820151818401526020810190506107b4565b50505050905090810190601f1680156107fc5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b6108376004803603602081101561082157600080fd5b8101908080359060200190929190505050611ba9565b604051808361ffff1661ffff1681526020018261ffff1661ffff1681526020019250505060405180910390f35b6108906004803603602081101561087a57600080fd5b8101908080359060200190929190505050611bff565b604051808361ffff1661ffff1681526020018261ffff1661ffff1681526020019250505060405180910390f35b6108c5611c3f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61090f611c69565b604051808215151515815260200191505060405180910390f35b610931611cc1565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610971578082015181840152602081019050610956565b50505050905090810190601f16801561099e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109fa600480360360408110156109c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611d63565b005b610aff60048036036080811015610a1257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610a7957600080fd5b820183602082011115610a8b57600080fd5b80359060200191846001830284011164010000000083111715610aad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611f06565b005b610b2d60048036036020811015610b1757600080fd5b8101908080359060200190929190505050611f78565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b6d578082015181840152602081019050610b52565b50505050905090810190601f168015610b9a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610bb0612182565b604051808261ffff1661ffff16815260200191505060405180910390f35b610bd6612196565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c16578082015181840152602081019050610bfb565b50505050905090810190601f168015610c435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610cb360048036036040811015610c6757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121b6565b604051808215151515815260200191505060405180910390f35b610d0f60048036036020811015610ce357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122e7565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e105780601f10610de557610100808354040283529160200191610e10565b820191906000526020600020905b815481529060010190602001808311610df357829003601f168201915b5050505050905090565b6000610e258261236d565b610e7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806139fe602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec082611333565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613a536021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f875750610f8681336121b6565b5b610fdc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806139736038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b6110a533826123df565b6110fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613a746031913960400191505060405180910390fd5b6111058383836124d3565b505050565b6000611115836118a8565b821061116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806138a0602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481106111b657fe5b9060005260206000200154905092915050565b60106020528060005260406000206000915090508060000160009054906101000a900461ffff1690806001018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112895780601f1061125e57610100808354040283529160200191611289565b820191906000526020600020905b81548152906001019060200180831161126c57829003601f168201915b5050505050905082565b6112ae83838360405180602001604052806000815250611f06565b505050565b60006112bd61108e565b8210611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613aa5602c913960400191505060405180910390fd5b6007828154811061132157fe5b90600052602060002001549050919050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806139d56029913960400191505060405180910390fd5b80915050919050565b611403611c69565b611475576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160009054906101000a900461ffff160161ffff168361ffff1614611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6e6f74206e6578742065646974696f6e0000000000000000000000000000000081525060200191505060405180910390fd5b601160009054906101000a900461ffff1661ffff168361ffff1611611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f746f6f206d616e792065646974696f6e7300000000000000000000000000000081525060200191505060405180910390fd5b61166b60106000601160009054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000206001018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116575780601f1061162c57610100808354040283529160200191611657565b820191906000526020600020905b81548152906001019060200180831161163a57829003601f168201915b5050505050826124f790919063ffffffff16565b156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f6c6173742065646974696f6e207761732073616d65000000000000000000000081525060200191505060405180910390fd5b6000601060008561ffff1661ffff16815260200190815260200160002090508181600101908051906020019061171592919061378b565b50828160000160006101000a81548161ffff021916908361ffff1602179055506000600190505b8361ffff168161ffff16116117c357600061175d611758611c3f565b6125e6565b90506000600f60008381526020019081526020016000209050828160000160006101000a81548161ffff021916908361ffff160217905550868160000160026101000a81548161ffff021916908361ffff1602179055505050808060010191505061173c565b5083601160006101000a81548161ffff021916908361ffff160217905550601160009054906101000a900461ffff1661ffff167f50e3902552cd99c26e35d1e1476b78cb8fc3a8838f354aed85b73fa721b4abc38484604051808361ffff1661ffff16815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561186757808201518184015260208101905061184c565b50505050905090810190601f1680156118945780820380516001836020036101000a031916815260200191505b50935050505060405180910390a250505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806139ab602a913960400191505060405180910390fd5b611976600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061260e565b9050919050565b611985611c69565b6119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006060601060008461ffff1661ffff16815260200190815260200160002060000160009054906101000a900461ffff169150601060008461ffff1661ffff1681526020019081526020016000206001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b9d5780601f10611b7257610100808354040283529160200191611b9d565b820191906000526020600020905b815481529060010190602001808311611b8057829003601f168201915b50505050509050915091565b600080600f600084815260200190815260200160002060000160009054906101000a900461ffff169150600f600084815260200190815260200160002060000160029054906101000a900461ffff169050915091565b600f6020528060005260406000206000915090508060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d595780601f10611d2e57610100808354040283529160200191611d59565b820191906000526020600020905b815481529060010190602001808311611d3c57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b611f1184848461109b565b611f1d8484848461261c565b611f72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806138cb6032913960400191505060405180910390fd5b50505050565b60606000600f6000848152602001908152602001600020905060008160000160029054906101000a900461ffff1661ffff16141561201e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6e6f7420666f756e64000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b61217a6040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250601060008460000160029054906101000a900461ffff1661ffff1661ffff1681526020019081526020016000206001018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561211b5780601f106120f05761010080835404028352916020019161211b565b820191906000526020600020905b8154815290600101906020018083116120fe57829003601f168201915b50505050506040518060400160405280600181526020017f2f000000000000000000000000000000000000000000000000000000000000008152506121758560000160009054906101000a900461ffff1661ffff16612805565b612932565b915050919050565b601160009054906101000a900461ffff1681565b606060405180608001604052806043815260200161385d60439139905090565b600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561227257600080fd5b505afa158015612286573d6000803e3d6000fd5b505050506040513d602081101561229c57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614156122d35760019150506122e1565b6122dd848461295a565b9150505b92915050565b6122ef611c69565b612361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61236a816129ee565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b60006123ea8261236d565b61243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613947602c913960400191505060405180910390fd5b600061244a83611333565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124b957508373ffffffffffffffffffffffffffffffffffffffff166124a184610e1a565b73ffffffffffffffffffffffffffffffffffffffff16145b806124ca57506124c981856121b6565b5b91505092915050565b6124de838383612b34565b6124e88382612d8f565b6124f28282612f2d565b505050565b6000816040516020018082805190602001908083835b60208310612530578051825260208201915060208101905060208303925061250d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405160208183030381529060405280519060200120836040516020018082805190602001908083835b602083106125a2578051825260208201915060208101905060208303925061257f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528051906020012014905092915050565b6000806125f1612ff4565b90506125fd8382613011565b612605613032565b80915050919050565b600081600001549050919050565b600061263d8473ffffffffffffffffffffffffffffffffffffffff16613046565b61264a57600190506127fd565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561272557808201518184015260208101905061270a565b50505050905090810190601f1680156127525780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561277457600080fd5b505af1158015612788573d6000803e3d6000fd5b505050506040513d602081101561279e57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b6060600082141561284d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292d565b600082905060005b60008214612877578080600101915050600a828161286f57fe5b049150612855565b6060816040519080825280601f01601f1916602001820160405280156128ac5781602001600182028038833980820191505090505b50905060006001830390505b6000861461292557600a86816128ca57fe5b0660300160f81b828280600190039350815181106128e457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a868161291d57fe5b0495506128b8565b819450505050505b919050565b60606129508585858560405180602001604052806000815250613059565b9050949350505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806138fd6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff16612b5482611333565b73ffffffffffffffffffffffffffffffffffffffff1614612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613a2a6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c46576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806139236024913960400191505060405180910390fd5b612c4f8161331f565b612c96600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206133dd565b612cdd600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613400565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612de76001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061341690919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114612ed4576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110612e5457fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110612eac57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003612f26919061380b565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600061300c6001600e5461349f90919063ffffffff16565b905090565b61301b8282613527565b6130258282612f2d565b61302e8161373f565b5050565b600e60008154809291906001019190505550565b600080823b905060008111915050919050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156130b55781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015613136578881815181106130dd57fe5b602001015160f81c60f81b8383806001019450815181106130fa57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506130c8565b5060008090505b87518110156131ab5787818151811061315257fe5b602001015160f81c60f81b83838060010194508151811061316f57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061313d565b5060008090505b8651811015613220578681815181106131c757fe5b602001015160f81c60f81b8383806001019450815181106131e457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506131b2565b5060008090505b85518110156132955785818151811061323c57fe5b602001015160f81c60f81b83838060010194508151811061325957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613227565b5060008090505b845181101561330a578481815181106132b157fe5b602001015160f81c60f81b8383806001019450815181106132ce57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061329c565b50819850505050505050505095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146133da5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6133f56001826000015461341690919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b60008282111561348e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008082840190508381101561351d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6135d38161236d565b15613646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506136df600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613400565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106137cc57805160ff19168380011785556137fa565b828001600101855582156137fa579182015b828111156137f95782518255916020019190600101906137de565b5b5090506138079190613837565b5090565b815481835581811115613832578183600052602060002091820191016138319190613837565b5b505050565b61385991905b8082111561385557600081600090555060010161383d565b5090565b9056fe68747470733a2f2f697066732e696f2f697066732f516d557a754571527a36777a4c35414263633175596a5a354471436347354d6f78506f534b704d61384d72487473455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820432ad056e175df63ac68f129ff82cac7d6b94788b3bc3f9b196006164d4522e864736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode Sourcemap
44895:2109:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44895:2109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11407:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11407:135:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35835:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;35835:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16361:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16361:204:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15647:421;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15647:421:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27473:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18038:290;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18038:290:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27082:232;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27082:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45153:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45153:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45153:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18974:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18974:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27915:199;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27915:199:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14988:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14988:228:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45771:701;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45771:701:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45771:701:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45771:701:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45771:701:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45771:701:0;;;;;;;;;;;;;;;:::i;:::-;;14551:211;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14551:211:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39867:140;;;:::i;:::-;;46632:189;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46632:189:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46632:189:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46827:174;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46827:174:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45109:39;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45109:39:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39056:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39422:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36035:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;36035:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16866:248;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16866:248:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19827:268;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;19827:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;19827:268:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19827:268:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;19827:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;19827:268:0;;;;;;;;;;;;;;;:::i;:::-;;45436:329;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45436:329:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45436:329:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45200:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46478:148;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46478:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44382:402;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44382:402:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40162:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40162:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11407:135;11477:4;11501:20;:33;11522:11;11501:33;;;;;;;;;;;;;;;;;;;;;;;;;;;11494:40;;11407:135;;;:::o;35835:85::-;35874:13;35907:5;35900:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35835:85;:::o;16361:204::-;16420:7;16448:16;16456:7;16448;:16::i;:::-;16440:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16533:15;:24;16549:7;16533:24;;;;;;;;;;;;;;;;;;;;;16526:31;;16361:204;;;:::o;15647:421::-;15711:13;15727:16;15735:7;15727;:16::i;:::-;15711:32;;15768:5;15762:11;;:2;:11;;;;15754:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15846:5;15832:19;;:10;:19;;;:58;;;;15855:35;15872:5;15879:10;15855:16;:35::i;:::-;15832:58;15824:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16014:2;15987:15;:24;16003:7;15987:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;16052:7;16048:2;16032:28;;16041:5;16032:28;;;;;;;;;;;;15647:421;;;:::o;27473:96::-;27517:7;27544:10;:17;;;;27537:24;;27473:96;:::o;18038:290::-;18182:39;18201:10;18213:7;18182:18;:39::i;:::-;18174:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18288:32;18302:4;18308:2;18312:7;18288:13;:32::i;:::-;18038:290;;;:::o;27082:232::-;27162:7;27198:16;27208:5;27198:9;:16::i;:::-;27190:5;:24;27182:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27280:12;:19;27293:5;27280:19;;;;;;;;;;;;;;;27300:5;27280:26;;;;;;;;;;;;;;;;27273:33;;27082:232;;;;:::o;45153:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18974:134::-;19061:39;19078:4;19084:2;19088:7;19061:39;;;;;;;;;;;;:16;:39::i;:::-;18974:134;;;:::o;27915:199::-;27973:7;28009:13;:11;:13::i;:::-;28001:5;:21;27993:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28089:10;28100:5;28089:17;;;;;;;;;;;;;;;;28082:24;;27915:199;;;:::o;14988:228::-;15043:7;15063:13;15079:11;:20;15091:7;15079:20;;;;;;;;;;;;;;;;;;;;;15063:36;;15135:1;15118:19;;:5;:19;;;;15110:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15203:5;15196:12;;;14988:228;;;:::o;45771:701::-;39268:9;:7;:9::i;:::-;39260:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45909:1;45895:11;;;;;;;;;;;:15;45881:29;;:10;:29;;;45873:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45959:11;;;;;;;;;;;45946:24;;:10;:24;;;45938:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46008:47;46024:8;:21;46033:11;;;;;;;;;;;46024:21;;;;;;;;;;;;;;;:30;;46008:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:8;:15;;:47;;;;:::i;:::-;46007:48;45999:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46088:23;46114:8;:20;46123:10;46114:20;;;;;;;;;;;;;;;46088:46;;46160:8;46141:7;:16;;:27;;;;;;;;;;;;:::i;:::-;;46190:4;46175:7;:12;;;:19;;;;;;;;;;;;;;;;;;46206:8;46217:1;46206:12;;46201:187;46225:4;46220:9;;:1;:9;;;46201:187;;46245:13;46261:15;46268:7;:5;:7::i;:::-;46261:6;:15::i;:::-;46245:31;;46285:19;46307:6;:13;46314:5;46307:13;;;;;;;;;;;46285:35;;46344:1;46329:5;:12;;;:16;;;;;;;;;;;;;;;;;;46370:10;46354:5;:13;;;:26;;;;;;;;;;;;;;;;;;46201:187;;46231:3;;;;;;;46201:187;;;;46408:10;46394:11;;:24;;;;;;;;;;;;;;;;;;46438:11;;;;;;;;;;;46430:36;;;46451:4;46457:8;46430:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46430:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39325:1;45771:701;;;:::o;14551:211::-;14606:7;14651:1;14634:19;;:5;:19;;;;14626:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14720:34;:17;:24;14738:5;14720:24;;;;;;;;;;;;;;;:32;:34::i;:::-;14713:41;;14551:211;;;:::o;39867:140::-;39268:9;:7;:9::i;:::-;39260:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39966:1;39929:40;;39950:6;;;;;;;;;;;39929:40;;;;;;;;;;;;39997:1;39980:6;;:19;;;;;;;;;;;;;;;;;;39867:140::o;46632:189::-;46692:11;46705:22;46743:8;:20;46752:10;46743:20;;;;;;;;;;;;;;;:25;;;;;;;;;;;;46736:32;;46786:8;:20;46795:10;46786:20;;;;;;;;;;;;;;;:29;;46775:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46632:189;;;:::o;46827:174::-;46884:13;46899:14;46931:6;:16;46938:8;46931:16;;;;;;;;;;;:23;;;;;;;;;;;;46922:32;;46971:6;:16;46978:8;46971:16;;;;;;;;;;;:24;;;;;;;;;;;;46961:34;;46827:174;;;:::o;45109:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39056:79::-;39094:7;39121:6;;;;;;;;;;;39114:13;;39056:79;:::o;39422:92::-;39462:4;39500:6;;;;;;;;;;;39486:20;;:10;:20;;;39479:27;;39422:92;:::o;36035:89::-;36076:13;36109:7;36102:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36035:89;:::o;16866:248::-;16952:10;16946:16;;:2;:16;;;;16938:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17042:8;17005:18;:30;17024:10;17005:30;;;;;;;;;;;;;;;:34;17036:2;17005:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;17093:2;17066:40;;17081:10;17066:40;;;17097:8;17066:40;;;;;;;;;;;;;;;;;;;;;;16866:248;;:::o;19827:268::-;19934:31;19947:4;19953:2;19957:7;19934:12;:31::i;:::-;19984:48;20007:4;20013:2;20017:7;20026:5;19984:22;:48::i;:::-;19976:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19827:268;;;;:::o;45436:329::-;45495:13;45517:19;45539:6;:16;45546:8;45539:16;;;;;;;;;;;45517:38;;45587:1;45570:5;:13;;;;;;;;;;;;:18;;;;45562:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45616:143;;;;;;;;;;;;;;;;;;45660:8;:23;45669:5;:13;;;;;;;;;;;;45660:23;;;;;;;;;;;;;;;:32;;45616:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45713:39;45738:5;:12;;;;;;;;;;;;45730:21;;45713:16;:39::i;:::-;45616:17;:143::i;:::-;45609:150;;;45436:329;;;:::o;45200:29::-;;;;;;;;;;;;;:::o;46478:148::-;46522:13;46544:76;;;;;;;;;;;;;;;;;;;46478:148;:::o;44382:402::-;44492:4;44567:27;44611:20;;;;;;;;;;;44567:65;;44684:8;44643:49;;44651:13;:21;;;44673:5;44651:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44651:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44651:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44651:28:0;;;;;;;;;;;;;;;;44643:49;;;44639:85;;;44712:4;44705:11;;;;;44639:85;44739:39;44762:5;44769:8;44739:22;:39::i;:::-;44732:46;;;44382:402;;;;;:::o;40162:109::-;39268:9;:7;:9::i;:::-;39260:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40235:28;40254:8;40235:18;:28::i;:::-;40162:109;:::o;20297:155::-;20354:4;20371:13;20387:11;:20;20399:7;20387:20;;;;;;;;;;;;;;;;;;;;;20371:36;;20442:1;20425:19;;:5;:19;;;;20418:26;;;20297:155;;;:::o;20822:333::-;20907:4;20932:16;20940:7;20932;:16::i;:::-;20924:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21008:13;21024:16;21032:7;21024;:16::i;:::-;21008:32;;21070:5;21059:16;;:7;:16;;;:51;;;;21103:7;21079:31;;:20;21091:7;21079:11;:20::i;:::-;:31;;;21059:51;:87;;;;21114:32;21131:5;21138:7;21114:16;:32::i;:::-;21059:87;21051:96;;;20822:333;;;;:::o;28498:245::-;28584:38;28604:4;28610:2;28614:7;28584:19;:38::i;:::-;28635:47;28668:4;28674:7;28635:32;:47::i;:::-;28695:40;28723:2;28727:7;28695:27;:40::i;:::-;28498:245;;;:::o;42670:173::-;42743:4;42831:1;42813:21;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;42813:21:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;42813:21:0;;;42803:32;;;;;;42795:1;42777:21;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;42777:21:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;42777:21:0;;;42767:32;;;;;;:68;42760:75;;42670:173;;;;:::o;43690:186::-;43737:7;43753:18;43774:17;:15;:17::i;:::-;43753:38;;43798:22;43804:3;43809:10;43798:5;:22::i;:::-;43827:19;:17;:19::i;:::-;43860:10;43853:17;;;43690:186;;;:::o;10078:114::-;10143:7;10170;:14;;;10163:21;;10078:114;;;:::o;24069:356::-;24191:4;24218:15;:2;:13;;;:15::i;:::-;24213:60;;24257:4;24250:11;;;;24213:60;24285:13;24317:2;24301:36;;;24338:10;24350:4;24356:7;24365:5;24301:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;24301:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24301:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24301:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24301:70:0;;;;;;;;;;;;;;;;24285:86;;12753:10;24400:16;;24390:26;;;:6;:26;;;;24382:35;;;24069:356;;;;;;;:::o;42180:482::-;42230:27;42280:1;42274:2;:7;42270:50;;;42298:10;;;;;;;;;;;;;;;;;;;;;42270:50;42330:6;42339:2;42330:11;;42352:8;42371:69;42383:1;42378;:6;42371:69;;42401:5;;;;;;;42426:2;42421:7;;;;;;;;;42371:69;;;42450:17;42480:3;42470:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;42470:14:0;;;;42450:34;;42495:6;42510:1;42504:3;:7;42495:16;;42522:103;42535:1;42529:2;:7;42522:103;;42586:2;42581;:7;;;;;;42576:2;:12;42565:25;;42553:4;42558:3;;;;;;;42553:9;;;;;;;;;;;:37;;;;;;;;;;;42611:2;42605:8;;;;;;;;;42522:103;;;42649:4;42635:19;;;;;;42180:482;;;;:::o;41658:184::-;41772:13;41805:29;41815:2;41819;41823;41827;41805:29;;;;;;;;;;;;:9;:29::i;:::-;41798:36;;41658:184;;;;;;:::o;17444:147::-;17524:4;17548:18;:25;17567:5;17548:25;;;;;;;;;;;;;;;:35;17574:8;17548:35;;;;;;;;;;;;;;;;;;;;;;;;;17541:42;;17444:147;;;;:::o;40377:229::-;40471:1;40451:22;;:8;:22;;;;40443:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40561:8;40532:38;;40553:6;;;;;;;;;;;40532:38;;;;;;;;;;;;40590:8;40581:6;;:17;;;;;;;;;;;;;;;;;;40377:229;:::o;23024:459::-;23138:4;23118:24;;:16;23126:7;23118;:16::i;:::-;:24;;;23110:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23221:1;23207:16;;:2;:16;;;;23199:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23277:23;23292:7;23277:14;:23::i;:::-;23313:35;:17;:23;23331:4;23313:23;;;;;;;;;;;;;;;:33;:35::i;:::-;23359:33;:17;:21;23377:2;23359:21;;;;;;;;;;;;;;;:31;:33::i;:::-;23428:2;23405:11;:20;23417:7;23405:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;23467:7;23463:2;23448:27;;23457:4;23448:27;;;;;;;;;;;;23024:459;;;:::o;31681:1148::-;31947:22;31972:32;32002:1;31972:12;:18;31985:4;31972:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;31947:57;;32015:18;32036:17;:26;32054:7;32036:26;;;;;;;;;;;;32015:47;;32183:14;32169:10;:28;32165:328;;32214:19;32236:12;:18;32249:4;32236:18;;;;;;;;;;;;;;;32255:14;32236:34;;;;;;;;;;;;;;;;32214:56;;32320:11;32287:12;:18;32300:4;32287:18;;;;;;;;;;;;;;;32306:10;32287:30;;;;;;;;;;;;;;;:44;;;;32437:10;32404:17;:30;32422:11;32404:30;;;;;;;;;;;:43;;;;32165:328;;32582:12;:18;32595:4;32582:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;31681:1148;;;;:::o;30505:186::-;30619:12;:16;30632:2;30619:16;;;;;;;;;;;;;;;:23;;;;30590:17;:26;30608:7;30590:26;;;;;;;;;;;:52;;;;30653:12;:16;30666:2;30653:16;;;;;;;;;;;;;;;30675:7;30653:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;30653:30:0;;;;;;;;;;;;;;;;;;;;;;30505:186;;:::o;44017:100::-;44066:7;44089:22;44109:1;44089:15;;:19;;:22;;;;:::i;:::-;44082:29;;44017:100;:::o;29008:202::-;29072:24;29084:2;29088:7;29072:11;:24::i;:::-;29109:40;29137:2;29141:7;29109:27;:40::i;:::-;29162;29194:7;29162:31;:40::i;:::-;29008:202;;:::o;44190:68::-;44235:15;;:17;;;;;;;;;;;;;44190:68::o;8529:422::-;8589:4;8797:12;8908:7;8896:20;8888:28;;8942:1;8935:4;:8;8928:15;;;8529:422;;;:::o;40778:872::-;40910:13;40934:16;40959:2;40934:28;;40971:16;40996:2;40971:28;;41008:16;41033:2;41008:28;;41045:16;41070:2;41045:28;;41082:16;41107:2;41082:28;;41119:19;41204:3;:10;41191:3;:10;41178:3;:10;41165:3;:10;41152:3;:10;:23;:36;:49;:62;41141:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;41141:74:0;;;;41119:96;;41224:19;41252:5;41224:34;;41267:6;41276:1;41267:10;;41291:6;41300:1;41291:10;;41286:58;41307:3;:10;41303:1;:14;41286:58;;;41338:3;41342:1;41338:6;;;;;;;;;;;;;;;;41324;41331:3;;;;;;41324:11;;;;;;;;;;;:20;;;;;;;;;;;41319:3;;;;;;;41286:58;;;;41358:6;41367:1;41358:10;;41353:58;41374:3;:10;41370:1;:14;41353:58;;;41405:3;41409:1;41405:6;;;;;;;;;;;;;;;;41391;41398:3;;;;;;41391:11;;;;;;;;;;;:20;;;;;;;;;;;41386:3;;;;;;;41353:58;;;;41425:6;41434:1;41425:10;;41420:58;41441:3;:10;41437:1;:14;41420:58;;;41472:3;41476:1;41472:6;;;;;;;;;;;;;;;;41458;41465:3;;;;;;41458:11;;;;;;;;;;;:20;;;;;;;;;;;41453:3;;;;;;;41420:58;;;;41492:6;41501:1;41492:10;;41487:58;41508:3;:10;41504:1;:14;41487:58;;;41539:3;41543:1;41539:6;;;;;;;;;;;;;;;;41525;41532:3;;;;;;41525:11;;;;;;;;;;;:20;;;;;;;;;;;41520:3;;;;;;;41487:58;;;;41559:6;41568:1;41559:10;;41554:58;41575:3;:10;41571:1;:14;41554:58;;;41606:3;41610:1;41606:6;;;;;;;;;;;;;;;;41592;41599:3;;;;;;41592:11;;;;;;;;;;;:20;;;;;;;;;;;41587:3;;;;;;;41554:58;;;;41635:6;41621:21;;;;;;;;;;40778:872;;;;;;;:::o;24593:175::-;24693:1;24657:38;;:15;:24;24673:7;24657:24;;;;;;;;;;;;;;;;;;;;;:38;;;24653:108;;24747:1;24712:15;:24;24728:7;24712:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;24653:108;24593:175;:::o;10299:110::-;10380:21;10399:1;10380:7;:14;;;:18;;:21;;;;:::i;:::-;10363:7;:14;;:38;;;;10299:110;:::o;10200:91::-;10282:1;10264:7;:14;;;:19;;;;;;;;;;;10200:91;:::o;5587:184::-;5645:7;5678:1;5673;:6;;5665:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5725:9;5741:1;5737;:5;5725:17;;5762:1;5755:8;;;5587:184;;;;:::o;5131:181::-;5189:7;5209:9;5225:1;5221;:5;5209:17;;5250:1;5245;:6;;5237:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5303:1;5296:8;;;5131:181;;;;:::o;21408:335::-;21494:1;21480:16;;:2;:16;;;;21472:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21553:16;21561:7;21553;:16::i;:::-;21552:17;21544:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21638:2;21615:11;:20;21627:7;21615:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;21651:33;:17;:21;21669:2;21651:21;;;;;;;;;;;;;;;:31;:33::i;:::-;21727:7;21723:2;21702:33;;21719:1;21702:33;;;;;;;;;;;;21408:335;;:::o;30892:164::-;30996:10;:17;;;;30969:15;:24;30985:7;30969:24;;;;;;;;;;;:44;;;;31024:10;31040:7;31024:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;31024:24:0;;;;;;;;;;;;;;;;;;;;;;30892:164;:::o;44895:2109::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://432ad056e175df63ac68f129ff82cac7d6b94788b3bc3f9b196006164d4522e8
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.