ERC-721
NFT
Overview
Max Total Supply
3,754 IMO
Holders
1,282
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 IMOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Immortals
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; interface IGauntlet { function balanceOf(address addr) external view returns (uint number); } contract Immortals is ERC721, Ownable { constructor() ERC721("Immortals", "IMO") {} string private uri = "https://assets.bossdrops.io/immortals/"; // Note: address should be different for testnet. IGauntlet gauntlets = IGauntlet(address(0x74EcB5F64363bd663abd3eF08dF75dD22d853BFC)); uint public constant MAX_TOKENS = 10000; // Only 10 nfts can be purchased per transaction. uint public constant maxNumPurchase = 10; uint public totalGauntletMintsAllowed = 3000; uint public currentGauntletMints = 0; uint public totalWilderMintsAllowed = 1000; uint public currentWilderMints = 0; uint public totalMetaverseMintsAllowed = 500; uint public currentMetaverseMints = 0; uint public totalImmmortalsMintsAllowed = 300; uint public currentImmortalsMints = 0; mapping (address => bool) public gauntletsClaimed; mapping (address => bool) public wilderAllowList; mapping (address => bool) public wilderClaimed; mapping (address => bool) public metaverseAllowList; mapping (address => bool) public metaverseClaimed; mapping (address => bool) public immortalsAllowList; mapping (address => bool) public immortalsClaimed; /** * The state of the sale: * 0 = closed * 1 = gauntlet hodlers + mods * 2 = gauntlet holders + mods + wilder world * 3 = gauntlet hodlers + mods + wilder world + metav3rse * 4 = public */ uint public saleState = 0; // Mint price is 0.15 ETH. uint public mintPriceWei = 150000000000000000; // Early mint price is 0.07 ETH. uint public earlyMintPriceWei = 70000000000000000; uint public numMinted = 0; function _checkValueSentForEarlyMint(uint numTokens) internal view { require(msg.value >= SafeMath.mul(numTokens, earlyMintPriceWei), "Insufficient amount sent"); } function _checkValueSentForRegularMint(uint numTokens) internal view { require(msg.value >= SafeMath.mul(numTokens, mintPriceWei), "Insufficient amount sent"); } function _checkCanMint(address addr, uint num) internal { // Closed. require(saleState > 0, "Sale is closed"); // Public sale is open. if (saleState == 4) { require(num <= maxNumPurchase, "Can only mint 10 tokens at a time"); require(msg.value >= SafeMath.mul(num, mintPriceWei), "Insufficient amount sent "); return; } // Can only mint 1 in early access require(num == 1, "Can only mint 1 in early access"); _checkValueSentForEarlyMint(num); // Gauntlet hodlers if (saleState >= 1) { if (gauntlets.balanceOf(addr) > 0 && !gauntletsClaimed[addr] && currentGauntletMints < totalGauntletMintsAllowed) { gauntletsClaimed[addr] = true; currentGauntletMints++; return; } } // Gauntlet hodlers + Wilder if (saleState >= 2) { if (wilderAllowList[addr] && !wilderClaimed[addr] && currentWilderMints < totalWilderMintsAllowed) { wilderClaimed[addr] = true; currentWilderMints++; return; } } // Gauntlet hodlers + Mods + Wilder + Metaverse + Immortals WL if (saleState >= 3) { if (metaverseAllowList[addr] && !metaverseClaimed[addr] && currentMetaverseMints < totalMetaverseMintsAllowed) { metaverseClaimed[addr] = true; currentMetaverseMints++; return; } if (immortalsAllowList[addr] && !immortalsClaimed[addr] && currentImmortalsMints < totalImmmortalsMintsAllowed) { // Immortals list mints at regular price immortalsClaimed[addr] = true; currentImmortalsMints++; return; } } revert("Public sale is not open, and the sender is not on a list"); } function canMint(address addr) public view returns (bool) { // Closed. if (saleState == 0) return false; // Public sale is open. if (saleState == 4 && totalSupply() < MAX_TOKENS) return true; // Gauntlet hodlers if (saleState >= 1) { if (gauntlets.balanceOf(addr) > 0 && !gauntletsClaimed[addr] && currentGauntletMints < totalGauntletMintsAllowed) { return true; } } // Gauntlet hodlers + Wilder if (saleState >= 2) { if (wilderAllowList[addr] && !wilderClaimed[addr] && currentWilderMints < totalWilderMintsAllowed) { return true; } } // Gauntlet hodlers + Mods + Wilder + Metaverse + Immortals WL if (saleState >= 3) { if (metaverseAllowList[addr] && !metaverseClaimed[addr] && currentMetaverseMints < totalMetaverseMintsAllowed) { return true; } if (immortalsAllowList[addr] && !immortalsClaimed[addr] && currentImmortalsMints < totalImmmortalsMintsAllowed) { // Immortals list mints at regular price return true; } } return false; } function mint(uint num) public payable { _checkCanMint(msg.sender, num); _mintTo(msg.sender, num); } function _mintTo(address to, uint num) internal { uint newTotal = SafeMath.add(num, numMinted); require(newTotal <= MAX_TOKENS, "Minting would exceed max allowed supply"); while(numMinted < newTotal) { _mint(to, numMinted); numMinted++; } } function totalSupply() public view virtual returns (uint) { return numMinted; } function _baseURI() internal view virtual override returns (string memory) { return uri; } /** OWNER FUNCTIONS */ function ownerMint(uint num) public onlyOwner { _mintTo(msg.sender, num); } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function setSaleState(uint newState) public onlyOwner { require(newState >= 0 && newState <= 4, "Invalid state"); saleState = newState; } function addToImmortalsAllowList(address[] memory addresses) public onlyOwner { for (uint i = 0; i < addresses.length; i++) { immortalsAllowList[addresses[i]] = true; } } function addToWilderAllowList(address[] memory addresses) public onlyOwner { for (uint i = 0; i < addresses.length; i++) { wilderAllowList[addresses[i]] = true; } } function addToMetaverseAllowList(address[] memory addresses) public onlyOwner { for (uint i = 0; i < addresses.length; i++) { metaverseAllowList[addresses[i]] = true; } } function setBaseURI(string memory baseURI) public onlyOwner { uri = baseURI; } function setMintPrice(uint newPriceWei) public onlyOwner { mintPriceWei = newPriceWei; } function setEarlyMintPrice(uint newPriceWei) public onlyOwner { earlyMintPriceWei = newPriceWei; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // 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; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals 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 (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @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 {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @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); } /** * @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 _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"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = 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); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; 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"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _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; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * 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); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToImmortalsAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToMetaverseAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWilderAllowList","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentGauntletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentImmortalsMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMetaverseMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentWilderMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyMintPriceWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gauntletsClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"address"}],"name":"immortalsAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"immortalsClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxNumPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"metaverseAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"metaverseClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPriceWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","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":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceWei","type":"uint256"}],"name":"setEarlyMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceWei","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setSaleState","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalGauntletMintsAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalImmmortalsMintsAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMetaverseMintsAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWilderMintsAllowed","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":[{"internalType":"address","name":"","type":"address"}],"name":"wilderAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wilderClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060268152602001620051b46026913960079080519060200190620000359291906200027a565b507374ecb5f64363bd663abd3ef08df75dd22d853bfc600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610bb86009556000600a556103e8600b556000600c556101f4600d556000600e5561012c600f5560006010556000601855670214e8348c4f000060195566f8b0a10e470000601a556000601b55348015620000e557600080fd5b506040518060400160405280600981526020017f496d6d6f7274616c7300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f494d4f000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016a9291906200027a565b508060019080519060200190620001839291906200027a565b505050620001a66200019a620001ac60201b60201c565b620001b460201b60201c565b6200038f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000288906200032a565b90600052602060002090601f016020900481019282620002ac5760008555620002f8565b82601f10620002c757805160ff1916838001178555620002f8565b82800160010185558215620002f8579182015b82811115620002f7578251825591602001919060010190620002da565b5b5090506200030791906200030b565b5090565b5b80821115620003265760008160009055506001016200030c565b5090565b600060028204905060018216806200034357607f821691505b602082108114156200035a576200035962000360565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e15806200039f6000396000f3fe6080604052600436106102ae5760003560e01c80637f71e08811610175578063c87b56dd116100dc578063e985e9c511610095578063f47c84c51161006f578063f47c84c514610adb578063f4a0a52814610b06578063f5661fc714610b2f578063f9c9816f14610b6c576102ae565b8063e985e9c514610a4c578063f19e75d414610a89578063f2fde38b14610ab2576102ae565b8063c87b56dd14610914578063cb2c972214610951578063d0bd57461461097c578063d267a7f9146109b9578063d52079b4146109f6578063e29904c014610a21576102ae565b8063a0712d681161012e578063a0712d6814610813578063a22cb4651461082f578063ad99532914610858578063adb9e22f14610883578063b88d4fde146108ae578063c2ba4744146108d7576102ae565b80637f71e088146107175780638183744c146107405780638da5cb5b1461076b578063911f58431461079657806395d89b41146107bf5780639f42b44e146107ea576102ae565b80633ccfd60b116102195780636352211e116101d25780636352211e146105e15780636ea12f491461061e57806370a082311461065b578063715018a61461069857806372ab6459146106af5780637da3ef15146106ec576102ae565b80633ccfd60b146104e557806342842e0e146104fc57806345d054e01461052557806355f804b3146105625780635f35514b1461058b578063603f4d52146105b6576102ae565b806318160ddd1161026b57806318160ddd146103d55780631ac40fa3146104005780631b087f8f146104295780631fe115e91461045457806323b872dd1461047f57806334c821b7146104a8576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063084c408814610358578063095ea7b31461038157806317222738146103aa575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906139c6565b610b97565b6040516102e79190613f66565b60405180910390f35b3480156102fc57600080fd5b50610305610c79565b6040516103129190613f81565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613a69565b610d0b565b60405161034f9190613eff565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613a69565b610d90565b005b34801561038d57600080fd5b506103a860048036038101906103a3919061393d565b610e67565b005b3480156103b657600080fd5b506103bf610f7f565b6040516103cc91906142a3565b60405180910390f35b3480156103e157600080fd5b506103ea610f85565b6040516103f791906142a3565b60405180910390f35b34801561040c57600080fd5b506104276004803603810190610422919061397d565b610f8f565b005b34801561043557600080fd5b5061043e6110a0565b60405161044b91906142a3565b60405180910390f35b34801561046057600080fd5b506104696110a6565b60405161047691906142a3565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613827565b6110ac565b005b3480156104b457600080fd5b506104cf60048036038101906104ca91906137ba565b61110c565b6040516104dc9190613f66565b60405180910390f35b3480156104f157600080fd5b506104fa61112c565b005b34801561050857600080fd5b50610523600480360381019061051e9190613827565b6111f7565b005b34801561053157600080fd5b5061054c600480360381019061054791906137ba565b611217565b6040516105599190613f66565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190613a20565b611237565b005b34801561059757600080fd5b506105a06112cd565b6040516105ad91906142a3565b60405180910390f35b3480156105c257600080fd5b506105cb6112d3565b6040516105d891906142a3565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190613a69565b6112d9565b6040516106159190613eff565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906137ba565b61138b565b6040516106529190613f66565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d91906137ba565b6113ab565b60405161068f91906142a3565b60405180910390f35b3480156106a457600080fd5b506106ad611463565b005b3480156106bb57600080fd5b506106d660048036038101906106d191906137ba565b6114eb565b6040516106e39190613f66565b60405180910390f35b3480156106f857600080fd5b5061070161150b565b60405161070e91906142a3565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061397d565b611511565b005b34801561074c57600080fd5b50610755611622565b60405161076291906142a3565b60405180910390f35b34801561077757600080fd5b50610780611628565b60405161078d9190613eff565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190613a69565b611652565b005b3480156107cb57600080fd5b506107d46116d8565b6040516107e19190613f81565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c919061397d565b61176a565b005b61082d60048036038101906108289190613a69565b61187b565b005b34801561083b57600080fd5b50610856600480360381019061085191906138fd565b611892565b005b34801561086457600080fd5b5061086d611a13565b60405161087a91906142a3565b60405180910390f35b34801561088f57600080fd5b50610898611a19565b6040516108a591906142a3565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d0919061387a565b611a1f565b005b3480156108e357600080fd5b506108fe60048036038101906108f991906137ba565b611a81565b60405161090b9190613f66565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190613a69565b611e4a565b6040516109489190613f81565b60405180910390f35b34801561095d57600080fd5b50610966611ef1565b60405161097391906142a3565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e91906137ba565b611ef7565b6040516109b09190613f66565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db91906137ba565b611f17565b6040516109ed9190613f66565b60405180910390f35b348015610a0257600080fd5b50610a0b611f37565b604051610a1891906142a3565b60405180910390f35b348015610a2d57600080fd5b50610a36611f3d565b604051610a4391906142a3565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e91906137e7565b611f43565b604051610a809190613f66565b60405180910390f35b348015610a9557600080fd5b50610ab06004803603810190610aab9190613a69565b611fd7565b005b348015610abe57600080fd5b50610ad96004803603810190610ad491906137ba565b612060565b005b348015610ae757600080fd5b50610af0612158565b604051610afd91906142a3565b60405180910390f35b348015610b1257600080fd5b50610b2d6004803603810190610b289190613a69565b61215e565b005b348015610b3b57600080fd5b50610b566004803603810190610b5191906137ba565b6121e4565b604051610b639190613f66565b60405180910390f35b348015610b7857600080fd5b50610b81612204565b604051610b8e91906142a3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c6257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c725750610c7182612209565b5b9050919050565b606060008054610c889061457f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb49061457f565b8015610d015780601f10610cd657610100808354040283529160200191610d01565b820191906000526020600020905b815481529060010190602001808311610ce457829003601f168201915b5050505050905090565b6000610d1682612273565b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90614183565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d986122df565b73ffffffffffffffffffffffffffffffffffffffff16610db6611628565b73ffffffffffffffffffffffffffffffffffffffff1614610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e03906141c3565b60405180910390fd5b60008110158015610e1e575060048111155b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906141a3565b60405180910390fd5b8060188190555050565b6000610e72826112d9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90614243565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f026122df565b73ffffffffffffffffffffffffffffffffffffffff161480610f315750610f3081610f2b6122df565b611f43565b5b610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f67906140e3565b60405180910390fd5b610f7a83836122e7565b505050565b600b5481565b6000601b54905090565b610f976122df565b73ffffffffffffffffffffffffffffffffffffffff16610fb5611628565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611002906141c3565b60405180910390fd5b60005b815181101561109c576001601660008484815181106110305761102f6146e9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611094906145e2565b91505061100e565b5050565b600f5481565b600a5481565b6110bd6110b76122df565b826123a0565b6110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390614263565b60405180910390fd5b61110783838361247e565b505050565b60156020528060005260406000206000915054906101000a900460ff1681565b6111346122df565b73ffffffffffffffffffffffffffffffffffffffff16611152611628565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906141c3565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111f3573d6000803e3d6000fd5b5050565b61121283838360405180602001604052806000815250611a1f565b505050565b60166020528060005260406000206000915054906101000a900460ff1681565b61123f6122df565b73ffffffffffffffffffffffffffffffffffffffff1661125d611628565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa906141c3565b60405180910390fd5b80600790805190602001906112c992919061351b565b5050565b60095481565b60185481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990614123565b60405180910390fd5b80915050919050565b60176020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390614103565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146b6122df565b73ffffffffffffffffffffffffffffffffffffffff16611489611628565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906141c3565b60405180910390fd5b6114e960006126da565b565b60146020528060005260406000206000915054906101000a900460ff1681565b600d5481565b6115196122df565b73ffffffffffffffffffffffffffffffffffffffff16611537611628565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611584906141c3565b60405180910390fd5b60005b815181101561161e576001601260008484815181106115b2576115b16146e9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611616906145e2565b915050611590565b5050565b60105481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61165a6122df565b73ffffffffffffffffffffffffffffffffffffffff16611678611628565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c5906141c3565b60405180910390fd5b80601a8190555050565b6060600180546116e79061457f565b80601f01602080910402602001604051908101604052809291908181526020018280546117139061457f565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b5050505050905090565b6117726122df565b73ffffffffffffffffffffffffffffffffffffffff16611790611628565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906141c3565b60405180910390fd5b60005b81518110156118775760016014600084848151811061180b5761180a6146e9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061186f906145e2565b9150506117e9565b5050565b61188533826127a0565b61188f3382612e44565b50565b61189a6122df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90614063565b60405180910390fd5b80600560006119156122df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c26122df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a079190613f66565b60405180910390a35050565b600e5481565b601a5481565b611a30611a2a6122df565b836123a0565b611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614263565b60405180910390fd5b611a7b84848484612ed2565b50505050565b6000806018541415611a965760009050611e45565b6004601854148015611ab05750612710611aae610f85565b105b15611abe5760019050611e45565b600160185410611bea576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611b259190613eff565b60206040518083038186803b158015611b3d57600080fd5b505afa158015611b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b759190613a96565b118015611bcc5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611bdb5750600954600a54105b15611be95760019050611e45565b5b600260185410611cb557601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c975750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ca65750600b54600c54105b15611cb45760019050611e45565b5b600360185410611e4057601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d625750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d715750600d54600e54105b15611d7f5760019050611e45565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e225750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e315750600f54601054105b15611e3f5760019050611e45565b5b600090505b919050565b6060611e5582612273565b611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b90614203565b60405180910390fd5b6000611e9e612f2e565b90506000815111611ebe5760405180602001604052806000815250611ee9565b80611ec884612fc0565b604051602001611ed9929190613edb565b6040516020818303038152906040525b915050919050565b60195481565b60136020528060005260406000206000915054906101000a900460ff1681565b60126020528060005260406000206000915054906101000a900460ff1681565b601b5481565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fdf6122df565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611628565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a906141c3565b60405180910390fd5b61205d3382612e44565b50565b6120686122df565b73ffffffffffffffffffffffffffffffffffffffff16612086611628565b73ffffffffffffffffffffffffffffffffffffffff16146120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d3906141c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390613fe3565b60405180910390fd5b612155816126da565b50565b61271081565b6121666122df565b73ffffffffffffffffffffffffffffffffffffffff16612184611628565b73ffffffffffffffffffffffffffffffffffffffff16146121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d1906141c3565b60405180910390fd5b8060198190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661235a836112d9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123ab82612273565b6123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190614083565b60405180910390fd5b60006123f5836112d9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061246457508373ffffffffffffffffffffffffffffffffffffffff1661244c84610d0b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061247557506124748185611f43565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661249e826112d9565b73ffffffffffffffffffffffffffffffffffffffff16146124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb906141e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b90614043565b60405180910390fd5b61256f838383613121565b61257a6000826122e7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ca9190614495565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262191906143b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601854116127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc90613fa3565b60405180910390fd5b6004601854141561288757600a811115612834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282b90614283565b60405180910390fd5b61284081601954613126565b341015612882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612879906140a3565b60405180910390fd5b612e40565b600181146128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c1906140c3565b60405180910390fd5b6128d38161313c565b600160185410612a6b576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161293a9190613eff565b60206040518083038186803b15801561295257600080fd5b505afa158015612966573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298a9190613a96565b1180156129e15750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129f05750600954600a54105b15612a6a576001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a6000815480929190612a60906145e2565b9190505550612e40565b5b600260185410612ba257601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b185750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b275750600b54600c54105b15612ba1576001601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c6000815480929190612b97906145e2565b9190505550612e40565b5b600360185410612e0557601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4f5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c5e5750600d54600e54105b15612cd8576001601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600e6000815480929190612cce906145e2565b9190505550612e40565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d7b5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d8a5750600f54601054105b15612e04576001601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060106000815480929190612dfa906145e2565b9190505550612e40565b5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790614143565b60405180910390fd5b5050565b6000612e5282601b5461318d565b9050612710811115612e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9090614023565b60405180910390fd5b5b80601b541015612ecd57612eb083601b546131a3565b601b6000815480929190612ec3906145e2565b9190505550612e9a565b505050565b612edd84848461247e565b612ee984848484613371565b612f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1f90613fc3565b60405180910390fd5b50505050565b606060078054612f3d9061457f565b80601f0160208091040260200160405190810160405280929190818152602001828054612f699061457f565b8015612fb65780601f10612f8b57610100808354040283529160200191612fb6565b820191906000526020600020905b815481529060010190602001808311612f9957829003601f168201915b5050505050905090565b60606000821415613008576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061311c565b600082905060005b6000821461303a578080613023906145e2565b915050600a82613033919061440a565b9150613010565b60008167ffffffffffffffff81111561305657613055614718565b5b6040519080825280601f01601f1916602001820160405280156130885781602001600182028036833780820191505090505b5090505b60008514613115576001826130a19190614495565b9150600a856130b0919061462b565b60306130bc91906143b4565b60f81b8183815181106130d2576130d16146e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561310e919061440a565b945061308c565b8093505050505b919050565b505050565b60008183613134919061443b565b905092915050565b61314881601a54613126565b34101561318a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318190614223565b60405180910390fd5b50565b6000818361319b91906143b4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320a90614163565b60405180910390fd5b61321c81612273565b1561325c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325390614003565b60405180910390fd5b61326860008383613121565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132b891906143b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006133928473ffffffffffffffffffffffffffffffffffffffff16613508565b156134fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133bb6122df565b8786866040518563ffffffff1660e01b81526004016133dd9493929190613f1a565b602060405180830381600087803b1580156133f757600080fd5b505af192505050801561342857506040513d601f19601f8201168201806040525081019061342591906139f3565b60015b6134ab573d8060008114613458576040519150601f19603f3d011682016040523d82523d6000602084013e61345d565b606091505b506000815114156134a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349a90613fc3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613500565b600190505b949350505050565b600080823b905060008111915050919050565b8280546135279061457f565b90600052602060002090601f0160209004810192826135495760008555613590565b82601f1061356257805160ff1916838001178555613590565b82800160010185558215613590579182015b8281111561358f578251825591602001919060010190613574565b5b50905061359d91906135a1565b5090565b5b808211156135ba5760008160009055506001016135a2565b5090565b60006135d16135cc846142e3565b6142be565b905080838252602082019050828560208602820111156135f4576135f361474c565b5b60005b85811015613624578161360a88826136b2565b8452602084019350602083019250506001810190506135f7565b5050509392505050565b600061364161363c8461430f565b6142be565b90508281526020810184848401111561365d5761365c614751565b5b61366884828561453d565b509392505050565b600061368361367e84614340565b6142be565b90508281526020810184848401111561369f5761369e614751565b5b6136aa84828561453d565b509392505050565b6000813590506136c181614d83565b92915050565b600082601f8301126136dc576136db614747565b5b81356136ec8482602086016135be565b91505092915050565b60008135905061370481614d9a565b92915050565b60008135905061371981614db1565b92915050565b60008151905061372e81614db1565b92915050565b600082601f83011261374957613748614747565b5b813561375984826020860161362e565b91505092915050565b600082601f83011261377757613776614747565b5b8135613787848260208601613670565b91505092915050565b60008135905061379f81614dc8565b92915050565b6000815190506137b481614dc8565b92915050565b6000602082840312156137d0576137cf61475b565b5b60006137de848285016136b2565b91505092915050565b600080604083850312156137fe576137fd61475b565b5b600061380c858286016136b2565b925050602061381d858286016136b2565b9150509250929050565b6000806000606084860312156138405761383f61475b565b5b600061384e868287016136b2565b935050602061385f868287016136b2565b925050604061387086828701613790565b9150509250925092565b600080600080608085870312156138945761389361475b565b5b60006138a2878288016136b2565b94505060206138b3878288016136b2565b93505060406138c487828801613790565b925050606085013567ffffffffffffffff8111156138e5576138e4614756565b5b6138f187828801613734565b91505092959194509250565b600080604083850312156139145761391361475b565b5b6000613922858286016136b2565b9250506020613933858286016136f5565b9150509250929050565b600080604083850312156139545761395361475b565b5b6000613962858286016136b2565b925050602061397385828601613790565b9150509250929050565b6000602082840312156139935761399261475b565b5b600082013567ffffffffffffffff8111156139b1576139b0614756565b5b6139bd848285016136c7565b91505092915050565b6000602082840312156139dc576139db61475b565b5b60006139ea8482850161370a565b91505092915050565b600060208284031215613a0957613a0861475b565b5b6000613a178482850161371f565b91505092915050565b600060208284031215613a3657613a3561475b565b5b600082013567ffffffffffffffff811115613a5457613a53614756565b5b613a6084828501613762565b91505092915050565b600060208284031215613a7f57613a7e61475b565b5b6000613a8d84828501613790565b91505092915050565b600060208284031215613aac57613aab61475b565b5b6000613aba848285016137a5565b91505092915050565b613acc816144c9565b82525050565b613adb816144db565b82525050565b6000613aec82614371565b613af68185614387565b9350613b0681856020860161454c565b613b0f81614760565b840191505092915050565b6000613b258261437c565b613b2f8185614398565b9350613b3f81856020860161454c565b613b4881614760565b840191505092915050565b6000613b5e8261437c565b613b6881856143a9565b9350613b7881856020860161454c565b80840191505092915050565b6000613b91600e83614398565b9150613b9c82614771565b602082019050919050565b6000613bb4603283614398565b9150613bbf8261479a565b604082019050919050565b6000613bd7602683614398565b9150613be2826147e9565b604082019050919050565b6000613bfa601c83614398565b9150613c0582614838565b602082019050919050565b6000613c1d602783614398565b9150613c2882614861565b604082019050919050565b6000613c40602483614398565b9150613c4b826148b0565b604082019050919050565b6000613c63601983614398565b9150613c6e826148ff565b602082019050919050565b6000613c86602c83614398565b9150613c9182614928565b604082019050919050565b6000613ca9601983614398565b9150613cb482614977565b602082019050919050565b6000613ccc601f83614398565b9150613cd7826149a0565b602082019050919050565b6000613cef603883614398565b9150613cfa826149c9565b604082019050919050565b6000613d12602a83614398565b9150613d1d82614a18565b604082019050919050565b6000613d35602983614398565b9150613d4082614a67565b604082019050919050565b6000613d58603883614398565b9150613d6382614ab6565b604082019050919050565b6000613d7b602083614398565b9150613d8682614b05565b602082019050919050565b6000613d9e602c83614398565b9150613da982614b2e565b604082019050919050565b6000613dc1600d83614398565b9150613dcc82614b7d565b602082019050919050565b6000613de4602083614398565b9150613def82614ba6565b602082019050919050565b6000613e07602983614398565b9150613e1282614bcf565b604082019050919050565b6000613e2a602f83614398565b9150613e3582614c1e565b604082019050919050565b6000613e4d601883614398565b9150613e5882614c6d565b602082019050919050565b6000613e70602183614398565b9150613e7b82614c96565b604082019050919050565b6000613e93603183614398565b9150613e9e82614ce5565b604082019050919050565b6000613eb6602183614398565b9150613ec182614d34565b604082019050919050565b613ed581614533565b82525050565b6000613ee78285613b53565b9150613ef38284613b53565b91508190509392505050565b6000602082019050613f146000830184613ac3565b92915050565b6000608082019050613f2f6000830187613ac3565b613f3c6020830186613ac3565b613f496040830185613ecc565b8181036060830152613f5b8184613ae1565b905095945050505050565b6000602082019050613f7b6000830184613ad2565b92915050565b60006020820190508181036000830152613f9b8184613b1a565b905092915050565b60006020820190508181036000830152613fbc81613b84565b9050919050565b60006020820190508181036000830152613fdc81613ba7565b9050919050565b60006020820190508181036000830152613ffc81613bca565b9050919050565b6000602082019050818103600083015261401c81613bed565b9050919050565b6000602082019050818103600083015261403c81613c10565b9050919050565b6000602082019050818103600083015261405c81613c33565b9050919050565b6000602082019050818103600083015261407c81613c56565b9050919050565b6000602082019050818103600083015261409c81613c79565b9050919050565b600060208201905081810360008301526140bc81613c9c565b9050919050565b600060208201905081810360008301526140dc81613cbf565b9050919050565b600060208201905081810360008301526140fc81613ce2565b9050919050565b6000602082019050818103600083015261411c81613d05565b9050919050565b6000602082019050818103600083015261413c81613d28565b9050919050565b6000602082019050818103600083015261415c81613d4b565b9050919050565b6000602082019050818103600083015261417c81613d6e565b9050919050565b6000602082019050818103600083015261419c81613d91565b9050919050565b600060208201905081810360008301526141bc81613db4565b9050919050565b600060208201905081810360008301526141dc81613dd7565b9050919050565b600060208201905081810360008301526141fc81613dfa565b9050919050565b6000602082019050818103600083015261421c81613e1d565b9050919050565b6000602082019050818103600083015261423c81613e40565b9050919050565b6000602082019050818103600083015261425c81613e63565b9050919050565b6000602082019050818103600083015261427c81613e86565b9050919050565b6000602082019050818103600083015261429c81613ea9565b9050919050565b60006020820190506142b86000830184613ecc565b92915050565b60006142c86142d9565b90506142d482826145b1565b919050565b6000604051905090565b600067ffffffffffffffff8211156142fe576142fd614718565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561432a57614329614718565b5b61433382614760565b9050602081019050919050565b600067ffffffffffffffff82111561435b5761435a614718565b5b61436482614760565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143bf82614533565b91506143ca83614533565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ff576143fe61465c565b5b828201905092915050565b600061441582614533565b915061442083614533565b9250826144305761442f61468b565b5b828204905092915050565b600061444682614533565b915061445183614533565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561448a5761448961465c565b5b828202905092915050565b60006144a082614533565b91506144ab83614533565b9250828210156144be576144bd61465c565b5b828203905092915050565b60006144d482614513565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561456a57808201518184015260208101905061454f565b83811115614579576000848401525b50505050565b6000600282049050600182168061459757607f821691505b602082108114156145ab576145aa6146ba565b5b50919050565b6145ba82614760565b810181811067ffffffffffffffff821117156145d9576145d8614718565b5b80604052505050565b60006145ed82614533565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146205761461f61465c565b5b600182019050919050565b600061463682614533565b915061464183614533565b9250826146515761465061468b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820616c6c6f77656460008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e742073656e742000000000000000600082015250565b7f43616e206f6e6c79206d696e74203120696e206561726c792061636365737300600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e2c20616e642074686560008201527f2073656e646572206973206e6f74206f6e2061206c6973740000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e742073656e740000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b614d8c816144c9565b8114614d9757600080fd5b50565b614da3816144db565b8114614dae57600080fd5b50565b614dba816144e7565b8114614dc557600080fd5b50565b614dd181614533565b8114614ddc57600080fd5b5056fea26469706673582212209bceb997da6351d24167ba296521416d32acf79478539b5a8eaac9d70b08092964736f6c6343000807003368747470733a2f2f6173736574732e626f737364726f70732e696f2f696d6d6f7274616c732f
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c80637f71e08811610175578063c87b56dd116100dc578063e985e9c511610095578063f47c84c51161006f578063f47c84c514610adb578063f4a0a52814610b06578063f5661fc714610b2f578063f9c9816f14610b6c576102ae565b8063e985e9c514610a4c578063f19e75d414610a89578063f2fde38b14610ab2576102ae565b8063c87b56dd14610914578063cb2c972214610951578063d0bd57461461097c578063d267a7f9146109b9578063d52079b4146109f6578063e29904c014610a21576102ae565b8063a0712d681161012e578063a0712d6814610813578063a22cb4651461082f578063ad99532914610858578063adb9e22f14610883578063b88d4fde146108ae578063c2ba4744146108d7576102ae565b80637f71e088146107175780638183744c146107405780638da5cb5b1461076b578063911f58431461079657806395d89b41146107bf5780639f42b44e146107ea576102ae565b80633ccfd60b116102195780636352211e116101d25780636352211e146105e15780636ea12f491461061e57806370a082311461065b578063715018a61461069857806372ab6459146106af5780637da3ef15146106ec576102ae565b80633ccfd60b146104e557806342842e0e146104fc57806345d054e01461052557806355f804b3146105625780635f35514b1461058b578063603f4d52146105b6576102ae565b806318160ddd1161026b57806318160ddd146103d55780631ac40fa3146104005780631b087f8f146104295780631fe115e91461045457806323b872dd1461047f57806334c821b7146104a8576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063084c408814610358578063095ea7b31461038157806317222738146103aa575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906139c6565b610b97565b6040516102e79190613f66565b60405180910390f35b3480156102fc57600080fd5b50610305610c79565b6040516103129190613f81565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613a69565b610d0b565b60405161034f9190613eff565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613a69565b610d90565b005b34801561038d57600080fd5b506103a860048036038101906103a3919061393d565b610e67565b005b3480156103b657600080fd5b506103bf610f7f565b6040516103cc91906142a3565b60405180910390f35b3480156103e157600080fd5b506103ea610f85565b6040516103f791906142a3565b60405180910390f35b34801561040c57600080fd5b506104276004803603810190610422919061397d565b610f8f565b005b34801561043557600080fd5b5061043e6110a0565b60405161044b91906142a3565b60405180910390f35b34801561046057600080fd5b506104696110a6565b60405161047691906142a3565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613827565b6110ac565b005b3480156104b457600080fd5b506104cf60048036038101906104ca91906137ba565b61110c565b6040516104dc9190613f66565b60405180910390f35b3480156104f157600080fd5b506104fa61112c565b005b34801561050857600080fd5b50610523600480360381019061051e9190613827565b6111f7565b005b34801561053157600080fd5b5061054c600480360381019061054791906137ba565b611217565b6040516105599190613f66565b60405180910390f35b34801561056e57600080fd5b5061058960048036038101906105849190613a20565b611237565b005b34801561059757600080fd5b506105a06112cd565b6040516105ad91906142a3565b60405180910390f35b3480156105c257600080fd5b506105cb6112d3565b6040516105d891906142a3565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190613a69565b6112d9565b6040516106159190613eff565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906137ba565b61138b565b6040516106529190613f66565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d91906137ba565b6113ab565b60405161068f91906142a3565b60405180910390f35b3480156106a457600080fd5b506106ad611463565b005b3480156106bb57600080fd5b506106d660048036038101906106d191906137ba565b6114eb565b6040516106e39190613f66565b60405180910390f35b3480156106f857600080fd5b5061070161150b565b60405161070e91906142a3565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061397d565b611511565b005b34801561074c57600080fd5b50610755611622565b60405161076291906142a3565b60405180910390f35b34801561077757600080fd5b50610780611628565b60405161078d9190613eff565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190613a69565b611652565b005b3480156107cb57600080fd5b506107d46116d8565b6040516107e19190613f81565b60405180910390f35b3480156107f657600080fd5b50610811600480360381019061080c919061397d565b61176a565b005b61082d60048036038101906108289190613a69565b61187b565b005b34801561083b57600080fd5b50610856600480360381019061085191906138fd565b611892565b005b34801561086457600080fd5b5061086d611a13565b60405161087a91906142a3565b60405180910390f35b34801561088f57600080fd5b50610898611a19565b6040516108a591906142a3565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d0919061387a565b611a1f565b005b3480156108e357600080fd5b506108fe60048036038101906108f991906137ba565b611a81565b60405161090b9190613f66565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190613a69565b611e4a565b6040516109489190613f81565b60405180910390f35b34801561095d57600080fd5b50610966611ef1565b60405161097391906142a3565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e91906137ba565b611ef7565b6040516109b09190613f66565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db91906137ba565b611f17565b6040516109ed9190613f66565b60405180910390f35b348015610a0257600080fd5b50610a0b611f37565b604051610a1891906142a3565b60405180910390f35b348015610a2d57600080fd5b50610a36611f3d565b604051610a4391906142a3565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e91906137e7565b611f43565b604051610a809190613f66565b60405180910390f35b348015610a9557600080fd5b50610ab06004803603810190610aab9190613a69565b611fd7565b005b348015610abe57600080fd5b50610ad96004803603810190610ad491906137ba565b612060565b005b348015610ae757600080fd5b50610af0612158565b604051610afd91906142a3565b60405180910390f35b348015610b1257600080fd5b50610b2d6004803603810190610b289190613a69565b61215e565b005b348015610b3b57600080fd5b50610b566004803603810190610b5191906137ba565b6121e4565b604051610b639190613f66565b60405180910390f35b348015610b7857600080fd5b50610b81612204565b604051610b8e91906142a3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c6257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c725750610c7182612209565b5b9050919050565b606060008054610c889061457f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb49061457f565b8015610d015780601f10610cd657610100808354040283529160200191610d01565b820191906000526020600020905b815481529060010190602001808311610ce457829003601f168201915b5050505050905090565b6000610d1682612273565b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90614183565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d986122df565b73ffffffffffffffffffffffffffffffffffffffff16610db6611628565b73ffffffffffffffffffffffffffffffffffffffff1614610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e03906141c3565b60405180910390fd5b60008110158015610e1e575060048111155b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906141a3565b60405180910390fd5b8060188190555050565b6000610e72826112d9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90614243565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f026122df565b73ffffffffffffffffffffffffffffffffffffffff161480610f315750610f3081610f2b6122df565b611f43565b5b610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f67906140e3565b60405180910390fd5b610f7a83836122e7565b505050565b600b5481565b6000601b54905090565b610f976122df565b73ffffffffffffffffffffffffffffffffffffffff16610fb5611628565b73ffffffffffffffffffffffffffffffffffffffff161461100b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611002906141c3565b60405180910390fd5b60005b815181101561109c576001601660008484815181106110305761102f6146e9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611094906145e2565b91505061100e565b5050565b600f5481565b600a5481565b6110bd6110b76122df565b826123a0565b6110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390614263565b60405180910390fd5b61110783838361247e565b505050565b60156020528060005260406000206000915054906101000a900460ff1681565b6111346122df565b73ffffffffffffffffffffffffffffffffffffffff16611152611628565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f906141c3565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111f3573d6000803e3d6000fd5b5050565b61121283838360405180602001604052806000815250611a1f565b505050565b60166020528060005260406000206000915054906101000a900460ff1681565b61123f6122df565b73ffffffffffffffffffffffffffffffffffffffff1661125d611628565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa906141c3565b60405180910390fd5b80600790805190602001906112c992919061351b565b5050565b60095481565b60185481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990614123565b60405180910390fd5b80915050919050565b60176020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390614103565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146b6122df565b73ffffffffffffffffffffffffffffffffffffffff16611489611628565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906141c3565b60405180910390fd5b6114e960006126da565b565b60146020528060005260406000206000915054906101000a900460ff1681565b600d5481565b6115196122df565b73ffffffffffffffffffffffffffffffffffffffff16611537611628565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611584906141c3565b60405180910390fd5b60005b815181101561161e576001601260008484815181106115b2576115b16146e9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611616906145e2565b915050611590565b5050565b60105481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61165a6122df565b73ffffffffffffffffffffffffffffffffffffffff16611678611628565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c5906141c3565b60405180910390fd5b80601a8190555050565b6060600180546116e79061457f565b80601f01602080910402602001604051908101604052809291908181526020018280546117139061457f565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b5050505050905090565b6117726122df565b73ffffffffffffffffffffffffffffffffffffffff16611790611628565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906141c3565b60405180910390fd5b60005b81518110156118775760016014600084848151811061180b5761180a6146e9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061186f906145e2565b9150506117e9565b5050565b61188533826127a0565b61188f3382612e44565b50565b61189a6122df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90614063565b60405180910390fd5b80600560006119156122df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c26122df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a079190613f66565b60405180910390a35050565b600e5481565b601a5481565b611a30611a2a6122df565b836123a0565b611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614263565b60405180910390fd5b611a7b84848484612ed2565b50505050565b6000806018541415611a965760009050611e45565b6004601854148015611ab05750612710611aae610f85565b105b15611abe5760019050611e45565b600160185410611bea576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611b259190613eff565b60206040518083038186803b158015611b3d57600080fd5b505afa158015611b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b759190613a96565b118015611bcc5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611bdb5750600954600a54105b15611be95760019050611e45565b5b600260185410611cb557601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c975750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ca65750600b54600c54105b15611cb45760019050611e45565b5b600360185410611e4057601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d625750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d715750600d54600e54105b15611d7f5760019050611e45565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e225750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e315750600f54601054105b15611e3f5760019050611e45565b5b600090505b919050565b6060611e5582612273565b611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b90614203565b60405180910390fd5b6000611e9e612f2e565b90506000815111611ebe5760405180602001604052806000815250611ee9565b80611ec884612fc0565b604051602001611ed9929190613edb565b6040516020818303038152906040525b915050919050565b60195481565b60136020528060005260406000206000915054906101000a900460ff1681565b60126020528060005260406000206000915054906101000a900460ff1681565b601b5481565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fdf6122df565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611628565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a906141c3565b60405180910390fd5b61205d3382612e44565b50565b6120686122df565b73ffffffffffffffffffffffffffffffffffffffff16612086611628565b73ffffffffffffffffffffffffffffffffffffffff16146120dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d3906141c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390613fe3565b60405180910390fd5b612155816126da565b50565b61271081565b6121666122df565b73ffffffffffffffffffffffffffffffffffffffff16612184611628565b73ffffffffffffffffffffffffffffffffffffffff16146121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d1906141c3565b60405180910390fd5b8060198190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661235a836112d9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123ab82612273565b6123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190614083565b60405180910390fd5b60006123f5836112d9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061246457508373ffffffffffffffffffffffffffffffffffffffff1661244c84610d0b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061247557506124748185611f43565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661249e826112d9565b73ffffffffffffffffffffffffffffffffffffffff16146124f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124eb906141e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255b90614043565b60405180910390fd5b61256f838383613121565b61257a6000826122e7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ca9190614495565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262191906143b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601854116127e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127dc90613fa3565b60405180910390fd5b6004601854141561288757600a811115612834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282b90614283565b60405180910390fd5b61284081601954613126565b341015612882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612879906140a3565b60405180910390fd5b612e40565b600181146128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c1906140c3565b60405180910390fd5b6128d38161313c565b600160185410612a6b576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161293a9190613eff565b60206040518083038186803b15801561295257600080fd5b505afa158015612966573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298a9190613a96565b1180156129e15750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129f05750600954600a54105b15612a6a576001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a6000815480929190612a60906145e2565b9190505550612e40565b5b600260185410612ba257601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b185750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b275750600b54600c54105b15612ba1576001601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c6000815480929190612b97906145e2565b9190505550612e40565b5b600360185410612e0557601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4f5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c5e5750600d54600e54105b15612cd8576001601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600e6000815480929190612cce906145e2565b9190505550612e40565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d7b5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d8a5750600f54601054105b15612e04576001601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060106000815480929190612dfa906145e2565b9190505550612e40565b5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790614143565b60405180910390fd5b5050565b6000612e5282601b5461318d565b9050612710811115612e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9090614023565b60405180910390fd5b5b80601b541015612ecd57612eb083601b546131a3565b601b6000815480929190612ec3906145e2565b9190505550612e9a565b505050565b612edd84848461247e565b612ee984848484613371565b612f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1f90613fc3565b60405180910390fd5b50505050565b606060078054612f3d9061457f565b80601f0160208091040260200160405190810160405280929190818152602001828054612f699061457f565b8015612fb65780601f10612f8b57610100808354040283529160200191612fb6565b820191906000526020600020905b815481529060010190602001808311612f9957829003601f168201915b5050505050905090565b60606000821415613008576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061311c565b600082905060005b6000821461303a578080613023906145e2565b915050600a82613033919061440a565b9150613010565b60008167ffffffffffffffff81111561305657613055614718565b5b6040519080825280601f01601f1916602001820160405280156130885781602001600182028036833780820191505090505b5090505b60008514613115576001826130a19190614495565b9150600a856130b0919061462b565b60306130bc91906143b4565b60f81b8183815181106130d2576130d16146e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561310e919061440a565b945061308c565b8093505050505b919050565b505050565b60008183613134919061443b565b905092915050565b61314881601a54613126565b34101561318a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318190614223565b60405180910390fd5b50565b6000818361319b91906143b4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320a90614163565b60405180910390fd5b61321c81612273565b1561325c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325390614003565b60405180910390fd5b61326860008383613121565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132b891906143b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006133928473ffffffffffffffffffffffffffffffffffffffff16613508565b156134fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133bb6122df565b8786866040518563ffffffff1660e01b81526004016133dd9493929190613f1a565b602060405180830381600087803b1580156133f757600080fd5b505af192505050801561342857506040513d601f19601f8201168201806040525081019061342591906139f3565b60015b6134ab573d8060008114613458576040519150601f19603f3d011682016040523d82523d6000602084013e61345d565b606091505b506000815114156134a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349a90613fc3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613500565b600190505b949350505050565b600080823b905060008111915050919050565b8280546135279061457f565b90600052602060002090601f0160209004810192826135495760008555613590565b82601f1061356257805160ff1916838001178555613590565b82800160010185558215613590579182015b8281111561358f578251825591602001919060010190613574565b5b50905061359d91906135a1565b5090565b5b808211156135ba5760008160009055506001016135a2565b5090565b60006135d16135cc846142e3565b6142be565b905080838252602082019050828560208602820111156135f4576135f361474c565b5b60005b85811015613624578161360a88826136b2565b8452602084019350602083019250506001810190506135f7565b5050509392505050565b600061364161363c8461430f565b6142be565b90508281526020810184848401111561365d5761365c614751565b5b61366884828561453d565b509392505050565b600061368361367e84614340565b6142be565b90508281526020810184848401111561369f5761369e614751565b5b6136aa84828561453d565b509392505050565b6000813590506136c181614d83565b92915050565b600082601f8301126136dc576136db614747565b5b81356136ec8482602086016135be565b91505092915050565b60008135905061370481614d9a565b92915050565b60008135905061371981614db1565b92915050565b60008151905061372e81614db1565b92915050565b600082601f83011261374957613748614747565b5b813561375984826020860161362e565b91505092915050565b600082601f83011261377757613776614747565b5b8135613787848260208601613670565b91505092915050565b60008135905061379f81614dc8565b92915050565b6000815190506137b481614dc8565b92915050565b6000602082840312156137d0576137cf61475b565b5b60006137de848285016136b2565b91505092915050565b600080604083850312156137fe576137fd61475b565b5b600061380c858286016136b2565b925050602061381d858286016136b2565b9150509250929050565b6000806000606084860312156138405761383f61475b565b5b600061384e868287016136b2565b935050602061385f868287016136b2565b925050604061387086828701613790565b9150509250925092565b600080600080608085870312156138945761389361475b565b5b60006138a2878288016136b2565b94505060206138b3878288016136b2565b93505060406138c487828801613790565b925050606085013567ffffffffffffffff8111156138e5576138e4614756565b5b6138f187828801613734565b91505092959194509250565b600080604083850312156139145761391361475b565b5b6000613922858286016136b2565b9250506020613933858286016136f5565b9150509250929050565b600080604083850312156139545761395361475b565b5b6000613962858286016136b2565b925050602061397385828601613790565b9150509250929050565b6000602082840312156139935761399261475b565b5b600082013567ffffffffffffffff8111156139b1576139b0614756565b5b6139bd848285016136c7565b91505092915050565b6000602082840312156139dc576139db61475b565b5b60006139ea8482850161370a565b91505092915050565b600060208284031215613a0957613a0861475b565b5b6000613a178482850161371f565b91505092915050565b600060208284031215613a3657613a3561475b565b5b600082013567ffffffffffffffff811115613a5457613a53614756565b5b613a6084828501613762565b91505092915050565b600060208284031215613a7f57613a7e61475b565b5b6000613a8d84828501613790565b91505092915050565b600060208284031215613aac57613aab61475b565b5b6000613aba848285016137a5565b91505092915050565b613acc816144c9565b82525050565b613adb816144db565b82525050565b6000613aec82614371565b613af68185614387565b9350613b0681856020860161454c565b613b0f81614760565b840191505092915050565b6000613b258261437c565b613b2f8185614398565b9350613b3f81856020860161454c565b613b4881614760565b840191505092915050565b6000613b5e8261437c565b613b6881856143a9565b9350613b7881856020860161454c565b80840191505092915050565b6000613b91600e83614398565b9150613b9c82614771565b602082019050919050565b6000613bb4603283614398565b9150613bbf8261479a565b604082019050919050565b6000613bd7602683614398565b9150613be2826147e9565b604082019050919050565b6000613bfa601c83614398565b9150613c0582614838565b602082019050919050565b6000613c1d602783614398565b9150613c2882614861565b604082019050919050565b6000613c40602483614398565b9150613c4b826148b0565b604082019050919050565b6000613c63601983614398565b9150613c6e826148ff565b602082019050919050565b6000613c86602c83614398565b9150613c9182614928565b604082019050919050565b6000613ca9601983614398565b9150613cb482614977565b602082019050919050565b6000613ccc601f83614398565b9150613cd7826149a0565b602082019050919050565b6000613cef603883614398565b9150613cfa826149c9565b604082019050919050565b6000613d12602a83614398565b9150613d1d82614a18565b604082019050919050565b6000613d35602983614398565b9150613d4082614a67565b604082019050919050565b6000613d58603883614398565b9150613d6382614ab6565b604082019050919050565b6000613d7b602083614398565b9150613d8682614b05565b602082019050919050565b6000613d9e602c83614398565b9150613da982614b2e565b604082019050919050565b6000613dc1600d83614398565b9150613dcc82614b7d565b602082019050919050565b6000613de4602083614398565b9150613def82614ba6565b602082019050919050565b6000613e07602983614398565b9150613e1282614bcf565b604082019050919050565b6000613e2a602f83614398565b9150613e3582614c1e565b604082019050919050565b6000613e4d601883614398565b9150613e5882614c6d565b602082019050919050565b6000613e70602183614398565b9150613e7b82614c96565b604082019050919050565b6000613e93603183614398565b9150613e9e82614ce5565b604082019050919050565b6000613eb6602183614398565b9150613ec182614d34565b604082019050919050565b613ed581614533565b82525050565b6000613ee78285613b53565b9150613ef38284613b53565b91508190509392505050565b6000602082019050613f146000830184613ac3565b92915050565b6000608082019050613f2f6000830187613ac3565b613f3c6020830186613ac3565b613f496040830185613ecc565b8181036060830152613f5b8184613ae1565b905095945050505050565b6000602082019050613f7b6000830184613ad2565b92915050565b60006020820190508181036000830152613f9b8184613b1a565b905092915050565b60006020820190508181036000830152613fbc81613b84565b9050919050565b60006020820190508181036000830152613fdc81613ba7565b9050919050565b60006020820190508181036000830152613ffc81613bca565b9050919050565b6000602082019050818103600083015261401c81613bed565b9050919050565b6000602082019050818103600083015261403c81613c10565b9050919050565b6000602082019050818103600083015261405c81613c33565b9050919050565b6000602082019050818103600083015261407c81613c56565b9050919050565b6000602082019050818103600083015261409c81613c79565b9050919050565b600060208201905081810360008301526140bc81613c9c565b9050919050565b600060208201905081810360008301526140dc81613cbf565b9050919050565b600060208201905081810360008301526140fc81613ce2565b9050919050565b6000602082019050818103600083015261411c81613d05565b9050919050565b6000602082019050818103600083015261413c81613d28565b9050919050565b6000602082019050818103600083015261415c81613d4b565b9050919050565b6000602082019050818103600083015261417c81613d6e565b9050919050565b6000602082019050818103600083015261419c81613d91565b9050919050565b600060208201905081810360008301526141bc81613db4565b9050919050565b600060208201905081810360008301526141dc81613dd7565b9050919050565b600060208201905081810360008301526141fc81613dfa565b9050919050565b6000602082019050818103600083015261421c81613e1d565b9050919050565b6000602082019050818103600083015261423c81613e40565b9050919050565b6000602082019050818103600083015261425c81613e63565b9050919050565b6000602082019050818103600083015261427c81613e86565b9050919050565b6000602082019050818103600083015261429c81613ea9565b9050919050565b60006020820190506142b86000830184613ecc565b92915050565b60006142c86142d9565b90506142d482826145b1565b919050565b6000604051905090565b600067ffffffffffffffff8211156142fe576142fd614718565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561432a57614329614718565b5b61433382614760565b9050602081019050919050565b600067ffffffffffffffff82111561435b5761435a614718565b5b61436482614760565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143bf82614533565b91506143ca83614533565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143ff576143fe61465c565b5b828201905092915050565b600061441582614533565b915061442083614533565b9250826144305761442f61468b565b5b828204905092915050565b600061444682614533565b915061445183614533565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561448a5761448961465c565b5b828202905092915050565b60006144a082614533565b91506144ab83614533565b9250828210156144be576144bd61465c565b5b828203905092915050565b60006144d482614513565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561456a57808201518184015260208101905061454f565b83811115614579576000848401525b50505050565b6000600282049050600182168061459757607f821691505b602082108114156145ab576145aa6146ba565b5b50919050565b6145ba82614760565b810181811067ffffffffffffffff821117156145d9576145d8614718565b5b80604052505050565b60006145ed82614533565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146205761461f61465c565b5b600182019050919050565b600061463682614533565b915061464183614533565b9250826146515761465061468b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820616c6c6f77656460008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e742073656e742000000000000000600082015250565b7f43616e206f6e6c79206d696e74203120696e206561726c792061636365737300600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e2c20616e642074686560008201527f2073656e646572206973206e6f74206f6e2061206c6973740000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420616d6f756e742073656e740000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b614d8c816144c9565b8114614d9757600080fd5b50565b614da3816144db565b8114614dae57600080fd5b50565b614dba816144e7565b8114614dc557600080fd5b50565b614dd181614533565b8114614ddc57600080fd5b5056fea26469706673582212209bceb997da6351d24167ba296521416d32acf79478539b5a8eaac9d70b08092964736f6c63430008070033
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.