Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Decentraland
Overview
Max Total Supply
1,913 DCLBNNCSCLLCTN
Holders
1,125
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DCLBNNCSCLLCTNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC721Collection
Compiler Version
v0.5.11+commit.c082d0b4
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-16 */ /** *Submitted for verification at Etherscan.io on 2020-07-02 */ // File: @openzeppelin/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be 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: @openzeppelin/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/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/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/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-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // 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/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/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/contracts/introspection/ERC165.sol pragma solidity ^0.5.0; /** * @dev Implementation of the `IERC165` interface. * * Contracts may inherit from this and call `_registerInterface` to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See `IERC165.supportsInterface`. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See `IERC165.supportsInterface`. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.5.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is 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/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity ^0.5.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Enumerable is IERC721 { function totalSupply() public view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId); function tokenByIndex(uint256 index) public view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/ERC721Enumerable.sol pragma solidity ^0.5.0; /** * @title ERC-721 Non-Fungible Token with optional enumeration extension logic * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Enumerable is 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/contracts/token/ERC721/IERC721Metadata.sol pragma solidity ^0.5.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721Metadata.sol pragma solidity ^0.5.0; contract ERC721Metadata is 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/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: contracts/libs/String.sol pragma solidity ^0.5.11; library String { /** * @dev Convert bytes32 to string. * @param _x - to be converted to string. * @return string */ function bytes32ToString(bytes32 _x) internal pure returns (string memory) { bytes memory bytesString = new bytes(32); uint charCount = 0; for (uint j = 0; j < 32; j++) { byte char = byte(bytes32(uint(_x) * 2 ** (8 * j))); if (char != 0) { bytesString[charCount] = char; charCount++; } } bytes memory bytesStringTrimmed = new bytes(charCount); for (uint j = 0; j < charCount; j++) { bytesStringTrimmed[j] = bytesString[j]; } return string(bytesStringTrimmed); } /** * @dev Convert uint to string. * @param _i - uint256 to be converted to string. * @return uint in string */ function uintToString(uint _i) internal pure returns (string memory _uintAsString) { uint i = _i; if (i == 0) { return "0"; } uint j = i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len - 1; while (i != 0) { bstr[k--] = byte(uint8(48 + i % 10)); i /= 10; } return string(bstr); } } // File: contracts/ERC721BaseCollection.sol pragma solidity ^0.5.11; contract ERC721BaseCollection is Ownable, ERC721Full { using String for bytes32; using String for uint256; mapping(bytes32 => uint256) public maxIssuance; mapping(bytes32 => uint) public issued; mapping(uint256 => string) internal _tokenPaths; mapping(address => bool) public allowed; string[] public wearables; string public baseURI; bool public isComplete; event BaseURI(string _oldBaseURI, string _newBaseURI); event Allowed(address indexed _operator, bool _allowed); event AddWearable(bytes32 indexed _wearableIdKey, string _wearableId, uint256 _maxIssuance); event Issue(address indexed _beneficiary, uint256 indexed _tokenId, bytes32 indexed _wearableIdKey, string _wearableId, uint256 _issuedId); event Complete(); /** * @dev Create the contract. * @param _name - name of the contract * @param _symbol - symbol of the contract * @param _operator - Address allowed to mint tokens * @param _baseURI - base URI for token URIs */ constructor(string memory _name, string memory _symbol, address _operator, string memory _baseURI) public ERC721Full(_name, _symbol) { setAllowed(_operator, true); setBaseURI(_baseURI); } modifier onlyAllowed() { require(allowed[msg.sender], "Only an `allowed` address can issue tokens"); _; } /** * @dev Set Base URI. * @param _baseURI - base URI for token URIs */ function setBaseURI(string memory _baseURI) public onlyOwner { emit BaseURI(baseURI, _baseURI); baseURI = _baseURI; } /** * @dev Set allowed account to issue tokens. * @param _operator - Address allowed to issue tokens * @param _allowed - Whether is allowed or not */ function setAllowed(address _operator, bool _allowed) public onlyOwner { require(_operator != address(0), "Invalid address"); require(allowed[_operator] != _allowed, "You should set a different value"); allowed[_operator] = _allowed; emit Allowed(_operator, _allowed); } /** * @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 queried * @return token URI */ function tokenURI(uint256 _tokenId) external view returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: received a URI query for a nonexistent token"); return string(abi.encodePacked(baseURI, _tokenPaths[_tokenId])); } /** * @dev Transfers the ownership of given tokens ID to another address. * Usage of this method is discouraged, use {safeBatchTransferFrom} 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 _tokenIds uint256 ID of the token to be transferred */ function batchTransferFrom(address _from, address _to, uint256[] calldata _tokenIds) external { for (uint256 i = 0; i < _tokenIds.length; i++) { transferFrom(_from, _to, _tokenIds[i]); } } /** * @dev Returns the wearables length. * @return wearable length */ function wearablesCount() external view returns (uint256) { return wearables.length; } /** * @dev Complete the collection. * @notice that it will only prevent for adding more wearables. * The issuance is still allowed. */ function completeCollection() external onlyOwner { require(!isComplete, "The collection is already completed"); isComplete = true; emit Complete(); } /** * @dev Add a new wearable to the collection. * @notice that this method should only allow wearableIds less than or equal to 32 bytes * @param _wearableIds - wearable ids * @param _maxIssuances - total supply for the wearables */ function addWearables(bytes32[] calldata _wearableIds, uint256[] calldata _maxIssuances) external onlyOwner { require(_wearableIds.length == _maxIssuances.length, "Parameters should have the same length"); for (uint256 i = 0; i < _wearableIds.length; i++) { addWearable(_wearableIds[i].bytes32ToString(), _maxIssuances[i]); } } /** * @dev Add a new wearable to the collection. * @notice that this method allows wearableIds of any size. It should be used * if a wearableId is greater than 32 bytes * @param _wearableId - wearable id * @param _maxIssuance - total supply for the wearable */ function addWearable(string memory _wearableId, uint256 _maxIssuance) public onlyOwner { require(!isComplete, "The collection is complete"); bytes32 key = getWearableKey(_wearableId); require(maxIssuance[key] == 0, "Can not modify an existing wearable"); require(_maxIssuance > 0, "Max issuance should be greater than 0"); maxIssuance[key] = _maxIssuance; wearables.push(_wearableId); emit AddWearable(key, _wearableId, _maxIssuance); } /** * @dev Safely transfers the ownership of given token IDs to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param _from - current owner of the token * @param _to - address to receive the ownership of the given token ID * @param _tokenIds - uint256 IDs of the tokens to be transferred */ function safeBatchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public { safeBatchTransferFrom(_from, _to, _tokenIds, ""); } /** * @dev Safely transfers the ownership of given token IDs to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param _from - current owner of the token * @param _to - address to receive the ownership of the given token ID * @param _tokenIds - uint256 ID of the tokens to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeBatchTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory _data) public { for (uint256 i = 0; i < _tokenIds.length; i++) { safeTransferFrom(_from, _to, _tokenIds[i], _data); } } /** * @dev Get keccak256 of a wearableId. * @param _wearableId - token wearable * @return bytes32 keccak256 of the wearableId */ function getWearableKey(string memory _wearableId) public pure returns (bytes32) { return keccak256(abi.encodePacked(_wearableId)); } /** * @dev Mint a new NFT of the specified kind. * @notice that will throw if kind has reached its maximum or is invalid * @param _beneficiary - owner of the token * @param _tokenId - token * @param _wearableIdKey - wearable key * @param _wearableId - token wearable * @param _issuedId - issued id */ function _mint( address _beneficiary, uint256 _tokenId, bytes32 _wearableIdKey, string memory _wearableId, uint256 _issuedId ) internal { // Check issuance require( _issuedId > 0 && _issuedId <= maxIssuance[_wearableIdKey], "Invalid issued id" ); require(issued[_wearableIdKey] < maxIssuance[_wearableIdKey], "Option exhausted"); // Mint erc721 token super._mint(_beneficiary, _tokenId); // Increase issuance issued[_wearableIdKey] = issued[_wearableIdKey] + 1; // Log emit Issue(_beneficiary, _tokenId, _wearableIdKey, _wearableId, _issuedId); } } // File: contracts/ERC721Collection.sol pragma solidity ^0.5.11; contract ERC721Collection is Ownable, ERC721Full, ERC721BaseCollection { /** * @dev Create the contract. * @param _name - name of the contract * @param _symbol - symbol of the contract * @param _operator - Address allowed to mint tokens * @param _baseURI - base URI for token URIs */ constructor( string memory _name, string memory _symbol, address _operator, string memory _baseURI ) public ERC721BaseCollection(_name, _symbol, _operator, _baseURI) {} /** * @dev Issue a new NFT of the specified kind. * @notice that will throw if kind has reached its maximum or is invalid * @param _beneficiary - owner of the token * @param _wearableId - token wearable */ function issueToken(address _beneficiary, string calldata _wearableId) external onlyAllowed { _issueToken(_beneficiary, _wearableId); } /** * @dev Issue NFTs. * @notice that will throw if kind has reached its maximum or is invalid * @param _beneficiaries - owner of the tokens * @param _wearableIds - token wearables */ function issueTokens(address[] calldata _beneficiaries, bytes32[] calldata _wearableIds) external onlyAllowed { require(_beneficiaries.length == _wearableIds.length, "Parameters should have the same length"); for(uint256 i = 0; i < _wearableIds.length; i++) { _issueToken(_beneficiaries[i], _wearableIds[i].bytes32ToString()); } } /** * @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 queried * @return token URI */ function tokenURI(uint256 _tokenId) external view returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: received a URI query for a nonexistent token"); return string(abi.encodePacked(baseURI, _tokenPaths[_tokenId])); } /** * @dev Issue a new NFT of the specified kind. * @notice that will throw if kind has reached its maximum or is invalid * @param _beneficiary - owner of the token * @param _wearableId - token wearable */ function _issueToken(address _beneficiary, string memory _wearableId) internal { bytes32 key = getWearableKey(_wearableId); uint256 issuedId = issued[key] + 1; uint256 tokenId = this.totalSupply(); _mint(_beneficiary, tokenId, key, _wearableId, issuedId); _setTokenURI( tokenId, string(abi.encodePacked(_wearableId, "/", issuedId.uintToString())) ); } /** * @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 as its URI * @param _uri - string URI to assign */ function _setTokenURI(uint256 _tokenId, string memory _uri) internal { _tokenPaths[_tokenId] = _uri; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_beneficiaries","type":"address[]"},{"internalType":"bytes32[]","name":"_wearableIds","type":"bytes32[]"}],"name":"issueTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"internalType":"string","name":"_wearableId","type":"string"},{"internalType":"uint256","name":"_maxIssuance","type":"uint256"}],"name":"addWearable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32[]","name":"_wearableIds","type":"bytes32[]"},{"internalType":"uint256[]","name":"_maxIssuances","type":"uint256[]"}],"name":"addWearables","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":"_operator","type":"address"},{"internalType":"bool","name":"_allowed","type":"bool"}],"name":"setAllowed","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"string","name":"_wearableId","type":"string"}],"name":"issueToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","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":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"_wearableId","type":"string"}],"name":"getWearableKey","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","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":[],"name":"isComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wearables","outputs":[{"internalType":"string","name":"","type":"string"}],"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"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"issued","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":[{"internalType":"address","name":"","type":"address"}],"name":"allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wearablesCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"maxIssuance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","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":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"completeCollection","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_operator","type":"address"},{"internalType":"string","name":"_baseURI","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_oldBaseURI","type":"string"},{"indexed":false,"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"BaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_allowed","type":"bool"}],"name":"Allowed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_wearableIdKey","type":"bytes32"},{"indexed":false,"internalType":"string","name":"_wearableId","type":"string"},{"indexed":false,"internalType":"uint256","name":"_maxIssuance","type":"uint256"}],"name":"AddWearable","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_beneficiary","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"_wearableIdKey","type":"bytes32"},{"indexed":false,"internalType":"string","name":"_wearableId","type":"string"},{"indexed":false,"internalType":"uint256","name":"_issuedId","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[],"name":"Complete","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"},{"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200541838038062005418833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080516040519392919084640100000000821115620001dc57600080fd5b83820191506020820185811115620001f357600080fd5b82518660018202830111640100000000821117156200021157600080fd5b8083526020830192505050908051906020019080838360005b83811015620002475780820151818401526020810190506200022a565b50505050905090810190601f168015620002755780820380516001836020036101000a031916815260200191505b506040525050508383838383838181336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3620003586301ffc9a760e01b6200040860201b60201c565b620003706380ac58cd60e01b6200040860201b60201c565b6200038863780e9d6360e01b6200040860201b60201c565b81600a9080519060200190620003a0929190620009d0565b5080600b9080519060200190620003b9929190620009d0565b50620003d2635b5e139f60e01b6200040860201b60201c565b50505050620003e98260016200051160201b60201c565b620003fa81620007ac60201b60201c565b505050505050505062000a7f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620004a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b620005216200097960201b60201c565b62000594576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415620006ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f596f752073686f756c6420736574206120646966666572656e742076616c756581525060200191505060405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f64966f3fe2ac8cae5e6f7e4196d1315efafdb78a4377de3887c56fa3b9ac47cb82604051808215151515815260200191505060405180910390a25050565b620007bc6200097960201b60201c565b6200082f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7fb8fdf10126d507f6daf46465ec25a2bbc08449cf6c944c98219264161391040a601282604051808060200180602001838103835285818154600181600116156101000203166002900481526020019150805460018160011615610100020316600290048015620008e45780601f10620008b857610100808354040283529160200191620008e4565b820191906000526020600020905b815481529060010190602001808311620008c657829003601f168201915b5050838103825284818151815260200191508051906020019080838360005b838110156200092057808201518184015260208101905062000903565b50505050905090810190601f1680156200094e5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1806012908051906020019062000975929190620009d0565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a1357805160ff191683800117855562000a44565b8280016001018555821562000a44579182015b8281111562000a4357825182559160200191906001019062000a26565b5b50905062000a53919062000a57565b5090565b62000a7c91905b8082111562000a7857600081600090555060010162000a5e565b5090565b90565b6149898062000a8f6000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063b88d4fde116100b8578063e181ff331161007c578063e181ff3314611297578063e985e9c5146112d9578063f2fde38b14611355578063f3993d1114611399578063f59d9e3f1461145257610232565b8063b88d4fde1461102f578063c59a138b14611134578063c87b56dd14611176578063d63a8e111461121d578063d8b416471461127957610232565b80638f32d59b116100ff5780638f32d59b14610e7157806395d89b4114610e93578063a22cb46514610f16578063b2fa1c9e14610f66578063b416cfd714610f8857610232565b806370a0823114610cf6578063715018a614610d4e578063823bfc3f14610d585780638da5cb5b14610e2757610232565b80632f745c59116101be5780634f6ccce7116101825780634f6ccce714610a6f57806355f804b314610ab15780635669c94f14610b6c5780636352211e14610c055780636c0360eb14610c7357610232565b80632f745c59146107bc5780633fb1d1cf1461081e57806340bd647e146108e357806342842e0e146109b15780634697f05d14610a1f57610232565b8063095ea7b311610205578063095ea7b314610485578063105f7b7c146104d357806318160ddd146105a157806323b872dd146105bf57806328cfbd461461062d57610232565b806301ffc9a714610237578063034601ec1461029c57806306fdde0314610394578063081812fc14610417575b600080fd5b6102826004803603602081101561024d57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061145c565b604051808215151515815260200191505060405180910390f35b610392600480360360608110156102b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561030f57600080fd5b82018360208201111561032157600080fd5b8035906020019184602083028401116401000000008311171561034357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506114c4565b005b61039c6114e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103dc5780820151818401526020810190506103c1565b50505050905090810190601f1680156104095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104436004803603602081101561042d57600080fd5b8101908080359060200190929190505050611586565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104d16004803603604081101561049b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611621565b005b61059f600480360360408110156104e957600080fd5b810190808035906020019064010000000081111561050657600080fd5b82018360208201111561051857600080fd5b8035906020019184602083028401116401000000008311171561053a57600080fd5b90919293919293908035906020019064010000000081111561055b57600080fd5b82018360208201111561056d57600080fd5b8035906020019184602083028401116401000000008311171561058f57600080fd5b90919293919293905050506117fa565b005b6105a961196b565b6040518082815260200191505060405180910390f35b61062b600480360360608110156105d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611978565b005b6107ba6004803603608081101561064357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156106a057600080fd5b8201836020820111156106b257600080fd5b803590602001918460208302840111640100000000831117156106d457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561073457600080fd5b82018360208201111561074657600080fd5b8035906020019184600183028401116401000000008311171561076857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506119e7565b005b610808600480360360408110156107d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a29565b6040518082815260200191505060405180910390f35b6108e16004803603604081101561083457600080fd5b810190808035906020019064010000000081111561085157600080fd5b82018360208201111561086357600080fd5b8035906020019184600183028401116401000000008311171561088557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611ae8565b005b6109af600480360360408110156108f957600080fd5b810190808035906020019064010000000081111561091657600080fd5b82018360208201111561092857600080fd5b8035906020019184602083028401116401000000008311171561094a57600080fd5b90919293919293908035906020019064010000000081111561096b57600080fd5b82018360208201111561097d57600080fd5b8035906020019184602083028401116401000000008311171561099f57600080fd5b9091929391929390505050611db8565b005b610a1d600480360360608110156109c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611eeb565b005b610a6d60048036036040811015610a3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611f0b565b005b610a9b60048036036020811015610a8557600080fd5b810190808035906020019092919050505061219b565b6040518082815260200191505060405180910390f35b610b6a60048036036020811015610ac757600080fd5b8101908080359060200190640100000000811115610ae457600080fd5b820183602082011115610af657600080fd5b80359060200191846001830284011164010000000083111715610b1857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061221b565b005b610c0360048036036040811015610b8257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610bbf57600080fd5b820183602082011115610bd157600080fd5b80359060200191846001830284011164010000000083111715610bf357600080fd5b90919293919293905050506123d6565b005b610c3160048036036020811015610c1b57600080fd5b81019080803590602001909291905050506124cb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c7b612593565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cbb578082015181840152602081019050610ca0565b50505050905090810190601f168015610ce85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d3860048036036020811015610d0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612631565b6040518082815260200191505060405180910390f35b610d56612706565b005b610e1160048036036020811015610d6e57600080fd5b8101908080359060200190640100000000811115610d8b57600080fd5b820183602082011115610d9d57600080fd5b80359060200191846001830284011164010000000083111715610dbf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061283f565b6040518082815260200191505060405180910390f35b610e2f6128ba565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610e796128e3565b604051808215151515815260200191505060405180910390f35b610e9b61293a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610edb578082015181840152602081019050610ec0565b50505050905090810190601f168015610f085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610f6460048036036040811015610f2c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506129dc565b005b610f6e612b7f565b604051808215151515815260200191505060405180910390f35b610fb460048036036020811015610f9e57600080fd5b8101908080359060200190929190505050612b92565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ff4578082015181840152602081019050610fd9565b50505050905090810190601f1680156110215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6111326004803603608081101561104557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156110ac57600080fd5b8201836020820111156110be57600080fd5b803590602001918460018302840111640100000000831117156110e057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612c4b565b005b6111606004803603602081101561114a57600080fd5b8101908080359060200190929190505050612cbd565b6040518082815260200191505060405180910390f35b6111a26004803603602081101561118c57600080fd5b8101908080359060200190929190505050612cd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156111e25780820151818401526020810190506111c7565b50505050905090810190601f16801561120f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61125f6004803603602081101561123357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e1d565b604051808215151515815260200191505060405180910390f35b611281612e3d565b6040518082815260200191505060405180910390f35b6112c3600480360360208110156112ad57600080fd5b8101908080359060200190929190505050612e4a565b6040518082815260200191505060405180910390f35b61133b600480360360408110156112ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e62565b604051808215151515815260200191505060405180910390f35b6113976004803603602081101561136b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ef6565b005b611450600480360360608110156113af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561140c57600080fd5b82018360208201111561141e57600080fd5b8035906020019184602083028401116401000000008311171561144057600080fd5b9091929391929390505050612f7c565b005b61145a612fbe565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6114df838383604051806020016040528060008152506119e7565b505050565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561157c5780601f106115515761010080835404028352916020019161157c565b820191906000526020600020905b81548152906001019060200180831161155f57829003601f168201915b5050505050905090565b6000611591826130e7565b6115e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061483a602c913960400191505060405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061162c826124cb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148b26021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116f357506116f28133612e62565b5b611748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806147af6038913960400191505060405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614653602a913960400191505060405180910390fd5b8181905084849050146118fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061462d6026913960400191505060405180910390fd5b60008090505b828290508110156119645761195785858381811061191a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1661195285858581811061194657fe5b90506020020135613159565b6132ec565b8080600101915050611900565b5050505050565b6000600880549050905090565b61198233826134a4565b6119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806148d36031913960400191505060405180910390fd5b6119e2838383613598565b505050565b60008090505b8251811015611a2257611a158585858481518110611a0757fe5b602002602001015185612c4b565b80806001019150506119ed565b5050505050565b6000611a3483612631565b8210611a8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806146a0602b913960400191505060405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110611ad557fe5b9060005260206000200154905092915050565b611af06128e3565b611b62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601360009054906101000a900460ff1615611be5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54686520636f6c6c656374696f6e20697320636f6d706c65746500000000000081525060200191505060405180910390fd5b6000611bf08361283f565b90506000600d60008381526020019081526020016000205414611c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061488f6023913960400191505060405180910390fd5b60008211611cb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806149306025913960400191505060405180910390fd5b81600d6000838152602001908152602001600020819055506011839080600181540180825580915050906001820390600052602060002001600090919290919091509080519060200190611d0c92919061455b565b5050807fd66ffba7549a71baea1f584e21468a80de63cd42daffe0e665e23f22d655200d84846040518080602001838152602001828103825284818151815260200191508051906020019080838360005b83811015611d78578082015181840152602081019050611d5d565b50505050905090810190601f168015611da55780820380516001836020036101000a031916815260200191505b50935050505060405180910390a2505050565b611dc06128e3565b611e32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b818190508484905014611e90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061462d6026913960400191505060405180910390fd5b60008090505b84849050811015611ee457611ed7611ebf868684818110611eb357fe5b90506020020135613159565b848484818110611ecb57fe5b90506020020135611ae8565b8080600101915050611e96565b5050505050565b611f0683838360405180602001604052806000815250612c4b565b505050565b611f136128e3565b611f85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f596f752073686f756c6420736574206120646966666572656e742076616c756581525060200191505060405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f64966f3fe2ac8cae5e6f7e4196d1315efafdb78a4377de3887c56fa3b9ac47cb82604051808215151515815260200191505060405180910390a25050565b60006121a561196b565b82106121fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614904602c913960400191505060405180910390fd5b6008828154811061220957fe5b90600052602060002001549050919050565b6122236128e3565b612295576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7fb8fdf10126d507f6daf46465ec25a2bbc08449cf6c944c98219264161391040a6012826040518080602001806020018381038352858181546001816001161561010002031660029004815260200191508054600181600116156101000203166002900480156123465780601f1061231b57610100808354040283529160200191612346565b820191906000526020600020905b81548152906001019060200180831161232957829003601f168201915b5050838103825284818151815260200191508051906020019080838360005b83811015612380578082015181840152602081019050612365565b50505050905090810190601f1680156123ad5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a180601290805190602001906123d292919061455b565b5050565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614653602a913960400191505060405180910390fd5b6124c68383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506132ec565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561258a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806148116029913960400191505060405180910390fd5b80915050919050565b60128054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126295780601f106125fe57610100808354040283529160200191612629565b820191906000526020600020905b81548152906001019060200180831161260c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806147e7602a913960400191505060405180910390fd5b6126ff600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206135bc565b9050919050565b61270e6128e3565b612780576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000816040516020018082805190602001908083835b602083106128785780518252602082019150602081019050602083039250612855565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052805190602001209050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129d25780601f106129a7576101008083540402835291602001916129d2565b820191906000526020600020905b8154815290600101906020018083116129b557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b601360009054906101000a900460ff1681565b60118181548110612b9f57fe5b906000526020600020016000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c435780601f10612c1857610100808354040283529160200191612c43565b820191906000526020600020905b815481529060010190602001808311612c2657829003601f168201915b505050505081565b612c56848484611978565b612c62848484846135ca565b612cb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146cb6032913960400191505060405180910390fd5b50505050565b600e6020528060005260406000206000915090505481565b6060612ce0826130e7565b612d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180614747603c913960400191505060405180910390fd5b6012600f60008481526020019081526020016000206040516020018083805460018160011615610100020316600290048015612da85780601f10612d86576101008083540402835291820191612da8565b820191906000526020600020905b815481529060010190602001808311612d94575b505082805460018160011615610100020316600290048015612e015780601f10612ddf576101008083540402835291820191612e01565b820191906000526020600020905b815481529060010190602001808311612ded575b5050925050506040516020818303038152906040529050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000601180549050905090565b600d6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612efe6128e3565b612f70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612f79816137b3565b50565b60008090505b82829050811015612fb757612faa8585858585818110612f9e57fe5b90506020020135611978565b8080600101915050612f82565b5050505050565b612fc66128e3565b613038576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601360009054906101000a900460ff161561309e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061467d6023913960400191505060405180910390fd5b6001601360006101000a81548160ff0219169083151502179055507f01b7dcb42d49142a99e4c98da755263c600213a33b780986779405b9823501d360405160405180910390a1565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b60608060206040519080825280601f01601f1916602001820160405280156131905781602001600182028038833980820191505090505b509050600080905060008090505b602081101561323a5760008160080260020a8660001c0260001b9050600060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461322c57808484815181106131f457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082806001019350505b50808060010191505061319e565b506060816040519080825280601f01601f1916602001820160405280156132705781602001600182028038833980820191505090505b50905060008090505b828110156132e05783818151811061328d57fe5b602001015160f81c60f81b8282815181106132a457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613279565b50809350505050919050565b60006132f78261283f565b905060006001600e60008481526020019081526020016000205401905060003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561335c57600080fd5b505afa158015613370573d6000803e3d6000fd5b505050506040513d602081101561338657600080fd5b810190808051906020019092919050505090506133a685828587866138f7565b61349d81856133b485613b23565b6040516020018083805190602001908083835b602083106133ea57805182526020820191506020810190506020830392506133c7565b6001836020036101000a038019825116818451168082178552505050505050905001807f2f0000000000000000000000000000000000000000000000000000000000000081525060010182805190602001908083835b602083106134635780518252602082019150602081019050602083039250613440565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052613c57565b5050505050565b60006134af826130e7565b613504576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614783602c913960400191505060405180910390fd5b600061350f836124cb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061357e57508373ffffffffffffffffffffffffffffffffffffffff1661356684611586565b73ffffffffffffffffffffffffffffffffffffffff16145b8061358f575061358e8185612e62565b5b91505092915050565b6135a3838383613c83565b6135ad8382613ede565b6135b7828261407c565b505050565b600081600001549050919050565b60006135eb8473ffffffffffffffffffffffffffffffffffffffff16614143565b6135f857600190506137ab565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156136d35780820151818401526020810190506136b8565b50505050905090810190601f1680156137005780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561372257600080fd5b505af1158015613736573d6000803e3d6000fd5b505050506040513d602081101561374c57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806146fd6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008111801561391a5750600d6000848152602001908152602001600020548111155b61398c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f496e76616c69642069737375656420696400000000000000000000000000000081525060200191505060405180910390fd5b600d600084815260200190815260200160002054600e60008581526020019081526020016000205410613a27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4f7074696f6e206578686175737465640000000000000000000000000000000081525060200191505060405180910390fd5b613a318585614156565b6001600e60008581526020019081526020016000205401600e60008581526020019081526020016000208190555082848673ffffffffffffffffffffffffffffffffffffffff167fdb78fb3a605c85b40cf64f4ddff503d984ed442e5ae01282bd60137db494f80b85856040518080602001838152602001828103825284818151815260200191508051906020019080838360005b83811015613ae1578082015181840152602081019050613ac6565b50505050905090810190601f168015613b0e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a45050505050565b606060008290506000811415613b71576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250915050613c52565b600081905060005b60008214613b9b578080600101915050600a8281613b9357fe5b049150613b79565b6060816040519080825280601f01601f191660200182016040528015613bd05781602001600182028038833980820191505090505b50905060006001830390505b60008514613c4957600a8581613bee57fe5b0660300160f81b82828060019003935081518110613c0857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8581613c4157fe5b049450613bdc565b81955050505050505b919050565b80600f60008481526020019081526020016000209080519060200190613c7e92919061455b565b505050565b8273ffffffffffffffffffffffffffffffffffffffff16613ca3826124cb565b73ffffffffffffffffffffffffffffffffffffffff1614613d0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806148666029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806147236024913960400191505060405180910390fd5b613d9e81614177565b613de5600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614235565b613e2c600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614258565b816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613f366001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061426e90919063ffffffff16565b9050600060076000848152602001908152602001600020549050818114614023576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613fa357fe5b9060005260206000200154905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613ffb57fe5b9060005260206000200181905550816007600083815260200190815260200160002081905550505b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548091906001900361407591906145db565b5050505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506007600083815260200190815260200160002081905550600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600080823b905060008111915050919050565b61416082826142f7565b61416a828261407c565b6141738161450f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146142325760006003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b61424d6001826000015461426e90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b6000828211156142e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561439a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6143a3816130e7565b15614416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506144af600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614258565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061459c57805160ff19168380011785556145ca565b828001600101855582156145ca579182015b828111156145c95782518255916020019190600101906145ae565b5b5090506145d79190614607565b5090565b815481835581811115614602578183600052602060002091820191016146019190614607565b5b505050565b61462991905b8082111561462557600081600090555060010161460d565b5090565b9056fe506172616d65746572732073686f756c642068617665207468652073616d65206c656e6774684f6e6c7920616e2060616c6c6f7765646020616464726573732063616e20697373756520746f6b656e7354686520636f6c6c656374696f6e20697320616c726561647920636f6d706c65746564455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732314d657461646174613a20726563656976656420612055524920717565727920666f722061206e6f6e6578697374656e7420746f6b656e4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e43616e206e6f74206d6f6469667920616e206578697374696e67207765617261626c654552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734d61782069737375616e63652073686f756c642062652067726561746572207468616e2030a265627a7a723158202ccf5df38165e5c2d0f749f4e6e3423aefc02a0245989853c27ef381bf05e19264736f6c634300050b0032000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000093a7c46443901c2ea2fc1263a4d076f470695d3a0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001b64636c3a2f2f62696e616e63655f75735f636f6c6c656374696f6e0000000000000000000000000000000000000000000000000000000000000000000000000e44434c424e4e4353434c4c43544e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006f68747470733a2f2f7765617261626c652d6170692e646563656e7472616c616e642e6f72672f76322f7374616e64617264732f6572633732312d6d657461646174612f636f6c6c656374696f6e732f62696e616e63655f75735f636f6c6c656374696f6e2f7765617261626c65732f0000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063b88d4fde116100b8578063e181ff331161007c578063e181ff3314611297578063e985e9c5146112d9578063f2fde38b14611355578063f3993d1114611399578063f59d9e3f1461145257610232565b8063b88d4fde1461102f578063c59a138b14611134578063c87b56dd14611176578063d63a8e111461121d578063d8b416471461127957610232565b80638f32d59b116100ff5780638f32d59b14610e7157806395d89b4114610e93578063a22cb46514610f16578063b2fa1c9e14610f66578063b416cfd714610f8857610232565b806370a0823114610cf6578063715018a614610d4e578063823bfc3f14610d585780638da5cb5b14610e2757610232565b80632f745c59116101be5780634f6ccce7116101825780634f6ccce714610a6f57806355f804b314610ab15780635669c94f14610b6c5780636352211e14610c055780636c0360eb14610c7357610232565b80632f745c59146107bc5780633fb1d1cf1461081e57806340bd647e146108e357806342842e0e146109b15780634697f05d14610a1f57610232565b8063095ea7b311610205578063095ea7b314610485578063105f7b7c146104d357806318160ddd146105a157806323b872dd146105bf57806328cfbd461461062d57610232565b806301ffc9a714610237578063034601ec1461029c57806306fdde0314610394578063081812fc14610417575b600080fd5b6102826004803603602081101561024d57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061145c565b604051808215151515815260200191505060405180910390f35b610392600480360360608110156102b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561030f57600080fd5b82018360208201111561032157600080fd5b8035906020019184602083028401116401000000008311171561034357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506114c4565b005b61039c6114e4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103dc5780820151818401526020810190506103c1565b50505050905090810190601f1680156104095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104436004803603602081101561042d57600080fd5b8101908080359060200190929190505050611586565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104d16004803603604081101561049b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611621565b005b61059f600480360360408110156104e957600080fd5b810190808035906020019064010000000081111561050657600080fd5b82018360208201111561051857600080fd5b8035906020019184602083028401116401000000008311171561053a57600080fd5b90919293919293908035906020019064010000000081111561055b57600080fd5b82018360208201111561056d57600080fd5b8035906020019184602083028401116401000000008311171561058f57600080fd5b90919293919293905050506117fa565b005b6105a961196b565b6040518082815260200191505060405180910390f35b61062b600480360360608110156105d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611978565b005b6107ba6004803603608081101561064357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156106a057600080fd5b8201836020820111156106b257600080fd5b803590602001918460208302840111640100000000831117156106d457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561073457600080fd5b82018360208201111561074657600080fd5b8035906020019184600183028401116401000000008311171561076857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506119e7565b005b610808600480360360408110156107d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a29565b6040518082815260200191505060405180910390f35b6108e16004803603604081101561083457600080fd5b810190808035906020019064010000000081111561085157600080fd5b82018360208201111561086357600080fd5b8035906020019184600183028401116401000000008311171561088557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050611ae8565b005b6109af600480360360408110156108f957600080fd5b810190808035906020019064010000000081111561091657600080fd5b82018360208201111561092857600080fd5b8035906020019184602083028401116401000000008311171561094a57600080fd5b90919293919293908035906020019064010000000081111561096b57600080fd5b82018360208201111561097d57600080fd5b8035906020019184602083028401116401000000008311171561099f57600080fd5b9091929391929390505050611db8565b005b610a1d600480360360608110156109c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611eeb565b005b610a6d60048036036040811015610a3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611f0b565b005b610a9b60048036036020811015610a8557600080fd5b810190808035906020019092919050505061219b565b6040518082815260200191505060405180910390f35b610b6a60048036036020811015610ac757600080fd5b8101908080359060200190640100000000811115610ae457600080fd5b820183602082011115610af657600080fd5b80359060200191846001830284011164010000000083111715610b1857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061221b565b005b610c0360048036036040811015610b8257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610bbf57600080fd5b820183602082011115610bd157600080fd5b80359060200191846001830284011164010000000083111715610bf357600080fd5b90919293919293905050506123d6565b005b610c3160048036036020811015610c1b57600080fd5b81019080803590602001909291905050506124cb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c7b612593565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cbb578082015181840152602081019050610ca0565b50505050905090810190601f168015610ce85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d3860048036036020811015610d0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612631565b6040518082815260200191505060405180910390f35b610d56612706565b005b610e1160048036036020811015610d6e57600080fd5b8101908080359060200190640100000000811115610d8b57600080fd5b820183602082011115610d9d57600080fd5b80359060200191846001830284011164010000000083111715610dbf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061283f565b6040518082815260200191505060405180910390f35b610e2f6128ba565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610e796128e3565b604051808215151515815260200191505060405180910390f35b610e9b61293a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610edb578082015181840152602081019050610ec0565b50505050905090810190601f168015610f085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610f6460048036036040811015610f2c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506129dc565b005b610f6e612b7f565b604051808215151515815260200191505060405180910390f35b610fb460048036036020811015610f9e57600080fd5b8101908080359060200190929190505050612b92565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ff4578082015181840152602081019050610fd9565b50505050905090810190601f1680156110215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6111326004803603608081101561104557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156110ac57600080fd5b8201836020820111156110be57600080fd5b803590602001918460018302840111640100000000831117156110e057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612c4b565b005b6111606004803603602081101561114a57600080fd5b8101908080359060200190929190505050612cbd565b6040518082815260200191505060405180910390f35b6111a26004803603602081101561118c57600080fd5b8101908080359060200190929190505050612cd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156111e25780820151818401526020810190506111c7565b50505050905090810190601f16801561120f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61125f6004803603602081101561123357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e1d565b604051808215151515815260200191505060405180910390f35b611281612e3d565b6040518082815260200191505060405180910390f35b6112c3600480360360208110156112ad57600080fd5b8101908080359060200190929190505050612e4a565b6040518082815260200191505060405180910390f35b61133b600480360360408110156112ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e62565b604051808215151515815260200191505060405180910390f35b6113976004803603602081101561136b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ef6565b005b611450600480360360608110156113af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561140c57600080fd5b82018360208201111561141e57600080fd5b8035906020019184602083028401116401000000008311171561144057600080fd5b9091929391929390505050612f7c565b005b61145a612fbe565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6114df838383604051806020016040528060008152506119e7565b505050565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561157c5780601f106115515761010080835404028352916020019161157c565b820191906000526020600020905b81548152906001019060200180831161155f57829003601f168201915b5050505050905090565b6000611591826130e7565b6115e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061483a602c913960400191505060405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061162c826124cb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148b26021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116f357506116f28133612e62565b5b611748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806147af6038913960400191505060405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614653602a913960400191505060405180910390fd5b8181905084849050146118fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061462d6026913960400191505060405180910390fd5b60008090505b828290508110156119645761195785858381811061191a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1661195285858581811061194657fe5b90506020020135613159565b6132ec565b8080600101915050611900565b5050505050565b6000600880549050905090565b61198233826134a4565b6119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806148d36031913960400191505060405180910390fd5b6119e2838383613598565b505050565b60008090505b8251811015611a2257611a158585858481518110611a0757fe5b602002602001015185612c4b565b80806001019150506119ed565b5050505050565b6000611a3483612631565b8210611a8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806146a0602b913960400191505060405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110611ad557fe5b9060005260206000200154905092915050565b611af06128e3565b611b62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601360009054906101000a900460ff1615611be5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54686520636f6c6c656374696f6e20697320636f6d706c65746500000000000081525060200191505060405180910390fd5b6000611bf08361283f565b90506000600d60008381526020019081526020016000205414611c5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061488f6023913960400191505060405180910390fd5b60008211611cb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806149306025913960400191505060405180910390fd5b81600d6000838152602001908152602001600020819055506011839080600181540180825580915050906001820390600052602060002001600090919290919091509080519060200190611d0c92919061455b565b5050807fd66ffba7549a71baea1f584e21468a80de63cd42daffe0e665e23f22d655200d84846040518080602001838152602001828103825284818151815260200191508051906020019080838360005b83811015611d78578082015181840152602081019050611d5d565b50505050905090810190601f168015611da55780820380516001836020036101000a031916815260200191505b50935050505060405180910390a2505050565b611dc06128e3565b611e32576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b818190508484905014611e90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061462d6026913960400191505060405180910390fd5b60008090505b84849050811015611ee457611ed7611ebf868684818110611eb357fe5b90506020020135613159565b848484818110611ecb57fe5b90506020020135611ae8565b8080600101915050611e96565b5050505050565b611f0683838360405180602001604052806000815250612c4b565b505050565b611f136128e3565b611f85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642061646472657373000000000000000000000000000000000081525060200191505060405180910390fd5b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f596f752073686f756c6420736574206120646966666572656e742076616c756581525060200191505060405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f64966f3fe2ac8cae5e6f7e4196d1315efafdb78a4377de3887c56fa3b9ac47cb82604051808215151515815260200191505060405180910390a25050565b60006121a561196b565b82106121fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614904602c913960400191505060405180910390fd5b6008828154811061220957fe5b90600052602060002001549050919050565b6122236128e3565b612295576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7fb8fdf10126d507f6daf46465ec25a2bbc08449cf6c944c98219264161391040a6012826040518080602001806020018381038352858181546001816001161561010002031660029004815260200191508054600181600116156101000203166002900480156123465780601f1061231b57610100808354040283529160200191612346565b820191906000526020600020905b81548152906001019060200180831161232957829003601f168201915b5050838103825284818151815260200191508051906020019080838360005b83811015612380578082015181840152602081019050612365565b50505050905090810190601f1680156123ad5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a180601290805190602001906123d292919061455b565b5050565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614653602a913960400191505060405180910390fd5b6124c68383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506132ec565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561258a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806148116029913960400191505060405180910390fd5b80915050919050565b60128054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126295780601f106125fe57610100808354040283529160200191612629565b820191906000526020600020905b81548152906001019060200180831161260c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806147e7602a913960400191505060405180910390fd5b6126ff600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206135bc565b9050919050565b61270e6128e3565b612780576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000816040516020018082805190602001908083835b602083106128785780518252602082019150602081019050602083039250612855565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052805190602001209050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129d25780601f106129a7576101008083540402835291602001916129d2565b820191906000526020600020905b8154815290600101906020018083116129b557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b601360009054906101000a900460ff1681565b60118181548110612b9f57fe5b906000526020600020016000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c435780601f10612c1857610100808354040283529160200191612c43565b820191906000526020600020905b815481529060010190602001808311612c2657829003601f168201915b505050505081565b612c56848484611978565b612c62848484846135ca565b612cb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806146cb6032913960400191505060405180910390fd5b50505050565b600e6020528060005260406000206000915090505481565b6060612ce0826130e7565b612d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180614747603c913960400191505060405180910390fd5b6012600f60008481526020019081526020016000206040516020018083805460018160011615610100020316600290048015612da85780601f10612d86576101008083540402835291820191612da8565b820191906000526020600020905b815481529060010190602001808311612d94575b505082805460018160011615610100020316600290048015612e015780601f10612ddf576101008083540402835291820191612e01565b820191906000526020600020905b815481529060010190602001808311612ded575b5050925050506040516020818303038152906040529050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000601180549050905090565b600d6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612efe6128e3565b612f70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612f79816137b3565b50565b60008090505b82829050811015612fb757612faa8585858585818110612f9e57fe5b90506020020135611978565b8080600101915050612f82565b5050505050565b612fc66128e3565b613038576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601360009054906101000a900460ff161561309e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061467d6023913960400191505060405180910390fd5b6001601360006101000a81548160ff0219169083151502179055507f01b7dcb42d49142a99e4c98da755263c600213a33b780986779405b9823501d360405160405180910390a1565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b60608060206040519080825280601f01601f1916602001820160405280156131905781602001600182028038833980820191505090505b509050600080905060008090505b602081101561323a5760008160080260020a8660001c0260001b9050600060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461322c57808484815181106131f457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082806001019350505b50808060010191505061319e565b506060816040519080825280601f01601f1916602001820160405280156132705781602001600182028038833980820191505090505b50905060008090505b828110156132e05783818151811061328d57fe5b602001015160f81c60f81b8282815181106132a457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613279565b50809350505050919050565b60006132f78261283f565b905060006001600e60008481526020019081526020016000205401905060003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561335c57600080fd5b505afa158015613370573d6000803e3d6000fd5b505050506040513d602081101561338657600080fd5b810190808051906020019092919050505090506133a685828587866138f7565b61349d81856133b485613b23565b6040516020018083805190602001908083835b602083106133ea57805182526020820191506020810190506020830392506133c7565b6001836020036101000a038019825116818451168082178552505050505050905001807f2f0000000000000000000000000000000000000000000000000000000000000081525060010182805190602001908083835b602083106134635780518252602082019150602081019050602083039250613440565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052613c57565b5050505050565b60006134af826130e7565b613504576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614783602c913960400191505060405180910390fd5b600061350f836124cb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061357e57508373ffffffffffffffffffffffffffffffffffffffff1661356684611586565b73ffffffffffffffffffffffffffffffffffffffff16145b8061358f575061358e8185612e62565b5b91505092915050565b6135a3838383613c83565b6135ad8382613ede565b6135b7828261407c565b505050565b600081600001549050919050565b60006135eb8473ffffffffffffffffffffffffffffffffffffffff16614143565b6135f857600190506137ab565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156136d35780820151818401526020810190506136b8565b50505050905090810190601f1680156137005780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561372257600080fd5b505af1158015613736573d6000803e3d6000fd5b505050506040513d602081101561374c57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806146fd6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008111801561391a5750600d6000848152602001908152602001600020548111155b61398c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f496e76616c69642069737375656420696400000000000000000000000000000081525060200191505060405180910390fd5b600d600084815260200190815260200160002054600e60008581526020019081526020016000205410613a27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4f7074696f6e206578686175737465640000000000000000000000000000000081525060200191505060405180910390fd5b613a318585614156565b6001600e60008581526020019081526020016000205401600e60008581526020019081526020016000208190555082848673ffffffffffffffffffffffffffffffffffffffff167fdb78fb3a605c85b40cf64f4ddff503d984ed442e5ae01282bd60137db494f80b85856040518080602001838152602001828103825284818151815260200191508051906020019080838360005b83811015613ae1578082015181840152602081019050613ac6565b50505050905090810190601f168015613b0e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a45050505050565b606060008290506000811415613b71576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250915050613c52565b600081905060005b60008214613b9b578080600101915050600a8281613b9357fe5b049150613b79565b6060816040519080825280601f01601f191660200182016040528015613bd05781602001600182028038833980820191505090505b50905060006001830390505b60008514613c4957600a8581613bee57fe5b0660300160f81b82828060019003935081518110613c0857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8581613c4157fe5b049450613bdc565b81955050505050505b919050565b80600f60008481526020019081526020016000209080519060200190613c7e92919061455b565b505050565b8273ffffffffffffffffffffffffffffffffffffffff16613ca3826124cb565b73ffffffffffffffffffffffffffffffffffffffff1614613d0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806148666029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806147236024913960400191505060405180910390fd5b613d9e81614177565b613de5600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614235565b613e2c600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614258565b816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613f366001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061426e90919063ffffffff16565b9050600060076000848152602001908152602001600020549050818114614023576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613fa357fe5b9060005260206000200154905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110613ffb57fe5b9060005260206000200181905550816007600083815260200190815260200160002081905550505b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548091906001900361407591906145db565b5050505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506007600083815260200190815260200160002081905550600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600080823b905060008111915050919050565b61416082826142f7565b61416a828261407c565b6141738161450f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146142325760006003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b61424d6001826000015461426e90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b6000828211156142e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561439a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6143a3816130e7565b15614416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506144af600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614258565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061459c57805160ff19168380011785556145ca565b828001600101855582156145ca579182015b828111156145c95782518255916020019190600101906145ae565b5b5090506145d79190614607565b5090565b815481835581811115614602578183600052602060002091820191016146019190614607565b5b505050565b61462991905b8082111561462557600081600090555060010161460d565b5090565b9056fe506172616d65746572732073686f756c642068617665207468652073616d65206c656e6774684f6e6c7920616e2060616c6c6f7765646020616464726573732063616e20697373756520746f6b656e7354686520636f6c6c656374696f6e20697320616c726561647920636f6d706c65746564455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732314d657461646174613a20726563656976656420612055524920717565727920666f722061206e6f6e6578697374656e7420746f6b656e4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e43616e206e6f74206d6f6469667920616e206578697374696e67207765617261626c654552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734d61782069737375616e63652073686f756c642062652067726561746572207468616e2030a265627a7a723158202ccf5df38165e5c2d0f749f4e6e3423aefc02a0245989853c27ef381bf05e19264736f6c634300050b0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000093a7c46443901c2ea2fc1263a4d076f470695d3a0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001b64636c3a2f2f62696e616e63655f75735f636f6c6c656374696f6e0000000000000000000000000000000000000000000000000000000000000000000000000e44434c424e4e4353434c4c43544e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006f68747470733a2f2f7765617261626c652d6170692e646563656e7472616c616e642e6f72672f76322f7374616e64617264732f6572633732312d6d657461646174612f636f6c6c656374696f6e732f62696e616e63655f75735f636f6c6c656374696f6e2f7765617261626c65732f0000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): dcl://binance_us_collection
Arg [1] : _symbol (string): DCLBNNCSCLLCTN
Arg [2] : _operator (address): 0x93A7C46443901c2eA2fc1263a4d076F470695d3A
Arg [3] : _baseURI (string): https://wearable-api.decentraland.org/v2/standards/erc721-metadata/collections/binance_us_collection/wearables/
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000093a7c46443901c2ea2fc1263a4d076f470695d3a
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [5] : 64636c3a2f2f62696e616e63655f75735f636f6c6c656374696f6e0000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 44434c424e4e4353434c4c43544e000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000006f
Arg [9] : 68747470733a2f2f7765617261626c652d6170692e646563656e7472616c616e
Arg [10] : 642e6f72672f76322f7374616e64617264732f6572633732312d6d6574616461
Arg [11] : 74612f636f6c6c656374696f6e732f62696e616e63655f75735f636f6c6c6563
Arg [12] : 74696f6e2f7765617261626c65732f0000000000000000000000000000000000
Deployed Bytecode Sourcemap
50806:3095:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50806:3095:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13860:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13860:135:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48163:161;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48163:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;48163:161:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48163:161:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;48163:161: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;;48163:161:0;;;;;;;;;;;;;;;:::i;:::-;;38248: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;38248:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18806:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18806:204:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18092:421;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18092:421:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51970:377;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51970:377:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51970:377:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51970:377:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;51970:377:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51970:377:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51970:377:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;51970:377:0;;;;;;;;;;;;:::i;:::-;;29902:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20483:290;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20483:290:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49069:255;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;49069:255:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;49069:255:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49069:255:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;49069:255: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;;49069:255:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;49069:255:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49069:255: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;49069:255: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;;49069:255:0;;;;;;;;;;;;;;;:::i;:::-;;29511:232;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29511:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46980:510;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46980:510:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;46980:510:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46980:510: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;46980:510: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;;46980:510:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46296:374;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46296:374:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;46296:374:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46296:374:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;46296:374:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;46296:374:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46296:374:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;46296:374:0;;;;;;;;;;;;:::i;:::-;;21419:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21419:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43977:313;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43977:313:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30344:199;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30344:199:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43650:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43650:140:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;43650:140:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43650:140: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;43650:140: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;;43650:140:0;;;;;;;;;;;;;;;:::i;:::-;;51594:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51594:149:0;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;51594:149:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51594:149: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;51594:149:0;;;;;;;;;;;;:::i;:::-;;17433:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17433:228:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42496:21;;;:::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;42496:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16996:211;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16996:211:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1781:140;;;:::i;:::-;;49490:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49490:147:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;49490:147:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49490:147: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;49490:147: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;;49490:147:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;970:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1336:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38448: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;38448:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19311:248;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19311:248:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42524:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42462:25;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42462:25: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;42462:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22272:268;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;22272:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22272:268:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22272: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;22272: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;;22272:268:0;;;;;;;;;;;;;;;:::i;:::-;;42315:38;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42315:38:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52582:257;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52582:257: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;52582:257:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42414:39;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42414:39:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45566:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42262:46;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42262:46:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19889:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19889:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2076:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2076:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;45241:224;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45241:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45241:224:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45241:224:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;45241:224:0;;;;;;;;;;;;:::i;:::-;;45838:181;;;:::i;:::-;;13860:135;13930:4;13954:20;:33;13975:11;13954:33;;;;;;;;;;;;;;;;;;;;;;;;;;;13947:40;;13860:135;;;:::o;48163:161::-;48268:48;48290:5;48297:3;48302:9;48268:48;;;;;;;;;;;;:21;:48::i;:::-;48163:161;;;:::o;38248:85::-;38287:13;38320:5;38313:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38248:85;:::o;18806:204::-;18865:7;18893:16;18901:7;18893;:16::i;:::-;18885:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18978:15;:24;18994:7;18978:24;;;;;;;;;;;;;;;;;;;;;18971:31;;18806:204;;;:::o;18092:421::-;18156:13;18172:16;18180:7;18172;:16::i;:::-;18156:32;;18213:5;18207:11;;:2;:11;;;;18199:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18291:5;18277:19;;:10;:19;;;:58;;;;18300:35;18317:5;18324:10;18300:16;:35::i;:::-;18277:58;18269:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18459:2;18432:15;:24;18448:7;18432:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18497:7;18493:2;18477:28;;18486:5;18477:28;;;;;;;;;;;;18092:421;;;:::o;51970:377::-;43459:7;:19;43467:10;43459:19;;;;;;;;;;;;;;;;;;;;;;;;;43451:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52124:12;;:19;;52099:14;;:21;;:44;52091:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52203:9;52215:1;52203:13;;52199:141;52222:12;;:19;;52218:1;:23;52199:141;;;52263:65;52275:14;;52290:1;52275:17;;;;;;;;;;;;;;;52294:33;:12;;52307:1;52294:15;;;;;;;;;;;;;:31;:33::i;:::-;52263:11;:65::i;:::-;52243:3;;;;;;;52199:141;;;;51970:377;;;;:::o;29902:96::-;29946:7;29973:10;:17;;;;29966:24;;29902:96;:::o;20483:290::-;20627:39;20646:10;20658:7;20627:18;:39::i;:::-;20619:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20733:32;20747:4;20753:2;20757:7;20733:13;:32::i;:::-;20483:290;;;:::o;49069:255::-;49199:9;49211:1;49199:13;;49194:123;49218:9;:16;49214:1;:20;49194:123;;;49256:49;49273:5;49280:3;49285:9;49295:1;49285:12;;;;;;;;;;;;;;49299:5;49256:16;:49::i;:::-;49236:3;;;;;;;49194:123;;;;49069:255;;;;:::o;29511:232::-;29591:7;29627:16;29637:5;29627:9;:16::i;:::-;29619:5;:24;29611:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29709:12;:19;29722:5;29709:19;;;;;;;;;;;;;;;29729:5;29709:26;;;;;;;;;;;;;;;;29702:33;;29511:232;;;;:::o;46980:510::-;1182:9;:7;:9::i;:::-;1174:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47087:10;;;;;;;;;;;47086:11;47078:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47139:11;47153:27;47168:11;47153:14;:27::i;:::-;47139:41;;47221:1;47201:11;:16;47213:3;47201:16;;;;;;;;;;;;:21;47193:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47296:1;47281:12;:16;47273:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47371:12;47352:11;:16;47364:3;47352:16;;;;;;;;;;;:31;;;;47394:9;47409:11;47394:27;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;47394:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47451:3;47439:43;47456:11;47469:12;47439:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;47439:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1239:1;46980:510;;:::o;46296:374::-;1182:9;:7;:9::i;:::-;1174:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46446:13;;:20;;46423:12;;:19;;:43;46415:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46527:9;46539:1;46527:13;;46522:141;46546:12;;:19;;46542:1;:23;46522:141;;;46587:64;46599:33;:12;;46612:1;46599:15;;;;;;;;;;;;;:31;:33::i;:::-;46634:13;;46648:1;46634:16;;;;;;;;;;;;;46587:11;:64::i;:::-;46567:3;;;;;;;46522:141;;;;46296:374;;;;:::o;21419:134::-;21506:39;21523:4;21529:2;21533:7;21506:39;;;;;;;;;;;;:16;:39::i;:::-;21419:134;;;:::o;43977:313::-;1182:9;:7;:9::i;:::-;1174:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44088:1;44067:23;;:9;:23;;;;44059:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44151:8;44129:30;;:7;:18;44137:9;44129:18;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;44121:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44230:8;44209:7;:18;44217:9;44209:18;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44262:9;44254:28;;;44273:8;44254:28;;;;;;;;;;;;;;;;;;;;;;43977:313;;:::o;30344:199::-;30402:7;30438:13;:11;:13::i;:::-;30430:5;:21;30422:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30518:10;30529:5;30518:17;;;;;;;;;;;;;;;;30511:24;;30344:199;;;:::o;43650:140::-;1182:9;:7;:9::i;:::-;1174:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43727:26;43735:7;43744:8;43727:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;43727:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43774:8;43764:7;:18;;;;;;;;;;;;:::i;:::-;;43650:140;:::o;51594:149::-;43459:7;:19;43467:10;43459:19;;;;;;;;;;;;;;;;;;;;;;;;;43451:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51697:38;51709:12;51723:11;;51697:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;51697:38:0;;;;;;:11;:38::i;:::-;51594:149;;;:::o;17433:228::-;17488:7;17508:13;17524:11;:20;17536:7;17524:20;;;;;;;;;;;;;;;;;;;;;17508:36;;17580:1;17563:19;;:5;:19;;;;17555:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17648:5;17641:12;;;17433:228;;;:::o;42496:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16996:211::-;17051:7;17096:1;17079:19;;:5;:19;;;;17071:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17165:34;:17;:24;17183:5;17165:24;;;;;;;;;;;;;;;:32;:34::i;:::-;17158:41;;16996:211;;;:::o;1781:140::-;1182:9;:7;:9::i;:::-;1174:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1880:1;1843:40;;1864:6;;;;;;;;;;;1843:40;;;;;;;;;;;;1911:1;1894:6;;:19;;;;;;;;;;;;;;;;;;1781:140::o;49490:147::-;49562:7;49616:11;49599:29;;;;;;;;;;;;;;;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;;;49599:29:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;49599:29:0;;;49589:40;;;;;;49582:47;;49490:147;;;:::o;970:79::-;1008:7;1035:6;;;;;;;;;;;1028:13;;970:79;:::o;1336:92::-;1376:4;1414:6;;;;;;;;;;;1400:20;;:10;:20;;;1393:27;;1336:92;:::o;38448:89::-;38489:13;38522:7;38515:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38448:89;:::o;19311:248::-;19397:10;19391:16;;:2;:16;;;;19383:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19487:8;19450:18;:30;19469:10;19450:30;;;;;;;;;;;;;;;:34;19481:2;19450:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;19538:2;19511:40;;19526:10;19511:40;;;19542:8;19511:40;;;;;;;;;;;;;;;;;;;;;;19311:248;;:::o;42524:22::-;;;;;;;;;;;;;:::o;42462:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22272:268::-;22379:31;22392:4;22398:2;22402:7;22379:12;:31::i;:::-;22429:48;22452:4;22458:2;22462:7;22471:5;22429:22;:48::i;:::-;22421:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22272:268;;;;:::o;42315:38::-;;;;;;;;;;;;;;;;;:::o;52582:257::-;52641:13;52675:17;52683:8;52675:7;:17::i;:::-;52667:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52799:7;52808:11;:21;52820:8;52808:21;;;;;;;;;;;52782:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;52782:48:0;;;52768:63;;52582:257;;;:::o;42414:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;45566:100::-;45615:7;45642:9;:16;;;;45635:23;;45566:100;:::o;42262:46::-;;;;;;;;;;;;;;;;;:::o;19889:147::-;19969:4;19993:18;:25;20012:5;19993:25;;;;;;;;;;;;;;;:35;20019:8;19993:35;;;;;;;;;;;;;;;;;;;;;;;;;19986:42;;19889:147;;;;:::o;2076:109::-;1182:9;:7;:9::i;:::-;1174:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2149:28;2168:8;2149:18;:28::i;:::-;2076:109;:::o;45241:224::-;45351:9;45363:1;45351:13;;45346:112;45370:9;;:16;;45366:1;:20;45346:112;;;45408:38;45421:5;45428:3;45433:9;;45443:1;45433:12;;;;;;;;;;;;;45408;:38::i;:::-;45388:3;;;;;;;45346:112;;;;45241:224;;;;:::o;45838:181::-;1182:9;:7;:9::i;:::-;1174:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45907:10;;;;;;;;;;;45906:11;45898:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45981:4;45968:10;;:17;;;;;;;;;;;;;;;;;;46001:10;;;;;;;;;;45838:181::o;22742:155::-;22799:4;22816:13;22832:11;:20;22844:7;22832:20;;;;;;;;;;;;;;;;;;;;;22816:36;;22887:1;22870:19;;:5;:19;;;;22863:26;;;22742:155;;;:::o;40772:624::-;40832:13;40858:24;40895:2;40885:13;;;;;;;;;;;;;;;;;;;;;;;;;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;40885:13:0;;;;40858:40;;40909:14;40926:1;40909:18;;40943:6;40952:1;40943:10;;40938:230;40959:2;40955:1;:6;40938:230;;;40983:9;41029:1;41025;:5;41019:1;:12;41013:2;41008:8;;:23;41000:32;;40983:50;;41060:1;41052:9;;:4;:9;;;;41048:109;;41107:4;41082:11;41094:9;41082:22;;;;;;;;;;;:29;;;;;;;;;;;41130:11;;;;;;;41048:109;40938:230;40963:3;;;;;;;40938:230;;;;41178:31;41222:9;41212:20;;;;;;;;;;;;;;;;;;;;;;;;;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;41212:20:0;;;;41178:54;;41248:6;41257:1;41248:10;;41243:102;41264:9;41260:1;:13;41243:102;;;41319:11;41331:1;41319:14;;;;;;;;;;;;;;;;41295:18;41314:1;41295:21;;;;;;;;;;;:38;;;;;;;;;;;41275:3;;;;;;;41243:102;;;;41369:18;41355:33;;;;;40772:624;;;:::o;53088:438::-;53178:11;53192:27;53207:11;53192:14;:27::i;:::-;53178:41;;53230:16;53263:1;53249:6;:11;53256:3;53249:11;;;;;;;;;;;;:15;53230:34;;53275:15;53293:4;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53293:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53293:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53293:18:0;;;;;;;;;;;;;;;;53275:36;;53324:56;53330:12;53344:7;53353:3;53358:11;53371:8;53324:5;:56::i;:::-;53391:127;53418:7;53464:11;53482:23;:8;:21;:23::i;:::-;53447:59;;;;;;;;;;;;;;;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;;;53447:59:0;;;;;;;;;;;;;;;;;;;;;;;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;;;53447:59:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;53447:59:0;;;53391:12;:127::i;:::-;53088:438;;;;;:::o;23267:333::-;23352:4;23377:16;23385:7;23377;:16::i;:::-;23369:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23453:13;23469:16;23477:7;23469;:16::i;:::-;23453:32;;23515:5;23504:16;;:7;:16;;;:51;;;;23548:7;23524:31;;:20;23536:7;23524:11;:20::i;:::-;:31;;;23504:51;:87;;;;23559:32;23576:5;23583:7;23559:16;:32::i;:::-;23504:87;23496:96;;;23267:333;;;;:::o;30927:245::-;31013:38;31033:4;31039:2;31043:7;31013:19;:38::i;:::-;31064:47;31097:4;31103:7;31064:32;:47::i;:::-;31124:40;31152:2;31156:7;31124:27;:40::i;:::-;30927:245;;;:::o;12539:114::-;12604:7;12631;:14;;;12624:21;;12539:114;;;:::o;26514:356::-;26636:4;26663:15;:2;:13;;;:15::i;:::-;26658:60;;26702:4;26695:11;;;;26658:60;26730:13;26762:2;26746:36;;;26783:10;26795:4;26801:7;26810:5;26746: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;26746:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26746:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26746:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26746:70:0;;;;;;;;;;;;;;;;26730:86;;15198:10;26845:16;;26835:26;;;:6;:26;;;;26827:35;;;26514:356;;;;;;;:::o;2291:229::-;2385:1;2365:22;;:8;:22;;;;2357:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2475:8;2446:38;;2467:6;;;;;;;;;;;2446:38;;;;;;;;;;;;2504:8;2495:6;;:17;;;;;;;;;;;;;;;;;;2291:229;:::o;49999:723::-;50257:1;50245:9;:13;:57;;;;;50275:11;:27;50287:14;50275:27;;;;;;;;;;;;50262:9;:40;;50245:57;50223:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50391:11;:27;50403:14;50391:27;;;;;;;;;;;;50366:6;:22;50373:14;50366:22;;;;;;;;;;;;:52;50358:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50482:35;50494:12;50508:8;50482:11;:35::i;:::-;50610:1;50585:6;:22;50592:14;50585:22;;;;;;;;;;;;:26;50560:6;:22;50567:14;50560:22;;;;;;;;;;;:51;;;;50675:14;50665:8;50651:12;50645:69;;;50691:11;50704:9;50645:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;50645:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49999:723;;;;;:::o;41545:505::-;41599:27;41639:6;41648:2;41639:11;;41672:1;41667;:6;41663:49;;;41690:10;;;;;;;;;;;;;;;;;;;;;;41663:49;41722:6;41731:1;41722:10;;41743:8;41762:69;41774:1;41769;:6;41762:69;;41792:5;;;;;;;41817:2;41812:7;;;;;;;;;41762:69;;;41841:17;41871:3;41861: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;41861:14:0;;;;41841:34;;41886:6;41901:1;41895:3;:7;41886:16;;41913:100;41925:1;41920;:6;41913:100;;41975:2;41971:1;:6;;;;;;41966:2;:11;41955:24;;41943:4;41948:3;;;;;;;41943:9;;;;;;;;;;;:36;;;;;;;;;;;41999:2;41994:7;;;;;;;;;41913:100;;;42037:4;42023:19;;;;;;;41545:505;;;;:::o;53782:116::-;53886:4;53862:11;:21;53874:8;53862:21;;;;;;;;;;;:28;;;;;;;;;;;;:::i;:::-;;53782:116;;:::o;25469:459::-;25583:4;25563:24;;:16;25571:7;25563;:16::i;:::-;:24;;;25555:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25666:1;25652:16;;:2;:16;;;;25644:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25722:23;25737:7;25722:14;:23::i;:::-;25758:35;:17;:23;25776:4;25758:23;;;;;;;;;;;;;;;:33;:35::i;:::-;25804:33;:17;:21;25822:2;25804:21;;;;;;;;;;;;;;;:31;:33::i;:::-;25873:2;25850:11;:20;25862:7;25850:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;25912:7;25908:2;25893:27;;25902:4;25893:27;;;;;;;;;;;;25469:459;;;:::o;34110:1148::-;34376:22;34401:32;34431:1;34401:12;:18;34414:4;34401:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;34376:57;;34444:18;34465:17;:26;34483:7;34465:26;;;;;;;;;;;;34444:47;;34612:14;34598:10;:28;34594:328;;34643:19;34665:12;:18;34678:4;34665:18;;;;;;;;;;;;;;;34684:14;34665:34;;;;;;;;;;;;;;;;34643:56;;34749:11;34716:12;:18;34729:4;34716:18;;;;;;;;;;;;;;;34735:10;34716:30;;;;;;;;;;;;;;;:44;;;;34866:10;34833:17;:30;34851:11;34833:30;;;;;;;;;;;:43;;;;34594:328;;35011:12;:18;35024:4;35011:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;34110:1148;;;;:::o;32934:186::-;33048:12;:16;33061:2;33048:16;;;;;;;;;;;;;;;:23;;;;33019:17;:26;33037:7;33019:26;;;;;;;;;;;:52;;;;33082:12;:16;33095:2;33082:16;;;;;;;;;;;;;;;33104:7;33082:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;33082:30:0;;;;;;;;;;;;;;;;;;;;;;32934:186;;:::o;10998:422::-;11058:4;11266:12;11377:7;11365:20;11357:28;;11411:1;11404:4;:8;11397:15;;;10998:422;;;:::o;31437:202::-;31501:24;31513:2;31517:7;31501:11;:24::i;:::-;31538:40;31566:2;31570:7;31538:27;:40::i;:::-;31591;31623:7;31591:31;:40::i;:::-;31437:202;;:::o;27038:175::-;27138:1;27102:38;;:15;:24;27118:7;27102:24;;;;;;;;;;;;;;;;;;;;;:38;;;27098:108;;27192:1;27157:15;:24;27173:7;27157:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;27098:108;27038:175;:::o;12760:110::-;12841:21;12860:1;12841:7;:14;;;:18;;:21;;;;:::i;:::-;12824:7;:14;;:38;;;;12760:110;:::o;12661:91::-;12743:1;12725:7;:14;;;:19;;;;;;;;;;;12661:91;:::o;8063:184::-;8121:7;8154:1;8149;:6;;8141:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8201:9;8217:1;8213;:5;8201:17;;8238:1;8231:8;;;8063:184;;;;:::o;23853:335::-;23939:1;23925:16;;:2;:16;;;;23917:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23998:16;24006:7;23998;:16::i;:::-;23997:17;23989:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24083:2;24060:11;:20;24072:7;24060:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;24096:33;:17;:21;24114:2;24096:21;;;;;;;;;;;;;;;:31;:33::i;:::-;24172:7;24168:2;24147:33;;24164:1;24147:33;;;;;;;;;;;;23853:335;;:::o;33321:164::-;33425:10;:17;;;;33398:15;:24;33414:7;33398:24;;;;;;;;;;;:44;;;;33453:10;33469:7;33453:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;33453:24:0;;;;;;;;;;;;;;;;;;;;;;33321:164;:::o;50806:3095::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://2ccf5df38165e5c2d0f749f4e6e3423aefc02a0245989853c27ef381bf05e192
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.