ERC-721
Overview
Max Total Supply
1,513 The Wanderings NFT
Holders
256
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
13 The Wanderings NFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheWanderings
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-15 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.11; // /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // library Address { function isContract(address account) internal view returns (bool) { uint size; assembly { size := extcodesize(account) } return size > 0; } } // abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; // Mapping from token ID to owner address address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ) ++count; } return count; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public { for (uint256 i = 0; i < _tokenIds.length; i++) { transferFrom(_from, _to, _tokenIds[i]); } } function batchSafeTransferFrom(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 Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _owners.push(to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } } // /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } } // /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } } // contract OwnableDelegateProxy { } // contract OpenSeaProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } // contract TheWanderings is ERC721Enumerable, Ownable, Pausable { using SafeMath for uint256; using MerkleProof for bytes32[]; bytes32 merkleRoot; bool merkleSet = false; uint256 public constant MAX_PER_CALL = 26; // max supply is 4444, 4445 is used so we can use < instead of LTE, saving a tiny bit of gas when minting uint256 public constant MAX_SUPPLY = 4445; uint256 public NFT_PRICE = 0.01e18; string public baseURI; bool public presaleOngoing; address public proxyRegistryAddress; mapping(address => bool) public projectProxy; mapping(address => uint256) public presaleMintedAmounts; constructor(address openSeaProxy) ERC721("The Wanderings NFT - Ascension ", "The Wanderings NFT") { proxyRegistryAddress = openSeaProxy; _pause(); } receive() external payable {} function _mint(address to, uint256 tokenId) internal override virtual { _owners.push(to); emit Transfer(address(0), to, tokenId); } function mint(uint256 amount) external payable whenNotPaused { require(amount < MAX_PER_CALL, "Amount exceeds max per tx"); uint256 ogAmount = _owners.length; require(ogAmount + amount < MAX_SUPPLY, "Amount exceeds max supply"); require(msg.value == NFT_PRICE * amount, "Wrong eth amount"); for (uint256 i = 0; i < amount; i++) { _mint(msg.sender, ogAmount + i); } } function mintPresale(uint256 amount, bytes32[] memory merkleProof) external payable whenPaused { require(presaleOngoing, "Presale hasn't started yet"); uint256 ogAmount = _owners.length; require(ogAmount + amount < MAX_SUPPLY, "Amount exceeds max supply"); require(presaleMintedAmounts[msg.sender] < 1, "Already used allowance"); // Verify merkleProof require(merkleProof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender, amount))), "Invalid proof. Not whitelisted"); for (uint256 i = 0; i < amount; i++) { _mint(msg.sender, ogAmount + i); } presaleMintedAmounts[msg.sender] += amount; } function mintOwner(uint256 amount) external onlyOwner { uint256 ogAmount = _owners.length; require(_owners.length + amount < MAX_SUPPLY, "Amount exceeds max supply"); for (uint256 i = 0; i < amount; i++) { _mint(msg.sender, ogAmount + i); } } function startPresale() external onlyOwner { presaleOngoing = true; } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setNftPrice(uint256 _nftPrice) external onlyOwner { NFT_PRICE = _nftPrice; } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } // Specify a merkle root hash from the gathered k/v dictionary of addresses // https://github.com/0xKiwi/go-merkle-distributor function setMerkleRoot(bytes32 root) external onlyOwner { merkleRoot = root; merkleSet = true; } // Return bool on if merkle root hash is set function isMerkleSet() public view returns (bool) { return merkleSet; } function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner { proxyRegistryAddress = _proxyRegistryAddress; } function flipProxyState(address proxyAddress) public onlyOwner { projectProxy[proxyAddress] = !projectProxy[proxyAddress]; } function isApprovedForAll(address _owner, address operator) public view override returns (bool) { OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true; return super.isApprovedForAll(_owner, operator); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return string(abi.encodePacked(baseURI, Strings.toString(_tokenId))); } // Returns a list of tokens owned by address // WARNING: VIEW ONLY, DO NOT USE THIS IN A TRANSACTION UNLESS YOU CAN AFFORD TO SPEND A LAMBO IN GAS function tokensOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) return new uint256[](0); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"openSeaProxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_PER_CALL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMerkleSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMintedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOngoing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPrice","type":"uint256"}],"name":"setNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600760006101000a81548160ff021916908315150217905550662386f26fc100006008553480156200003757600080fd5b506040516200540a3803806200540a83398181016040528101906200005d919062000447565b6040518060400160405280601f81526020017f5468652057616e646572696e6773204e4654202d20417363656e73696f6e20008152506040518060400160405280601281526020017f5468652057616e646572696e6773204e465400000000000000000000000000008152508160009080519060200190620000e19291906200032d565b508060019080519060200190620000fa9291906200032d565b5050506200011d620001116200019060201b60201c565b6200019860201b60201c565b6000600560146101000a81548160ff02191690831515021790555080600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001896200025e60201b60201c565b506200058f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200026e6200031660201b60201c565b15620002b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a890620004da565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002fd6200019060201b60201c565b6040516200030c91906200050d565b60405180910390a1565b6000600560149054906101000a900460ff16905090565b8280546200033b9062000559565b90600052602060002090601f0160209004810192826200035f5760008555620003ab565b82601f106200037a57805160ff1916838001178555620003ab565b82800160010185558215620003ab579182015b82811115620003aa5782518255916020019190600101906200038d565b5b509050620003ba9190620003be565b5090565b5b80821115620003d9576000816000905550600101620003bf565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200040f82620003e2565b9050919050565b620004218162000402565b81146200042d57600080fd5b50565b600081519050620004418162000416565b92915050565b60006020828403121562000460576200045f620003dd565b5b6000620004708482850162000430565b91505092915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620004c260108362000479565b9150620004cf826200048a565b602082019050919050565b60006020820190508181036000830152620004f581620004b3565b9050919050565b620005078162000402565b82525050565b6000602082019050620005246000830184620004fc565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057257607f821691505b602082108114156200058957620005886200052a565b5b50919050565b614e6b806200059f6000396000f3fe60806040526004361061026b5760003560e01c80636c0360eb11610144578063b1936c24116100b6578063d26ea6c01161007a578063d26ea6c0146108f7578063e985e9c514610920578063ea156a9b1461095d578063f2fde38b14610988578063f3993d11146109b1578063f73c814b146109da57610272565b8063b1936c2414610810578063b2e778bc1461083b578063b88d4fde14610866578063c87b56dd1461088f578063cd7c0326146108cc57610272565b80638456cb59116101085780638456cb59146107215780638462151c146107385780638da5cb5b1461077557806395d89b41146107a0578063a0712d68146107cb578063a22cb465146107e757610272565b80636c0360eb1461065057806370a082311461067b578063715018a6146106b85780637cb64759146106cf5780637d9a7a4c146106f857610272565b80633ccfd60b116101dd5780635a4fee30116101a15780635a4fee301461051a5780635bab26e2146105435780635c477073146105805780635c975abb146105bd5780636352211e146105e8578063676dd5631461062557610272565b80633ccfd60b1461045d5780633f4ba83a1461047457806342842e0e1461048b5780634f6ccce7146104b457806355f804b3146104f157610272565b80630c0a6b5e1161022f5780630c0a6b5e1461035c57806318160ddd1461037857806323b872dd146103a35780632f745c59146103cc57806332cb6b0c1461040957806333f88d221461043457610272565b806301ffc9a71461027757806304c98b2b146102b457806306fdde03146102cb578063081812fc146102f6578063095ea7b31461033357610272565b3661027257005b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061320d565b610a03565b6040516102ab9190613255565b60405180910390f35b3480156102c057600080fd5b506102c9610a7d565b005b3480156102d757600080fd5b506102e0610b16565b6040516102ed9190613309565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613361565b610ba8565b60405161032a91906133cf565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190613416565b610c2d565b005b610376600480360381019061037191906135d4565b610d45565b005b34801561038457600080fd5b5061038d610fc3565b60405161039a919061363f565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c5919061365a565b610fd0565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613416565b611030565b604051610400919061363f565b60405180910390f35b34801561041557600080fd5b5061041e611175565b60405161042b919061363f565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613361565b61117b565b005b34801561046957600080fd5b5061047261128d565b005b34801561048057600080fd5b50610489611352565b005b34801561049757600080fd5b506104b260048036038101906104ad919061365a565b6113d8565b005b3480156104c057600080fd5b506104db60048036038101906104d69190613361565b6113f8565b6040516104e8919061363f565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190613762565b611449565b005b34801561052657600080fd5b50610541600480360381019061053c919061390f565b6114df565b005b34801561054f57600080fd5b5061056a600480360381019061056591906139ae565b61152b565b6040516105779190613255565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a291906139ae565b61154b565b6040516105b4919061363f565b60405180910390f35b3480156105c957600080fd5b506105d2611563565b6040516105df9190613255565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613361565b61157a565b60405161061c91906133cf565b60405180910390f35b34801561063157600080fd5b5061063a611637565b604051610647919061363f565b60405180910390f35b34801561065c57600080fd5b5061066561163d565b6040516106729190613309565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d91906139ae565b6116cb565b6040516106af919061363f565b60405180910390f35b3480156106c457600080fd5b506106cd6117e7565b005b3480156106db57600080fd5b506106f660048036038101906106f191906139db565b61186f565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613361565b611910565b005b34801561072d57600080fd5b50610736611996565b005b34801561074457600080fd5b5061075f600480360381019061075a91906139ae565b611a1c565b60405161076c9190613ac6565b60405180910390f35b34801561078157600080fd5b5061078a611b26565b60405161079791906133cf565b60405180910390f35b3480156107ac57600080fd5b506107b5611b50565b6040516107c29190613309565b60405180910390f35b6107e560048036038101906107e09190613361565b611be2565b005b3480156107f357600080fd5b5061080e60048036038101906108099190613b14565b611d4d565b005b34801561081c57600080fd5b50610825611ece565b6040516108329190613255565b60405180910390f35b34801561084757600080fd5b50610850611ee1565b60405161085d9190613255565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190613b54565b611ef8565b005b34801561089b57600080fd5b506108b660048036038101906108b19190613361565b611f5a565b6040516108c39190613309565b60405180910390f35b3480156108d857600080fd5b506108e1611fd6565b6040516108ee91906133cf565b60405180910390f35b34801561090357600080fd5b5061091e600480360381019061091991906139ae565b611ffc565b005b34801561092c57600080fd5b5061094760048036038101906109429190613bd7565b6120bc565b6040516109549190613255565b60405180910390f35b34801561096957600080fd5b50610972612203565b60405161097f919061363f565b60405180910390f35b34801561099457600080fd5b506109af60048036038101906109aa91906139ae565b612208565b005b3480156109bd57600080fd5b506109d860048036038101906109d39190613c17565b612300565b005b3480156109e657600080fd5b50610a0160048036038101906109fc91906139ae565b61234a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a765750610a758261246d565b5b9050919050565b610a8561254f565b73ffffffffffffffffffffffffffffffffffffffff16610aa3611b26565b73ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613cd2565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b606060008054610b2590613d21565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5190613d21565b8015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b820191906000526020600020905b815481529060010190602001808311610b8157829003601f168201915b5050505050905090565b6000610bb382612557565b610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613dc5565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c388261157a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090613e57565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc861254f565b73ffffffffffffffffffffffffffffffffffffffff161480610cf75750610cf681610cf161254f565b6120bc565b5b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90613ee9565b60405180910390fd5b610d4083836125df565b505050565b610d4d611563565b610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390613f55565b60405180910390fd5b600a60009054906101000a900460ff16610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290613fc1565b60405180910390fd5b6000600280549050905061115d8382610df49190614010565b10610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906140b2565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead9061411e565b60405180910390fd5b610ef56006543385604051602001610ecf9291906141a7565b60405160208183030381529060405280519060200120846126989092919063ffffffff16565b610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b9061421f565b60405180910390fd5b60005b83811015610f6757610f54338284610f4f9190614010565b61274e565b8080610f5f9061423f565b915050610f37565b5082600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb79190614010565b92505081905550505050565b6000600280549050905090565b610fe1610fdb61254f565b82612811565b611020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611017906142fa565b60405180910390fd5b61102b8383836128ef565b505050565b600061103b836116cb565b821061107c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110739061438c565b60405180910390fd5b6000805b60028054905081101561113357600281815481106110a1576110a06143ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611120578382141561111157809250505061116f565b818061111c9061423f565b9250505b808061112b9061423f565b915050611080565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061438c565b60405180910390fd5b92915050565b61115d81565b61118361254f565b73ffffffffffffffffffffffffffffffffffffffff166111a1611b26565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613cd2565b60405180910390fd5b6000600280549050905061115d826002805490506112159190614010565b10611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c906140b2565b60405180910390fd5b60005b82811015611288576112753382846112709190614010565b61274e565b80806112809061423f565b915050611258565b505050565b61129561254f565b73ffffffffffffffffffffffffffffffffffffffff166112b3611b26565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090613cd2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561134f573d6000803e3d6000fd5b50565b61135a61254f565b73ffffffffffffffffffffffffffffffffffffffff16611378611b26565b73ffffffffffffffffffffffffffffffffffffffff16146113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590613cd2565b60405180910390fd5b6113d6612a9d565b565b6113f383838360405180602001604052806000815250611ef8565b505050565b60006002805490508210611441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114389061444d565b60405180910390fd5b819050919050565b61145161254f565b73ffffffffffffffffffffffffffffffffffffffff1661146f611b26565b73ffffffffffffffffffffffffffffffffffffffff16146114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90613cd2565b60405180910390fd5b80600990805190602001906114db9291906130fe565b5050565b60005b8251811015611524576115118585858481518110611503576115026143ac565b5b602002602001015185611ef8565b808061151c9061423f565b9150506114e2565b5050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600c6020528060005260406000206000915090505481565b6000600560149054906101000a900460ff16905090565b60008060028381548110611591576115906143ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611625906144df565b60405180910390fd5b80915050919050565b60085481565b6009805461164a90613d21565b80601f016020809104026020016040519081016040528092919081815260200182805461167690613d21565b80156116c35780601f10611698576101008083540402835291602001916116c3565b820191906000526020600020905b8154815290600101906020018083116116a657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390614571565b60405180910390fd5b6000805b6002805490508110156117dd5760028181548110611761576117606143ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117cc57816117c99061423f565b91505b806117d69061423f565b9050611740565b5080915050919050565b6117ef61254f565b73ffffffffffffffffffffffffffffffffffffffff1661180d611b26565b73ffffffffffffffffffffffffffffffffffffffff1614611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613cd2565b60405180910390fd5b61186d6000612b3f565b565b61187761254f565b73ffffffffffffffffffffffffffffffffffffffff16611895611b26565b73ffffffffffffffffffffffffffffffffffffffff16146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613cd2565b60405180910390fd5b806006819055506001600760006101000a81548160ff02191690831515021790555050565b61191861254f565b73ffffffffffffffffffffffffffffffffffffffff16611936611b26565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390613cd2565b60405180910390fd5b8060088190555050565b61199e61254f565b73ffffffffffffffffffffffffffffffffffffffff166119bc611b26565b73ffffffffffffffffffffffffffffffffffffffff1614611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613cd2565b60405180910390fd5b611a1a612c05565b565b60606000611a29836116cb565b90506000811415611a8657600067ffffffffffffffff811115611a4f57611a4e61345b565b5b604051908082528060200260200182016040528015611a7d5781602001602082028036833780820191505090505b50915050611b21565b60008167ffffffffffffffff811115611aa257611aa161345b565b5b604051908082528060200260200182016040528015611ad05781602001602082028036833780820191505090505b50905060005b82811015611b1a57611ae88582611030565b828281518110611afb57611afa6143ac565b5b6020026020010181815250508080611b129061423f565b915050611ad6565b5080925050505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b5f90613d21565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8b90613d21565b8015611bd85780601f10611bad57610100808354040283529160200191611bd8565b820191906000526020600020905b815481529060010190602001808311611bbb57829003601f168201915b5050505050905090565b611bea611563565b15611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906145dd565b60405180910390fd5b601a8110611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490614649565b60405180910390fd5b6000600280549050905061115d8282611c869190614010565b10611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd906140b2565b60405180910390fd5b81600854611cd49190614669565b3414611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c9061470f565b60405180910390fd5b60005b82811015611d4857611d35338284611d309190614010565b61274e565b8080611d409061423f565b915050611d18565b505050565b611d5561254f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba9061477b565b60405180910390fd5b8060046000611dd061254f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e7d61254f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ec29190613255565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6000600760009054906101000a900460ff16905090565b611f09611f0361254f565b83612811565b611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f906142fa565b60405180910390fd5b611f5484848484612ca8565b50505050565b6060611f6582612557565b611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b906147e7565b60405180910390fd5b6009611faf83612d04565b604051602001611fc09291906148d7565b6040516020818303038152906040529050919050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61200461254f565b73ffffffffffffffffffffffffffffffffffffffff16612022611b26565b73ffffffffffffffffffffffffffffffffffffffff1614612078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206f90613cd2565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161213491906133cf565b602060405180830381865afa158015612151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121759190614939565b73ffffffffffffffffffffffffffffffffffffffff1614806121e05750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121ef5760019150506121fd565b6121f98484612e65565b9150505b92915050565b601a81565b61221061254f565b73ffffffffffffffffffffffffffffffffffffffff1661222e611b26565b73ffffffffffffffffffffffffffffffffffffffff1614612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b90613cd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb906149d8565b60405180910390fd5b6122fd81612b3f565b50565b60005b8151811015612344576123318484848481518110612324576123236143ac565b5b6020026020010151610fd0565b808061233c9061423f565b915050612303565b50505050565b61235261254f565b73ffffffffffffffffffffffffffffffffffffffff16612370611b26565b73ffffffffffffffffffffffffffffffffffffffff16146123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd90613cd2565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061253857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612548575061254782612ef9565b5b9050919050565b600033905090565b6000600280549050821080156125d85750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612594576125936143ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126528361157a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082905060005b85518110156127405760008682815181106126bf576126be6143ac565b5b602002602001015190508083116127005782816040516020016126e3929190614a19565b60405160208183030381529060405280519060200120925061272c565b8083604051602001612713929190614a19565b6040516020818303038152906040528051906020012092505b5080806127389061423f565b9150506126a1565b508381149150509392505050565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061281c82612557565b61285b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285290614ab7565b60405180910390fd5b60006128668361157a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128d557508373ffffffffffffffffffffffffffffffffffffffff166128bd84610ba8565b73ffffffffffffffffffffffffffffffffffffffff16145b806128e657506128e581856120bc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661290f8261157a565b73ffffffffffffffffffffffffffffffffffffffff1614612965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295c90614b49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614bdb565b60405180910390fd5b6129e06000826125df565b81600282815481106129f5576129f46143ac565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612aa5611563565b612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90613f55565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612b2861254f565b604051612b3591906133cf565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c0d611563565b15612c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c44906145dd565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c9161254f565b604051612c9e91906133cf565b60405180910390a1565b612cb38484846128ef565b612cbf84848484612f63565b612cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf590614c6d565b60405180910390fd5b50505050565b60606000821415612d4c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e60565b600082905060005b60008214612d7e578080612d679061423f565b915050600a82612d779190614cbc565b9150612d54565b60008167ffffffffffffffff811115612d9a57612d9961345b565b5b6040519080825280601f01601f191660200182016040528015612dcc5781602001600182028036833780820191505090505b5090505b60008514612e5957600182612de59190614ced565b9150600a85612df49190614d21565b6030612e009190614010565b60f81b818381518110612e1657612e156143ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e529190614cbc565b9450612dd0565b8093505050505b919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612f848473ffffffffffffffffffffffffffffffffffffffff166130eb565b156130de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fad61254f565b8786866040518563ffffffff1660e01b8152600401612fcf9493929190614da7565b6020604051808303816000875af192505050801561300b57506040513d601f19601f820116820180604052508101906130089190614e08565b60015b61308e573d806000811461303b576040519150601f19603f3d011682016040523d82523d6000602084013e613040565b606091505b50600081511415613086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307d90614c6d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e3565b600190505b949350505050565b600080823b905060008111915050919050565b82805461310a90613d21565b90600052602060002090601f01602090048101928261312c5760008555613173565b82601f1061314557805160ff1916838001178555613173565b82800160010185558215613173579182015b82811115613172578251825591602001919060010190613157565b5b5090506131809190613184565b5090565b5b8082111561319d576000816000905550600101613185565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131ea816131b5565b81146131f557600080fd5b50565b600081359050613207816131e1565b92915050565b600060208284031215613223576132226131ab565b5b6000613231848285016131f8565b91505092915050565b60008115159050919050565b61324f8161323a565b82525050565b600060208201905061326a6000830184613246565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132aa57808201518184015260208101905061328f565b838111156132b9576000848401525b50505050565b6000601f19601f8301169050919050565b60006132db82613270565b6132e5818561327b565b93506132f581856020860161328c565b6132fe816132bf565b840191505092915050565b6000602082019050818103600083015261332381846132d0565b905092915050565b6000819050919050565b61333e8161332b565b811461334957600080fd5b50565b60008135905061335b81613335565b92915050565b600060208284031215613377576133766131ab565b5b60006133858482850161334c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133b98261338e565b9050919050565b6133c9816133ae565b82525050565b60006020820190506133e460008301846133c0565b92915050565b6133f3816133ae565b81146133fe57600080fd5b50565b600081359050613410816133ea565b92915050565b6000806040838503121561342d5761342c6131ab565b5b600061343b85828601613401565b925050602061344c8582860161334c565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613493826132bf565b810181811067ffffffffffffffff821117156134b2576134b161345b565b5b80604052505050565b60006134c56131a1565b90506134d1828261348a565b919050565b600067ffffffffffffffff8211156134f1576134f061345b565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61351a81613507565b811461352557600080fd5b50565b60008135905061353781613511565b92915050565b600061355061354b846134d6565b6134bb565b9050808382526020820190506020840283018581111561357357613572613502565b5b835b8181101561359c57806135888882613528565b845260208401935050602081019050613575565b5050509392505050565b600082601f8301126135bb576135ba613456565b5b81356135cb84826020860161353d565b91505092915050565b600080604083850312156135eb576135ea6131ab565b5b60006135f98582860161334c565b925050602083013567ffffffffffffffff81111561361a576136196131b0565b5b613626858286016135a6565b9150509250929050565b6136398161332b565b82525050565b60006020820190506136546000830184613630565b92915050565b600080600060608486031215613673576136726131ab565b5b600061368186828701613401565b935050602061369286828701613401565b92505060406136a38682870161334c565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156136cd576136cc61345b565b5b6136d6826132bf565b9050602081019050919050565b82818337600083830152505050565b6000613705613700846136b2565b6134bb565b905082815260208101848484011115613721576137206136ad565b5b61372c8482856136e3565b509392505050565b600082601f83011261374957613748613456565b5b81356137598482602086016136f2565b91505092915050565b600060208284031215613778576137776131ab565b5b600082013567ffffffffffffffff811115613796576137956131b0565b5b6137a284828501613734565b91505092915050565b600067ffffffffffffffff8211156137c6576137c561345b565b5b602082029050602081019050919050565b60006137ea6137e5846137ab565b6134bb565b9050808382526020820190506020840283018581111561380d5761380c613502565b5b835b818110156138365780613822888261334c565b84526020840193505060208101905061380f565b5050509392505050565b600082601f83011261385557613854613456565b5b81356138658482602086016137d7565b91505092915050565b600067ffffffffffffffff8211156138895761388861345b565b5b613892826132bf565b9050602081019050919050565b60006138b26138ad8461386e565b6134bb565b9050828152602081018484840111156138ce576138cd6136ad565b5b6138d98482856136e3565b509392505050565b600082601f8301126138f6576138f5613456565b5b813561390684826020860161389f565b91505092915050565b60008060008060808587031215613929576139286131ab565b5b600061393787828801613401565b945050602061394887828801613401565b935050604085013567ffffffffffffffff811115613969576139686131b0565b5b61397587828801613840565b925050606085013567ffffffffffffffff811115613996576139956131b0565b5b6139a2878288016138e1565b91505092959194509250565b6000602082840312156139c4576139c36131ab565b5b60006139d284828501613401565b91505092915050565b6000602082840312156139f1576139f06131ab565b5b60006139ff84828501613528565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a3d8161332b565b82525050565b6000613a4f8383613a34565b60208301905092915050565b6000602082019050919050565b6000613a7382613a08565b613a7d8185613a13565b9350613a8883613a24565b8060005b83811015613ab9578151613aa08882613a43565b9750613aab83613a5b565b925050600181019050613a8c565b5085935050505092915050565b60006020820190508181036000830152613ae08184613a68565b905092915050565b613af18161323a565b8114613afc57600080fd5b50565b600081359050613b0e81613ae8565b92915050565b60008060408385031215613b2b57613b2a6131ab565b5b6000613b3985828601613401565b9250506020613b4a85828601613aff565b9150509250929050565b60008060008060808587031215613b6e57613b6d6131ab565b5b6000613b7c87828801613401565b9450506020613b8d87828801613401565b9350506040613b9e8782880161334c565b925050606085013567ffffffffffffffff811115613bbf57613bbe6131b0565b5b613bcb878288016138e1565b91505092959194509250565b60008060408385031215613bee57613bed6131ab565b5b6000613bfc85828601613401565b9250506020613c0d85828601613401565b9150509250929050565b600080600060608486031215613c3057613c2f6131ab565b5b6000613c3e86828701613401565b9350506020613c4f86828701613401565b925050604084013567ffffffffffffffff811115613c7057613c6f6131b0565b5b613c7c86828701613840565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cbc60208361327b565b9150613cc782613c86565b602082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d3957607f821691505b60208210811415613d4d57613d4c613cf2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613daf602c8361327b565b9150613dba82613d53565b604082019050919050565b60006020820190508181036000830152613dde81613da2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e4160218361327b565b9150613e4c82613de5565b604082019050919050565b60006020820190508181036000830152613e7081613e34565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613ed360388361327b565b9150613ede82613e77565b604082019050919050565b60006020820190508181036000830152613f0281613ec6565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613f3f60148361327b565b9150613f4a82613f09565b602082019050919050565b60006020820190508181036000830152613f6e81613f32565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b6000613fab601a8361327b565b9150613fb682613f75565b602082019050919050565b60006020820190508181036000830152613fda81613f9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061401b8261332b565b91506140268361332b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405b5761405a613fe1565b5b828201905092915050565b7f416d6f756e742065786365656473206d617820737570706c7900000000000000600082015250565b600061409c60198361327b565b91506140a782614066565b602082019050919050565b600060208201905081810360008301526140cb8161408f565b9050919050565b7f416c7265616479207573656420616c6c6f77616e636500000000000000000000600082015250565b600061410860168361327b565b9150614113826140d2565b602082019050919050565b60006020820190508181036000830152614137816140fb565b9050919050565b60008160601b9050919050565b60006141568261413e565b9050919050565b60006141688261414b565b9050919050565b61418061417b826133ae565b61415d565b82525050565b6000819050919050565b6141a161419c8261332b565b614186565b82525050565b60006141b3828561416f565b6014820191506141c38284614190565b6020820191508190509392505050565b7f496e76616c69642070726f6f662e204e6f742077686974656c69737465640000600082015250565b6000614209601e8361327b565b9150614214826141d3565b602082019050919050565b60006020820190508181036000830152614238816141fc565b9050919050565b600061424a8261332b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561427d5761427c613fe1565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006142e460318361327b565b91506142ef82614288565b604082019050919050565b60006020820190508181036000830152614313816142d7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614376602b8361327b565b91506143818261431a565b604082019050919050565b600060208201905081810360008301526143a581614369565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614437602c8361327b565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006144c960298361327b565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061455b602a8361327b565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006145c760108361327b565b91506145d282614591565b602082019050919050565b600060208201905081810360008301526145f6816145ba565b9050919050565b7f416d6f756e742065786365656473206d61782070657220747800000000000000600082015250565b600061463360198361327b565b915061463e826145fd565b602082019050919050565b6000602082019050818103600083015261466281614626565b9050919050565b60006146748261332b565b915061467f8361332b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146b8576146b7613fe1565b5b828202905092915050565b7f57726f6e672065746820616d6f756e7400000000000000000000000000000000600082015250565b60006146f960108361327b565b9150614704826146c3565b602082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061476560198361327b565b91506147708261472f565b602082019050919050565b6000602082019050818103600083015261479481614758565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006147d160158361327b565b91506147dc8261479b565b602082019050919050565b60006020820190508181036000830152614800816147c4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461483481613d21565b61483e8186614807565b94506001821660008114614859576001811461486a5761489d565b60ff1983168652818601935061489d565b61487385614812565b60005b8381101561489557815481890152600182019150602081019050614876565b838801955050505b50505092915050565b60006148b182613270565b6148bb8185614807565b93506148cb81856020860161328c565b80840191505092915050565b60006148e38285614827565b91506148ef82846148a6565b91508190509392505050565b6000614906826133ae565b9050919050565b614916816148fb565b811461492157600080fd5b50565b6000815190506149338161490d565b92915050565b60006020828403121561494f5761494e6131ab565b5b600061495d84828501614924565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149c260268361327b565b91506149cd82614966565b604082019050919050565b600060208201905081810360008301526149f1816149b5565b9050919050565b6000819050919050565b614a13614a0e82613507565b6149f8565b82525050565b6000614a258285614a02565b602082019150614a358284614a02565b6020820191508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614aa1602c8361327b565b9150614aac82614a45565b604082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614b3360298361327b565b9150614b3e82614ad7565b604082019050919050565b60006020820190508181036000830152614b6281614b26565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614bc560248361327b565b9150614bd082614b69565b604082019050919050565b60006020820190508181036000830152614bf481614bb8565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c5760328361327b565b9150614c6282614bfb565b604082019050919050565b60006020820190508181036000830152614c8681614c4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cc78261332b565b9150614cd28361332b565b925082614ce257614ce1614c8d565b5b828204905092915050565b6000614cf88261332b565b9150614d038361332b565b925082821015614d1657614d15613fe1565b5b828203905092915050565b6000614d2c8261332b565b9150614d378361332b565b925082614d4757614d46614c8d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614d7982614d52565b614d838185614d5d565b9350614d9381856020860161328c565b614d9c816132bf565b840191505092915050565b6000608082019050614dbc60008301876133c0565b614dc960208301866133c0565b614dd66040830185613630565b8181036060830152614de88184614d6e565b905095945050505050565b600081519050614e02816131e1565b92915050565b600060208284031215614e1e57614e1d6131ab565b5b6000614e2c84828501614df3565b9150509291505056fea264697066735822122033c21a648233f23b816cef46a9f951fe8ef3f208bf46414e293e4a5dda91170164736f6c634300080b0033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Deployed Bytecode
0x60806040526004361061026b5760003560e01c80636c0360eb11610144578063b1936c24116100b6578063d26ea6c01161007a578063d26ea6c0146108f7578063e985e9c514610920578063ea156a9b1461095d578063f2fde38b14610988578063f3993d11146109b1578063f73c814b146109da57610272565b8063b1936c2414610810578063b2e778bc1461083b578063b88d4fde14610866578063c87b56dd1461088f578063cd7c0326146108cc57610272565b80638456cb59116101085780638456cb59146107215780638462151c146107385780638da5cb5b1461077557806395d89b41146107a0578063a0712d68146107cb578063a22cb465146107e757610272565b80636c0360eb1461065057806370a082311461067b578063715018a6146106b85780637cb64759146106cf5780637d9a7a4c146106f857610272565b80633ccfd60b116101dd5780635a4fee30116101a15780635a4fee301461051a5780635bab26e2146105435780635c477073146105805780635c975abb146105bd5780636352211e146105e8578063676dd5631461062557610272565b80633ccfd60b1461045d5780633f4ba83a1461047457806342842e0e1461048b5780634f6ccce7146104b457806355f804b3146104f157610272565b80630c0a6b5e1161022f5780630c0a6b5e1461035c57806318160ddd1461037857806323b872dd146103a35780632f745c59146103cc57806332cb6b0c1461040957806333f88d221461043457610272565b806301ffc9a71461027757806304c98b2b146102b457806306fdde03146102cb578063081812fc146102f6578063095ea7b31461033357610272565b3661027257005b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061320d565b610a03565b6040516102ab9190613255565b60405180910390f35b3480156102c057600080fd5b506102c9610a7d565b005b3480156102d757600080fd5b506102e0610b16565b6040516102ed9190613309565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613361565b610ba8565b60405161032a91906133cf565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190613416565b610c2d565b005b610376600480360381019061037191906135d4565b610d45565b005b34801561038457600080fd5b5061038d610fc3565b60405161039a919061363f565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c5919061365a565b610fd0565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613416565b611030565b604051610400919061363f565b60405180910390f35b34801561041557600080fd5b5061041e611175565b60405161042b919061363f565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613361565b61117b565b005b34801561046957600080fd5b5061047261128d565b005b34801561048057600080fd5b50610489611352565b005b34801561049757600080fd5b506104b260048036038101906104ad919061365a565b6113d8565b005b3480156104c057600080fd5b506104db60048036038101906104d69190613361565b6113f8565b6040516104e8919061363f565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190613762565b611449565b005b34801561052657600080fd5b50610541600480360381019061053c919061390f565b6114df565b005b34801561054f57600080fd5b5061056a600480360381019061056591906139ae565b61152b565b6040516105779190613255565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a291906139ae565b61154b565b6040516105b4919061363f565b60405180910390f35b3480156105c957600080fd5b506105d2611563565b6040516105df9190613255565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613361565b61157a565b60405161061c91906133cf565b60405180910390f35b34801561063157600080fd5b5061063a611637565b604051610647919061363f565b60405180910390f35b34801561065c57600080fd5b5061066561163d565b6040516106729190613309565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d91906139ae565b6116cb565b6040516106af919061363f565b60405180910390f35b3480156106c457600080fd5b506106cd6117e7565b005b3480156106db57600080fd5b506106f660048036038101906106f191906139db565b61186f565b005b34801561070457600080fd5b5061071f600480360381019061071a9190613361565b611910565b005b34801561072d57600080fd5b50610736611996565b005b34801561074457600080fd5b5061075f600480360381019061075a91906139ae565b611a1c565b60405161076c9190613ac6565b60405180910390f35b34801561078157600080fd5b5061078a611b26565b60405161079791906133cf565b60405180910390f35b3480156107ac57600080fd5b506107b5611b50565b6040516107c29190613309565b60405180910390f35b6107e560048036038101906107e09190613361565b611be2565b005b3480156107f357600080fd5b5061080e60048036038101906108099190613b14565b611d4d565b005b34801561081c57600080fd5b50610825611ece565b6040516108329190613255565b60405180910390f35b34801561084757600080fd5b50610850611ee1565b60405161085d9190613255565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190613b54565b611ef8565b005b34801561089b57600080fd5b506108b660048036038101906108b19190613361565b611f5a565b6040516108c39190613309565b60405180910390f35b3480156108d857600080fd5b506108e1611fd6565b6040516108ee91906133cf565b60405180910390f35b34801561090357600080fd5b5061091e600480360381019061091991906139ae565b611ffc565b005b34801561092c57600080fd5b5061094760048036038101906109429190613bd7565b6120bc565b6040516109549190613255565b60405180910390f35b34801561096957600080fd5b50610972612203565b60405161097f919061363f565b60405180910390f35b34801561099457600080fd5b506109af60048036038101906109aa91906139ae565b612208565b005b3480156109bd57600080fd5b506109d860048036038101906109d39190613c17565b612300565b005b3480156109e657600080fd5b50610a0160048036038101906109fc91906139ae565b61234a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a765750610a758261246d565b5b9050919050565b610a8561254f565b73ffffffffffffffffffffffffffffffffffffffff16610aa3611b26565b73ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613cd2565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b606060008054610b2590613d21565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5190613d21565b8015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b820191906000526020600020905b815481529060010190602001808311610b8157829003601f168201915b5050505050905090565b6000610bb382612557565b610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990613dc5565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c388261157a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090613e57565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc861254f565b73ffffffffffffffffffffffffffffffffffffffff161480610cf75750610cf681610cf161254f565b6120bc565b5b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90613ee9565b60405180910390fd5b610d4083836125df565b505050565b610d4d611563565b610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390613f55565b60405180910390fd5b600a60009054906101000a900460ff16610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290613fc1565b60405180910390fd5b6000600280549050905061115d8382610df49190614010565b10610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906140b2565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead9061411e565b60405180910390fd5b610ef56006543385604051602001610ecf9291906141a7565b60405160208183030381529060405280519060200120846126989092919063ffffffff16565b610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b9061421f565b60405180910390fd5b60005b83811015610f6757610f54338284610f4f9190614010565b61274e565b8080610f5f9061423f565b915050610f37565b5082600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb79190614010565b92505081905550505050565b6000600280549050905090565b610fe1610fdb61254f565b82612811565b611020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611017906142fa565b60405180910390fd5b61102b8383836128ef565b505050565b600061103b836116cb565b821061107c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110739061438c565b60405180910390fd5b6000805b60028054905081101561113357600281815481106110a1576110a06143ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611120578382141561111157809250505061116f565b818061111c9061423f565b9250505b808061112b9061423f565b915050611080565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061438c565b60405180910390fd5b92915050565b61115d81565b61118361254f565b73ffffffffffffffffffffffffffffffffffffffff166111a1611b26565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613cd2565b60405180910390fd5b6000600280549050905061115d826002805490506112159190614010565b10611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c906140b2565b60405180910390fd5b60005b82811015611288576112753382846112709190614010565b61274e565b80806112809061423f565b915050611258565b505050565b61129561254f565b73ffffffffffffffffffffffffffffffffffffffff166112b3611b26565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090613cd2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561134f573d6000803e3d6000fd5b50565b61135a61254f565b73ffffffffffffffffffffffffffffffffffffffff16611378611b26565b73ffffffffffffffffffffffffffffffffffffffff16146113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590613cd2565b60405180910390fd5b6113d6612a9d565b565b6113f383838360405180602001604052806000815250611ef8565b505050565b60006002805490508210611441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114389061444d565b60405180910390fd5b819050919050565b61145161254f565b73ffffffffffffffffffffffffffffffffffffffff1661146f611b26565b73ffffffffffffffffffffffffffffffffffffffff16146114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90613cd2565b60405180910390fd5b80600990805190602001906114db9291906130fe565b5050565b60005b8251811015611524576115118585858481518110611503576115026143ac565b5b602002602001015185611ef8565b808061151c9061423f565b9150506114e2565b5050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600c6020528060005260406000206000915090505481565b6000600560149054906101000a900460ff16905090565b60008060028381548110611591576115906143ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611625906144df565b60405180910390fd5b80915050919050565b60085481565b6009805461164a90613d21565b80601f016020809104026020016040519081016040528092919081815260200182805461167690613d21565b80156116c35780601f10611698576101008083540402835291602001916116c3565b820191906000526020600020905b8154815290600101906020018083116116a657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390614571565b60405180910390fd5b6000805b6002805490508110156117dd5760028181548110611761576117606143ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117cc57816117c99061423f565b91505b806117d69061423f565b9050611740565b5080915050919050565b6117ef61254f565b73ffffffffffffffffffffffffffffffffffffffff1661180d611b26565b73ffffffffffffffffffffffffffffffffffffffff1614611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613cd2565b60405180910390fd5b61186d6000612b3f565b565b61187761254f565b73ffffffffffffffffffffffffffffffffffffffff16611895611b26565b73ffffffffffffffffffffffffffffffffffffffff16146118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613cd2565b60405180910390fd5b806006819055506001600760006101000a81548160ff02191690831515021790555050565b61191861254f565b73ffffffffffffffffffffffffffffffffffffffff16611936611b26565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198390613cd2565b60405180910390fd5b8060088190555050565b61199e61254f565b73ffffffffffffffffffffffffffffffffffffffff166119bc611b26565b73ffffffffffffffffffffffffffffffffffffffff1614611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613cd2565b60405180910390fd5b611a1a612c05565b565b60606000611a29836116cb565b90506000811415611a8657600067ffffffffffffffff811115611a4f57611a4e61345b565b5b604051908082528060200260200182016040528015611a7d5781602001602082028036833780820191505090505b50915050611b21565b60008167ffffffffffffffff811115611aa257611aa161345b565b5b604051908082528060200260200182016040528015611ad05781602001602082028036833780820191505090505b50905060005b82811015611b1a57611ae88582611030565b828281518110611afb57611afa6143ac565b5b6020026020010181815250508080611b129061423f565b915050611ad6565b5080925050505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b5f90613d21565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8b90613d21565b8015611bd85780601f10611bad57610100808354040283529160200191611bd8565b820191906000526020600020905b815481529060010190602001808311611bbb57829003601f168201915b5050505050905090565b611bea611563565b15611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906145dd565b60405180910390fd5b601a8110611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490614649565b60405180910390fd5b6000600280549050905061115d8282611c869190614010565b10611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd906140b2565b60405180910390fd5b81600854611cd49190614669565b3414611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c9061470f565b60405180910390fd5b60005b82811015611d4857611d35338284611d309190614010565b61274e565b8080611d409061423f565b915050611d18565b505050565b611d5561254f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba9061477b565b60405180910390fd5b8060046000611dd061254f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e7d61254f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ec29190613255565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6000600760009054906101000a900460ff16905090565b611f09611f0361254f565b83612811565b611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f906142fa565b60405180910390fd5b611f5484848484612ca8565b50505050565b6060611f6582612557565b611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b906147e7565b60405180910390fd5b6009611faf83612d04565b604051602001611fc09291906148d7565b6040516020818303038152906040529050919050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61200461254f565b73ffffffffffffffffffffffffffffffffffffffff16612022611b26565b73ffffffffffffffffffffffffffffffffffffffff1614612078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206f90613cd2565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161213491906133cf565b602060405180830381865afa158015612151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121759190614939565b73ffffffffffffffffffffffffffffffffffffffff1614806121e05750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121ef5760019150506121fd565b6121f98484612e65565b9150505b92915050565b601a81565b61221061254f565b73ffffffffffffffffffffffffffffffffffffffff1661222e611b26565b73ffffffffffffffffffffffffffffffffffffffff1614612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b90613cd2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb906149d8565b60405180910390fd5b6122fd81612b3f565b50565b60005b8151811015612344576123318484848481518110612324576123236143ac565b5b6020026020010151610fd0565b808061233c9061423f565b915050612303565b50505050565b61235261254f565b73ffffffffffffffffffffffffffffffffffffffff16612370611b26565b73ffffffffffffffffffffffffffffffffffffffff16146123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd90613cd2565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061253857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612548575061254782612ef9565b5b9050919050565b600033905090565b6000600280549050821080156125d85750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612594576125936143ac565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126528361157a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082905060005b85518110156127405760008682815181106126bf576126be6143ac565b5b602002602001015190508083116127005782816040516020016126e3929190614a19565b60405160208183030381529060405280519060200120925061272c565b8083604051602001612713929190614a19565b6040516020818303038152906040528051906020012092505b5080806127389061423f565b9150506126a1565b508381149150509392505050565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061281c82612557565b61285b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285290614ab7565b60405180910390fd5b60006128668361157a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128d557508373ffffffffffffffffffffffffffffffffffffffff166128bd84610ba8565b73ffffffffffffffffffffffffffffffffffffffff16145b806128e657506128e581856120bc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661290f8261157a565b73ffffffffffffffffffffffffffffffffffffffff1614612965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295c90614b49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc90614bdb565b60405180910390fd5b6129e06000826125df565b81600282815481106129f5576129f46143ac565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612aa5611563565b612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90613f55565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612b2861254f565b604051612b3591906133cf565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c0d611563565b15612c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c44906145dd565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c9161254f565b604051612c9e91906133cf565b60405180910390a1565b612cb38484846128ef565b612cbf84848484612f63565b612cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf590614c6d565b60405180910390fd5b50505050565b60606000821415612d4c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e60565b600082905060005b60008214612d7e578080612d679061423f565b915050600a82612d779190614cbc565b9150612d54565b60008167ffffffffffffffff811115612d9a57612d9961345b565b5b6040519080825280601f01601f191660200182016040528015612dcc5781602001600182028036833780820191505090505b5090505b60008514612e5957600182612de59190614ced565b9150600a85612df49190614d21565b6030612e009190614010565b60f81b818381518110612e1657612e156143ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e529190614cbc565b9450612dd0565b8093505050505b919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612f848473ffffffffffffffffffffffffffffffffffffffff166130eb565b156130de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fad61254f565b8786866040518563ffffffff1660e01b8152600401612fcf9493929190614da7565b6020604051808303816000875af192505050801561300b57506040513d601f19601f820116820180604052508101906130089190614e08565b60015b61308e573d806000811461303b576040519150601f19603f3d011682016040523d82523d6000602084013e613040565b606091505b50600081511415613086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307d90614c6d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e3565b600190505b949350505050565b600080823b905060008111915050919050565b82805461310a90613d21565b90600052602060002090601f01602090048101928261312c5760008555613173565b82601f1061314557805160ff1916838001178555613173565b82800160010185558215613173579182015b82811115613172578251825591602001919060010190613157565b5b5090506131809190613184565b5090565b5b8082111561319d576000816000905550600101613185565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131ea816131b5565b81146131f557600080fd5b50565b600081359050613207816131e1565b92915050565b600060208284031215613223576132226131ab565b5b6000613231848285016131f8565b91505092915050565b60008115159050919050565b61324f8161323a565b82525050565b600060208201905061326a6000830184613246565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132aa57808201518184015260208101905061328f565b838111156132b9576000848401525b50505050565b6000601f19601f8301169050919050565b60006132db82613270565b6132e5818561327b565b93506132f581856020860161328c565b6132fe816132bf565b840191505092915050565b6000602082019050818103600083015261332381846132d0565b905092915050565b6000819050919050565b61333e8161332b565b811461334957600080fd5b50565b60008135905061335b81613335565b92915050565b600060208284031215613377576133766131ab565b5b60006133858482850161334c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133b98261338e565b9050919050565b6133c9816133ae565b82525050565b60006020820190506133e460008301846133c0565b92915050565b6133f3816133ae565b81146133fe57600080fd5b50565b600081359050613410816133ea565b92915050565b6000806040838503121561342d5761342c6131ab565b5b600061343b85828601613401565b925050602061344c8582860161334c565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613493826132bf565b810181811067ffffffffffffffff821117156134b2576134b161345b565b5b80604052505050565b60006134c56131a1565b90506134d1828261348a565b919050565b600067ffffffffffffffff8211156134f1576134f061345b565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61351a81613507565b811461352557600080fd5b50565b60008135905061353781613511565b92915050565b600061355061354b846134d6565b6134bb565b9050808382526020820190506020840283018581111561357357613572613502565b5b835b8181101561359c57806135888882613528565b845260208401935050602081019050613575565b5050509392505050565b600082601f8301126135bb576135ba613456565b5b81356135cb84826020860161353d565b91505092915050565b600080604083850312156135eb576135ea6131ab565b5b60006135f98582860161334c565b925050602083013567ffffffffffffffff81111561361a576136196131b0565b5b613626858286016135a6565b9150509250929050565b6136398161332b565b82525050565b60006020820190506136546000830184613630565b92915050565b600080600060608486031215613673576136726131ab565b5b600061368186828701613401565b935050602061369286828701613401565b92505060406136a38682870161334c565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156136cd576136cc61345b565b5b6136d6826132bf565b9050602081019050919050565b82818337600083830152505050565b6000613705613700846136b2565b6134bb565b905082815260208101848484011115613721576137206136ad565b5b61372c8482856136e3565b509392505050565b600082601f83011261374957613748613456565b5b81356137598482602086016136f2565b91505092915050565b600060208284031215613778576137776131ab565b5b600082013567ffffffffffffffff811115613796576137956131b0565b5b6137a284828501613734565b91505092915050565b600067ffffffffffffffff8211156137c6576137c561345b565b5b602082029050602081019050919050565b60006137ea6137e5846137ab565b6134bb565b9050808382526020820190506020840283018581111561380d5761380c613502565b5b835b818110156138365780613822888261334c565b84526020840193505060208101905061380f565b5050509392505050565b600082601f83011261385557613854613456565b5b81356138658482602086016137d7565b91505092915050565b600067ffffffffffffffff8211156138895761388861345b565b5b613892826132bf565b9050602081019050919050565b60006138b26138ad8461386e565b6134bb565b9050828152602081018484840111156138ce576138cd6136ad565b5b6138d98482856136e3565b509392505050565b600082601f8301126138f6576138f5613456565b5b813561390684826020860161389f565b91505092915050565b60008060008060808587031215613929576139286131ab565b5b600061393787828801613401565b945050602061394887828801613401565b935050604085013567ffffffffffffffff811115613969576139686131b0565b5b61397587828801613840565b925050606085013567ffffffffffffffff811115613996576139956131b0565b5b6139a2878288016138e1565b91505092959194509250565b6000602082840312156139c4576139c36131ab565b5b60006139d284828501613401565b91505092915050565b6000602082840312156139f1576139f06131ab565b5b60006139ff84828501613528565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a3d8161332b565b82525050565b6000613a4f8383613a34565b60208301905092915050565b6000602082019050919050565b6000613a7382613a08565b613a7d8185613a13565b9350613a8883613a24565b8060005b83811015613ab9578151613aa08882613a43565b9750613aab83613a5b565b925050600181019050613a8c565b5085935050505092915050565b60006020820190508181036000830152613ae08184613a68565b905092915050565b613af18161323a565b8114613afc57600080fd5b50565b600081359050613b0e81613ae8565b92915050565b60008060408385031215613b2b57613b2a6131ab565b5b6000613b3985828601613401565b9250506020613b4a85828601613aff565b9150509250929050565b60008060008060808587031215613b6e57613b6d6131ab565b5b6000613b7c87828801613401565b9450506020613b8d87828801613401565b9350506040613b9e8782880161334c565b925050606085013567ffffffffffffffff811115613bbf57613bbe6131b0565b5b613bcb878288016138e1565b91505092959194509250565b60008060408385031215613bee57613bed6131ab565b5b6000613bfc85828601613401565b9250506020613c0d85828601613401565b9150509250929050565b600080600060608486031215613c3057613c2f6131ab565b5b6000613c3e86828701613401565b9350506020613c4f86828701613401565b925050604084013567ffffffffffffffff811115613c7057613c6f6131b0565b5b613c7c86828701613840565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cbc60208361327b565b9150613cc782613c86565b602082019050919050565b60006020820190508181036000830152613ceb81613caf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d3957607f821691505b60208210811415613d4d57613d4c613cf2565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613daf602c8361327b565b9150613dba82613d53565b604082019050919050565b60006020820190508181036000830152613dde81613da2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e4160218361327b565b9150613e4c82613de5565b604082019050919050565b60006020820190508181036000830152613e7081613e34565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613ed360388361327b565b9150613ede82613e77565b604082019050919050565b60006020820190508181036000830152613f0281613ec6565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613f3f60148361327b565b9150613f4a82613f09565b602082019050919050565b60006020820190508181036000830152613f6e81613f32565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b6000613fab601a8361327b565b9150613fb682613f75565b602082019050919050565b60006020820190508181036000830152613fda81613f9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061401b8261332b565b91506140268361332b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405b5761405a613fe1565b5b828201905092915050565b7f416d6f756e742065786365656473206d617820737570706c7900000000000000600082015250565b600061409c60198361327b565b91506140a782614066565b602082019050919050565b600060208201905081810360008301526140cb8161408f565b9050919050565b7f416c7265616479207573656420616c6c6f77616e636500000000000000000000600082015250565b600061410860168361327b565b9150614113826140d2565b602082019050919050565b60006020820190508181036000830152614137816140fb565b9050919050565b60008160601b9050919050565b60006141568261413e565b9050919050565b60006141688261414b565b9050919050565b61418061417b826133ae565b61415d565b82525050565b6000819050919050565b6141a161419c8261332b565b614186565b82525050565b60006141b3828561416f565b6014820191506141c38284614190565b6020820191508190509392505050565b7f496e76616c69642070726f6f662e204e6f742077686974656c69737465640000600082015250565b6000614209601e8361327b565b9150614214826141d3565b602082019050919050565b60006020820190508181036000830152614238816141fc565b9050919050565b600061424a8261332b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561427d5761427c613fe1565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006142e460318361327b565b91506142ef82614288565b604082019050919050565b60006020820190508181036000830152614313816142d7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614376602b8361327b565b91506143818261431a565b604082019050919050565b600060208201905081810360008301526143a581614369565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614437602c8361327b565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006144c960298361327b565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061455b602a8361327b565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006145c760108361327b565b91506145d282614591565b602082019050919050565b600060208201905081810360008301526145f6816145ba565b9050919050565b7f416d6f756e742065786365656473206d61782070657220747800000000000000600082015250565b600061463360198361327b565b915061463e826145fd565b602082019050919050565b6000602082019050818103600083015261466281614626565b9050919050565b60006146748261332b565b915061467f8361332b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146b8576146b7613fe1565b5b828202905092915050565b7f57726f6e672065746820616d6f756e7400000000000000000000000000000000600082015250565b60006146f960108361327b565b9150614704826146c3565b602082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061476560198361327b565b91506147708261472f565b602082019050919050565b6000602082019050818103600083015261479481614758565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006147d160158361327b565b91506147dc8261479b565b602082019050919050565b60006020820190508181036000830152614800816147c4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461483481613d21565b61483e8186614807565b94506001821660008114614859576001811461486a5761489d565b60ff1983168652818601935061489d565b61487385614812565b60005b8381101561489557815481890152600182019150602081019050614876565b838801955050505b50505092915050565b60006148b182613270565b6148bb8185614807565b93506148cb81856020860161328c565b80840191505092915050565b60006148e38285614827565b91506148ef82846148a6565b91508190509392505050565b6000614906826133ae565b9050919050565b614916816148fb565b811461492157600080fd5b50565b6000815190506149338161490d565b92915050565b60006020828403121561494f5761494e6131ab565b5b600061495d84828501614924565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149c260268361327b565b91506149cd82614966565b604082019050919050565b600060208201905081810360008301526149f1816149b5565b9050919050565b6000819050919050565b614a13614a0e82613507565b6149f8565b82525050565b6000614a258285614a02565b602082019150614a358284614a02565b6020820191508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614aa1602c8361327b565b9150614aac82614a45565b604082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614b3360298361327b565b9150614b3e82614ad7565b604082019050919050565b60006020820190508181036000830152614b6281614b26565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614bc560248361327b565b9150614bd082614b69565b604082019050919050565b60006020820190508181036000830152614bf481614bb8565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614c5760328361327b565b9150614c6282614bfb565b604082019050919050565b60006020820190508181036000830152614c8681614c4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cc78261332b565b9150614cd28361332b565b925082614ce257614ce1614c8d565b5b828204905092915050565b6000614cf88261332b565b9150614d038361332b565b925082821015614d1657614d15613fe1565b5b828203905092915050565b6000614d2c8261332b565b9150614d378361332b565b925082614d4757614d46614c8d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614d7982614d52565b614d838185614d5d565b9350614d9381856020860161328c565b614d9c816132bf565b840191505092915050565b6000608082019050614dbc60008301876133c0565b614dc960208301866133c0565b614dd66040830185613630565b8181036060830152614de88184614d6e565b905095945050505050565b600081519050614e02816131e1565b92915050565b600060208284031215614e1e57614e1d6131ab565b5b6000614e2c84828501614df3565b9150509291505056fea264697066735822122033c21a648233f23b816cef46a9f951fe8ef3f208bf46414e293e4a5dda91170164736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
-----Decoded View---------------
Arg [0] : openSeaProxy (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
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.