ERC-721
Overview
Max Total Supply
943 MARC
Holders
773
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MARCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MechaARC
Compiler Version
v0.8.4+commit.c7e474f2
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; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract MechaARC is ERC721A, Ownable { using Address for address; using Strings for uint256; string public baseURI; bytes32 public merkleRoot; uint256 public constant MAX_APE = 8000; uint256 public constant TOTAL_WHITELIST = 800; uint256 public constant MAX_WHITELIST = 1; uint256 public constant MAX_PUBLIC = 20; string public constant BASE_EXTENSION = ".json"; uint256 public constant PRICE = 0.049 ether; bool public presaleActive = false; bool public saleActive = false; mapping (address => uint256) public presaleWhitelist; constructor() ERC721A("MechaARC", "MARC", MAX_PUBLIC) { } function presaleMint(bytes32[] calldata _merkleProof) private { uint256 total = presaleWhitelist[msg.sender] + 1; if(presaleActive){ bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof"); } require(total <= MAX_WHITELIST, "Can't mint more than reserved"); presaleWhitelist[msg.sender] = total; _safeMint( msg.sender, 1 ); } function publicMint(uint256 _numberOfMints) private { require(_numberOfMints > 0 && _numberOfMints <= MAX_PUBLIC, "Invalid purchase amount"); require(totalSupply() + _numberOfMints <= MAX_APE, "Purchase would exceed max supply of tokens"); require(PRICE * _numberOfMints == msg.value, "Ether value sent is not correct"); _safeMint( msg.sender, _numberOfMints ); } function mint(bytes32[] calldata _merkleProof, uint256 _numberOfMints) public payable { require(presaleActive || saleActive, "Not started"); require(tx.origin == msg.sender, "What ya doing?"); if(presaleActive || totalSupply() < TOTAL_WHITELIST){ presaleMint(_merkleProof); } else { publicMint(_numberOfMints); } } function togglePresale() public onlyOwner { presaleActive = !presaleActive; } function toggleSale() public onlyOwner { presaleActive = false; saleActive = !saleActive; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 _id) public view virtual override returns (string memory) { require( _exists(_id), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _id.toString(), BASE_EXTENSION)) : ""; } function whitelistRemain(bytes32[] calldata _merkleProof, address _address) external view returns(uint256 count) { bytes32 leaf = keccak256(abi.encodePacked(_address)); if(MerkleProof.verify(_merkleProof, merkleRoot, leaf) && presaleActive) { return MAX_WHITELIST - presaleWhitelist[_address]; } else { return 0; } } function withdraw(address _address) public onlyOwner { uint256 balance = address(this).balance; payable(_address).transfer(balance); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// 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; /** * @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 "../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; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// 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; /** * @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 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; 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 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_APE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"whitelistRemain","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526000805560006007556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200005057600080fd5b506040518060400160405280600881526020017f4d656368614152430000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4152430000000000000000000000000000000000000000000000000000000081525060146000811162000105576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000fc906200030d565b60405180910390fd5b82600190805190602001906200011d92919062000236565b5081600290805190602001906200013692919062000236565b50806080818152505050505062000162620001566200016860201b60201c565b6200017060201b60201c565b620003f4565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002449062000340565b90600052602060002090601f016020900481019282620002685760008555620002b4565b82601f106200028357805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b357825182559160200191906001019062000296565b5b509050620002c39190620002c7565b5090565b5b80821115620002e2576000816000905550600101620002c8565b5090565b6000620002f56027836200032f565b91506200030282620003a5565b604082019050919050565b600060208201905081810360008301526200032881620002e6565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200035957607f821691505b6020821081141562000370576200036f62000376565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b608051614e556200041e600039600081816126050152818161262e0152612e2a0152614e556000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063df3fdf001161006f578063df3fdf00146107d8578063e51e5ef114610803578063e985e9c514610840578063eb8835ab1461087d578063f2fde38b146108ba57610225565b8063a22cb465146106f3578063b88d4fde1461071c578063c87b56dd14610745578063ce788a5d14610782578063d7224ba0146107ad57610225565b80638da5cb5b116100f25780638da5cb5b1461061c57806395d89b411461064757806395f61c48146106725780639753eac01461069d5780639bd5af53146106c857610225565b8063715018a61461059a5780637cb64759146105b15780637d8966e4146105da5780638d859f3e146105f157610225565b806342842e0e116101b157806355f804b31161017557806355f804b3146104a15780636352211e146104ca57806368428a1b146105075780636c0360eb1461053257806370a082311461055d57610225565b806342842e0e146103cb57806345de0d9b146103f45780634f6ccce71461041057806351cff8d91461044d57806353135ca01461047657610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632eb4a7ab1461034c5780632f745c591461037757806334393743146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061373d565b6108e3565b60405161025e9190613d96565b60405180910390f35b34801561027357600080fd5b5061027c610a2d565b6040516102899190613dcc565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906137d0565b610abf565b6040516102c69190613d2f565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613628565b610b44565b005b34801561030457600080fd5b5061030d610c5d565b60405161031a919061414e565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613522565b610c66565b005b34801561035857600080fd5b50610361610c76565b60405161036e9190613db1565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613628565b610c7c565b6040516103ab919061414e565b60405180910390f35b3480156103c057600080fd5b506103c9610e7a565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613522565b610f22565b005b61040e600480360381019061040991906136bc565b610f42565b005b34801561041c57600080fd5b50610437600480360381019061043291906137d0565b61105c565b604051610444919061414e565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f91906134bd565b6110af565b005b34801561048257600080fd5b5061048b61117b565b6040516104989190613d96565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c3919061378f565b61118e565b005b3480156104d657600080fd5b506104f160048036038101906104ec91906137d0565b611224565b6040516104fe9190613d2f565b60405180910390f35b34801561051357600080fd5b5061051c61123a565b6040516105299190613d96565b60405180910390f35b34801561053e57600080fd5b5061054761124d565b6040516105549190613dcc565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906134bd565b6112db565b604051610591919061414e565b60405180910390f35b3480156105a657600080fd5b506105af6113c4565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613714565b61144c565b005b3480156105e657600080fd5b506105ef6114d2565b005b3480156105fd57600080fd5b50610606611595565b604051610613919061414e565b60405180910390f35b34801561062857600080fd5b506106316115a0565b60405161063e9190613d2f565b60405180910390f35b34801561065357600080fd5b5061065c6115ca565b6040516106699190613dcc565b60405180910390f35b34801561067e57600080fd5b5061068761165c565b604051610694919061414e565b60405180910390f35b3480156106a957600080fd5b506106b2611661565b6040516106bf919061414e565b60405180910390f35b3480156106d457600080fd5b506106dd611666565b6040516106ea919061414e565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906135ec565b61166c565b005b34801561072857600080fd5b50610743600480360381019061073e9190613571565b6117ed565b005b34801561075157600080fd5b5061076c600480360381019061076791906137d0565b611849565b6040516107799190613dcc565b60405180910390f35b34801561078e57600080fd5b50610797611927565b6040516107a4919061414e565b60405180910390f35b3480156107b957600080fd5b506107c261192d565b6040516107cf919061414e565b60405180910390f35b3480156107e457600080fd5b506107ed611933565b6040516107fa9190613dcc565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190613664565b61196c565b604051610837919061414e565b60405180910390f35b34801561084c57600080fd5b50610867600480360381019061086291906134e6565b611a64565b6040516108749190613d96565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f91906134bd565b611af8565b6040516108b1919061414e565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc91906134bd565b611b10565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a265750610a2582611c08565b5b9050919050565b606060018054610a3c906144c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a68906144c8565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b5050505050905090565b6000610aca82611c72565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b00906140ee565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4f82611224565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb79061400e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bdf611c7f565b73ffffffffffffffffffffffffffffffffffffffff161480610c0e5750610c0d81610c08611c7f565b611a64565b5b610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490613f0e565b60405180910390fd5b610c58838383611c87565b505050565b60008054905090565b610c71838383611d39565b505050565b600a5481565b6000610c87836112db565b8210610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90613dee565b60405180910390fd5b6000610cd2610c5d565b905060008060005b83811015610e38576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dcc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e245786841415610e15578195505050505050610e74565b8380610e209061452b565b9450505b508080610e309061452b565b915050610cda565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906140ae565b60405180910390fd5b92915050565b610e82611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610ea06115a0565b73ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90613f8e565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610f3d838383604051806020016040528060008152506117ed565b505050565b600b60009054906101000a900460ff1680610f695750600b60019054906101000a900460ff165b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90613e2e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90613e8e565b60405180910390fd5b600b60009054906101000a900460ff16806110395750610320611037610c5d565b105b1561104d5761104883836122f2565b611057565b611056816124a9565b5b505050565b6000611066610c5d565b82106110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90613eae565b60405180910390fd5b819050919050565b6110b7611c7f565b73ffffffffffffffffffffffffffffffffffffffff166110d56115a0565b73ffffffffffffffffffffffffffffffffffffffff161461112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290613f8e565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611176573d6000803e3d6000fd5b505050565b600b60009054906101000a900460ff1681565b611196611c7f565b73ffffffffffffffffffffffffffffffffffffffff166111b46115a0565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613f8e565b60405180910390fd5b8060099080519060200190611220929190613248565b5050565b600061122f826125b1565b600001519050919050565b600b60019054906101000a900460ff1681565b6009805461125a906144c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611286906144c8565b80156112d35780601f106112a8576101008083540402835291602001916112d3565b820191906000526020600020905b8154815290600101906020018083116112b657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613f4e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113cc611c7f565b73ffffffffffffffffffffffffffffffffffffffff166113ea6115a0565b73ffffffffffffffffffffffffffffffffffffffff1614611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790613f8e565b60405180910390fd5b61144a60006127b4565b565b611454611c7f565b73ffffffffffffffffffffffffffffffffffffffff166114726115a0565b73ffffffffffffffffffffffffffffffffffffffff16146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf90613f8e565b60405180910390fd5b80600a8190555050565b6114da611c7f565b73ffffffffffffffffffffffffffffffffffffffff166114f86115a0565b73ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590613f8e565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b66ae153d89fe800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115d9906144c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611605906144c8565b80156116525780601f1061162757610100808354040283529160200191611652565b820191906000526020600020905b81548152906001019060200180831161163557829003601f168201915b5050505050905090565b600181565b601481565b61032081565b611674611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613fce565b60405180910390fd5b80600660006116ef611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661179c611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e19190613d96565b60405180910390a35050565b6117f8848484611d39565b6118048484848461287a565b611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a9061402e565b60405180910390fd5b50505050565b606061185482611c72565b611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90613fae565b60405180910390fd5b600061189d612a11565b905060008151116118bd576040518060200160405280600081525061191f565b806118c784612aa3565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161190f93929190613cfe565b6040516020818303038152906040525b915050919050565b611f4081565b60075481565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b600080826040516020016119809190613cb7565b6040516020818303038152906040528051906020012090506119e6858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612c50565b80156119fe5750600b60009054906101000a900460ff165b15611a5757600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611a4f919061438e565b915050611a5d565b60009150505b9392505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c6020528060005260406000206000915090505481565b611b18611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611b366115a0565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613f8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613e4e565b60405180910390fd5b611c05816127b4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d44826125b1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d6b611c7f565b73ffffffffffffffffffffffffffffffffffffffff161480611dc75750611d90611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611daf84610abf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611de35750611de28260000151611ddd611c7f565b611a64565b5b905080611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613fee565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613f6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90613ece565b60405180910390fd5b611f148585856001612d2c565b611f246000848460000151611c87565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f92919061435a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120369190614233565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461213c9190614279565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612282576121b281611c72565b15612281576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122ea8686866001612d32565b505050505050565b60006001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123409190614279565b9050600b60009054906101000a900460ff16156124115760003360405160200161236a9190613cb7565b6040516020818303038152906040528051906020012090506123d0848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612c50565b61240f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124069061408e565b60405180910390fd5b505b6001811115612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90613e0e565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124a4336001612d38565b505050565b6000811180156124ba575060148111155b6124f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f09061412e565b60405180910390fd5b611f4081612505610c5d565b61250f9190614279565b1115612550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254790613f2e565b60405180910390fd5b348166ae153d89fe80006125649190614300565b146125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90613eee565b60405180910390fd5b6125ae3382612d38565b50565b6125b96132ce565b6125c282611c72565b612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890613e6e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106126655760017f000000000000000000000000000000000000000000000000000000000000000084612658919061438e565b6126629190614279565b90505b60008390505b818110612773576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461275f578093505050506127af565b50808061276b9061449e565b91505061266b565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a6906140ce565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061289b8473ffffffffffffffffffffffffffffffffffffffff16612d56565b15612a04578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128c4611c7f565b8786866040518563ffffffff1660e01b81526004016128e69493929190613d4a565b602060405180830381600087803b15801561290057600080fd5b505af192505050801561293157506040513d601f19601f8201168201806040525081019061292e9190613766565b60015b6129b4573d8060008114612961576040519150601f19603f3d011682016040523d82523d6000602084013e612966565b606091505b506000815114156129ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a39061402e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a09565b600190505b949350505050565b606060098054612a20906144c8565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4c906144c8565b8015612a995780601f10612a6e57610100808354040283529160200191612a99565b820191906000526020600020905b815481529060010190602001808311612a7c57829003601f168201915b5050505050905090565b60606000821415612aeb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c4b565b600082905060005b60008214612b1d578080612b069061452b565b915050600a82612b1691906142cf565b9150612af3565b60008167ffffffffffffffff811115612b5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b915781602001600182028036833780820191505090505b5090505b60008514612c4457600182612baa919061438e565b9150600a85612bb991906145a2565b6030612bc59190614279565b60f81b818381518110612c01577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c3d91906142cf565b9450612b95565b8093505050505b919050565b60008082905060005b8551811015612d1e576000868281518110612c9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612cde578281604051602001612cc1929190613cd2565b604051602081830303815290604052805190602001209250612d0a565b8083604051602001612cf1929190613cd2565b6040516020818303038152906040528051906020012092505b508080612d169061452b565b915050612c59565b508381149150509392505050565b50505050565b50505050565b612d52828260405180602001604052806000815250612d69565b5050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd69061406e565b60405180910390fd5b612de881611c72565b15612e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1f9061404e565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e829061410e565b60405180910390fd5b612e986000858386612d2c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f959190614233565b6fffffffffffffffffffffffffffffffff168152602001858360200151612fbc9190614233565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561322b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131cb600088848861287a565b61320a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132019061402e565b60405180910390fd5b81806132159061452b565b92505080806132239061452b565b91505061315a565b50806000819055506132406000878588612d32565b505050505050565b828054613254906144c8565b90600052602060002090601f01602090048101928261327657600085556132bd565b82601f1061328f57805160ff19168380011785556132bd565b828001600101855582156132bd579182015b828111156132bc5782518255916020019190600101906132a1565b5b5090506132ca9190613308565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613321576000816000905550600101613309565b5090565b60006133386133338461418e565b614169565b90508281526020810184848401111561335057600080fd5b61335b84828561445c565b509392505050565b6000613376613371846141bf565b614169565b90508281526020810184848401111561338e57600080fd5b61339984828561445c565b509392505050565b6000813590506133b081614dac565b92915050565b60008083601f8401126133c857600080fd5b8235905067ffffffffffffffff8111156133e157600080fd5b6020830191508360208202830111156133f957600080fd5b9250929050565b60008135905061340f81614dc3565b92915050565b60008135905061342481614dda565b92915050565b60008135905061343981614df1565b92915050565b60008151905061344e81614df1565b92915050565b600082601f83011261346557600080fd5b8135613475848260208601613325565b91505092915050565b600082601f83011261348f57600080fd5b813561349f848260208601613363565b91505092915050565b6000813590506134b781614e08565b92915050565b6000602082840312156134cf57600080fd5b60006134dd848285016133a1565b91505092915050565b600080604083850312156134f957600080fd5b6000613507858286016133a1565b9250506020613518858286016133a1565b9150509250929050565b60008060006060848603121561353757600080fd5b6000613545868287016133a1565b9350506020613556868287016133a1565b9250506040613567868287016134a8565b9150509250925092565b6000806000806080858703121561358757600080fd5b6000613595878288016133a1565b94505060206135a6878288016133a1565b93505060406135b7878288016134a8565b925050606085013567ffffffffffffffff8111156135d457600080fd5b6135e087828801613454565b91505092959194509250565b600080604083850312156135ff57600080fd5b600061360d858286016133a1565b925050602061361e85828601613400565b9150509250929050565b6000806040838503121561363b57600080fd5b6000613649858286016133a1565b925050602061365a858286016134a8565b9150509250929050565b60008060006040848603121561367957600080fd5b600084013567ffffffffffffffff81111561369357600080fd5b61369f868287016133b6565b935093505060206136b2868287016133a1565b9150509250925092565b6000806000604084860312156136d157600080fd5b600084013567ffffffffffffffff8111156136eb57600080fd5b6136f7868287016133b6565b9350935050602061370a868287016134a8565b9150509250925092565b60006020828403121561372657600080fd5b600061373484828501613415565b91505092915050565b60006020828403121561374f57600080fd5b600061375d8482850161342a565b91505092915050565b60006020828403121561377857600080fd5b60006137868482850161343f565b91505092915050565b6000602082840312156137a157600080fd5b600082013567ffffffffffffffff8111156137bb57600080fd5b6137c78482850161347e565b91505092915050565b6000602082840312156137e257600080fd5b60006137f0848285016134a8565b91505092915050565b613802816143c2565b82525050565b613819613814826143c2565b614574565b82525050565b613828816143d4565b82525050565b613837816143e0565b82525050565b61384e613849826143e0565b614586565b82525050565b600061385f826141f0565b6138698185614206565b935061387981856020860161446b565b6138828161468f565b840191505092915050565b6000613898826141fb565b6138a28185614217565b93506138b281856020860161446b565b6138bb8161468f565b840191505092915050565b60006138d1826141fb565b6138db8185614228565b93506138eb81856020860161446b565b80840191505092915050565b6000613904602283614217565b915061390f826146ad565b604082019050919050565b6000613927601d83614217565b9150613932826146fc565b602082019050919050565b600061394a600b83614217565b915061395582614725565b602082019050919050565b600061396d602683614217565b91506139788261474e565b604082019050919050565b6000613990602a83614217565b915061399b8261479d565b604082019050919050565b60006139b3600e83614217565b91506139be826147ec565b602082019050919050565b60006139d6602383614217565b91506139e182614815565b604082019050919050565b60006139f9602583614217565b9150613a0482614864565b604082019050919050565b6000613a1c601f83614217565b9150613a27826148b3565b602082019050919050565b6000613a3f603983614217565b9150613a4a826148dc565b604082019050919050565b6000613a62602a83614217565b9150613a6d8261492b565b604082019050919050565b6000613a85602b83614217565b9150613a908261497a565b604082019050919050565b6000613aa8602683614217565b9150613ab3826149c9565b604082019050919050565b6000613acb602083614217565b9150613ad682614a18565b602082019050919050565b6000613aee602f83614217565b9150613af982614a41565b604082019050919050565b6000613b11601a83614217565b9150613b1c82614a90565b602082019050919050565b6000613b34603283614217565b9150613b3f82614ab9565b604082019050919050565b6000613b57602283614217565b9150613b6282614b08565b604082019050919050565b6000613b7a603383614217565b9150613b8582614b57565b604082019050919050565b6000613b9d601d83614217565b9150613ba882614ba6565b602082019050919050565b6000613bc0602183614217565b9150613bcb82614bcf565b604082019050919050565b6000613be3600d83614217565b9150613bee82614c1e565b602082019050919050565b6000613c06602e83614217565b9150613c1182614c47565b604082019050919050565b6000613c29602f83614217565b9150613c3482614c96565b604082019050919050565b6000613c4c602d83614217565b9150613c5782614ce5565b604082019050919050565b6000613c6f602283614217565b9150613c7a82614d34565b604082019050919050565b6000613c92601783614217565b9150613c9d82614d83565b602082019050919050565b613cb181614452565b82525050565b6000613cc38284613808565b60148201915081905092915050565b6000613cde828561383d565b602082019150613cee828461383d565b6020820191508190509392505050565b6000613d0a82866138c6565b9150613d1682856138c6565b9150613d2282846138c6565b9150819050949350505050565b6000602082019050613d4460008301846137f9565b92915050565b6000608082019050613d5f60008301876137f9565b613d6c60208301866137f9565b613d796040830185613ca8565b8181036060830152613d8b8184613854565b905095945050505050565b6000602082019050613dab600083018461381f565b92915050565b6000602082019050613dc6600083018461382e565b92915050565b60006020820190508181036000830152613de6818461388d565b905092915050565b60006020820190508181036000830152613e07816138f7565b9050919050565b60006020820190508181036000830152613e278161391a565b9050919050565b60006020820190508181036000830152613e478161393d565b9050919050565b60006020820190508181036000830152613e6781613960565b9050919050565b60006020820190508181036000830152613e8781613983565b9050919050565b60006020820190508181036000830152613ea7816139a6565b9050919050565b60006020820190508181036000830152613ec7816139c9565b9050919050565b60006020820190508181036000830152613ee7816139ec565b9050919050565b60006020820190508181036000830152613f0781613a0f565b9050919050565b60006020820190508181036000830152613f2781613a32565b9050919050565b60006020820190508181036000830152613f4781613a55565b9050919050565b60006020820190508181036000830152613f6781613a78565b9050919050565b60006020820190508181036000830152613f8781613a9b565b9050919050565b60006020820190508181036000830152613fa781613abe565b9050919050565b60006020820190508181036000830152613fc781613ae1565b9050919050565b60006020820190508181036000830152613fe781613b04565b9050919050565b6000602082019050818103600083015261400781613b27565b9050919050565b6000602082019050818103600083015261402781613b4a565b9050919050565b6000602082019050818103600083015261404781613b6d565b9050919050565b6000602082019050818103600083015261406781613b90565b9050919050565b6000602082019050818103600083015261408781613bb3565b9050919050565b600060208201905081810360008301526140a781613bd6565b9050919050565b600060208201905081810360008301526140c781613bf9565b9050919050565b600060208201905081810360008301526140e781613c1c565b9050919050565b6000602082019050818103600083015261410781613c3f565b9050919050565b6000602082019050818103600083015261412781613c62565b9050919050565b6000602082019050818103600083015261414781613c85565b9050919050565b60006020820190506141636000830184613ca8565b92915050565b6000614173614184565b905061417f82826144fa565b919050565b6000604051905090565b600067ffffffffffffffff8211156141a9576141a8614660565b5b6141b28261468f565b9050602081019050919050565b600067ffffffffffffffff8211156141da576141d9614660565b5b6141e38261468f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061423e82614416565b915061424983614416565b9250826fffffffffffffffffffffffffffffffff0382111561426e5761426d6145d3565b5b828201905092915050565b600061428482614452565b915061428f83614452565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142c4576142c36145d3565b5b828201905092915050565b60006142da82614452565b91506142e583614452565b9250826142f5576142f4614602565b5b828204905092915050565b600061430b82614452565b915061431683614452565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561434f5761434e6145d3565b5b828202905092915050565b600061436582614416565b915061437083614416565b925082821015614383576143826145d3565b5b828203905092915050565b600061439982614452565b91506143a483614452565b9250828210156143b7576143b66145d3565b5b828203905092915050565b60006143cd82614432565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561448957808201518184015260208101905061446e565b83811115614498576000848401525b50505050565b60006144a982614452565b915060008214156144bd576144bc6145d3565b5b600182039050919050565b600060028204905060018216806144e057607f821691505b602082108114156144f4576144f3614631565b5b50919050565b6145038261468f565b810181811067ffffffffffffffff8211171561452257614521614660565b5b80604052505050565b600061453682614452565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614569576145686145d3565b5b600182019050919050565b600061457f82614590565b9050919050565b6000819050919050565b600061459b826146a0565b9050919050565b60006145ad82614452565b91506145b883614452565b9250826145c8576145c7614602565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5768617420796120646f696e673f000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b614db5816143c2565b8114614dc057600080fd5b50565b614dcc816143d4565b8114614dd757600080fd5b50565b614de3816143e0565b8114614dee57600080fd5b50565b614dfa816143ea565b8114614e0557600080fd5b50565b614e1181614452565b8114614e1c57600080fd5b5056fea2646970667358221220487d3937bc98a1eb1c4652fd439a596f04f025779edd9b4f266db51b8f3f2c7a64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063df3fdf001161006f578063df3fdf00146107d8578063e51e5ef114610803578063e985e9c514610840578063eb8835ab1461087d578063f2fde38b146108ba57610225565b8063a22cb465146106f3578063b88d4fde1461071c578063c87b56dd14610745578063ce788a5d14610782578063d7224ba0146107ad57610225565b80638da5cb5b116100f25780638da5cb5b1461061c57806395d89b411461064757806395f61c48146106725780639753eac01461069d5780639bd5af53146106c857610225565b8063715018a61461059a5780637cb64759146105b15780637d8966e4146105da5780638d859f3e146105f157610225565b806342842e0e116101b157806355f804b31161017557806355f804b3146104a15780636352211e146104ca57806368428a1b146105075780636c0360eb1461053257806370a082311461055d57610225565b806342842e0e146103cb57806345de0d9b146103f45780634f6ccce71461041057806351cff8d91461044d57806353135ca01461047657610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632eb4a7ab1461034c5780632f745c591461037757806334393743146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061373d565b6108e3565b60405161025e9190613d96565b60405180910390f35b34801561027357600080fd5b5061027c610a2d565b6040516102899190613dcc565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906137d0565b610abf565b6040516102c69190613d2f565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613628565b610b44565b005b34801561030457600080fd5b5061030d610c5d565b60405161031a919061414e565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613522565b610c66565b005b34801561035857600080fd5b50610361610c76565b60405161036e9190613db1565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613628565b610c7c565b6040516103ab919061414e565b60405180910390f35b3480156103c057600080fd5b506103c9610e7a565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613522565b610f22565b005b61040e600480360381019061040991906136bc565b610f42565b005b34801561041c57600080fd5b50610437600480360381019061043291906137d0565b61105c565b604051610444919061414e565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f91906134bd565b6110af565b005b34801561048257600080fd5b5061048b61117b565b6040516104989190613d96565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c3919061378f565b61118e565b005b3480156104d657600080fd5b506104f160048036038101906104ec91906137d0565b611224565b6040516104fe9190613d2f565b60405180910390f35b34801561051357600080fd5b5061051c61123a565b6040516105299190613d96565b60405180910390f35b34801561053e57600080fd5b5061054761124d565b6040516105549190613dcc565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f91906134bd565b6112db565b604051610591919061414e565b60405180910390f35b3480156105a657600080fd5b506105af6113c4565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613714565b61144c565b005b3480156105e657600080fd5b506105ef6114d2565b005b3480156105fd57600080fd5b50610606611595565b604051610613919061414e565b60405180910390f35b34801561062857600080fd5b506106316115a0565b60405161063e9190613d2f565b60405180910390f35b34801561065357600080fd5b5061065c6115ca565b6040516106699190613dcc565b60405180910390f35b34801561067e57600080fd5b5061068761165c565b604051610694919061414e565b60405180910390f35b3480156106a957600080fd5b506106b2611661565b6040516106bf919061414e565b60405180910390f35b3480156106d457600080fd5b506106dd611666565b6040516106ea919061414e565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906135ec565b61166c565b005b34801561072857600080fd5b50610743600480360381019061073e9190613571565b6117ed565b005b34801561075157600080fd5b5061076c600480360381019061076791906137d0565b611849565b6040516107799190613dcc565b60405180910390f35b34801561078e57600080fd5b50610797611927565b6040516107a4919061414e565b60405180910390f35b3480156107b957600080fd5b506107c261192d565b6040516107cf919061414e565b60405180910390f35b3480156107e457600080fd5b506107ed611933565b6040516107fa9190613dcc565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190613664565b61196c565b604051610837919061414e565b60405180910390f35b34801561084c57600080fd5b50610867600480360381019061086291906134e6565b611a64565b6040516108749190613d96565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f91906134bd565b611af8565b6040516108b1919061414e565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc91906134bd565b611b10565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a265750610a2582611c08565b5b9050919050565b606060018054610a3c906144c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a68906144c8565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b5050505050905090565b6000610aca82611c72565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b00906140ee565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4f82611224565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb79061400e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bdf611c7f565b73ffffffffffffffffffffffffffffffffffffffff161480610c0e5750610c0d81610c08611c7f565b611a64565b5b610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490613f0e565b60405180910390fd5b610c58838383611c87565b505050565b60008054905090565b610c71838383611d39565b505050565b600a5481565b6000610c87836112db565b8210610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf90613dee565b60405180910390fd5b6000610cd2610c5d565b905060008060005b83811015610e38576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dcc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e245786841415610e15578195505050505050610e74565b8380610e209061452b565b9450505b508080610e309061452b565b915050610cda565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906140ae565b60405180910390fd5b92915050565b610e82611c7f565b73ffffffffffffffffffffffffffffffffffffffff16610ea06115a0565b73ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90613f8e565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610f3d838383604051806020016040528060008152506117ed565b505050565b600b60009054906101000a900460ff1680610f695750600b60019054906101000a900460ff165b610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f90613e2e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90613e8e565b60405180910390fd5b600b60009054906101000a900460ff16806110395750610320611037610c5d565b105b1561104d5761104883836122f2565b611057565b611056816124a9565b5b505050565b6000611066610c5d565b82106110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90613eae565b60405180910390fd5b819050919050565b6110b7611c7f565b73ffffffffffffffffffffffffffffffffffffffff166110d56115a0565b73ffffffffffffffffffffffffffffffffffffffff161461112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290613f8e565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611176573d6000803e3d6000fd5b505050565b600b60009054906101000a900460ff1681565b611196611c7f565b73ffffffffffffffffffffffffffffffffffffffff166111b46115a0565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613f8e565b60405180910390fd5b8060099080519060200190611220929190613248565b5050565b600061122f826125b1565b600001519050919050565b600b60019054906101000a900460ff1681565b6009805461125a906144c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611286906144c8565b80156112d35780601f106112a8576101008083540402835291602001916112d3565b820191906000526020600020905b8154815290600101906020018083116112b657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134390613f4e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113cc611c7f565b73ffffffffffffffffffffffffffffffffffffffff166113ea6115a0565b73ffffffffffffffffffffffffffffffffffffffff1614611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790613f8e565b60405180910390fd5b61144a60006127b4565b565b611454611c7f565b73ffffffffffffffffffffffffffffffffffffffff166114726115a0565b73ffffffffffffffffffffffffffffffffffffffff16146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf90613f8e565b60405180910390fd5b80600a8190555050565b6114da611c7f565b73ffffffffffffffffffffffffffffffffffffffff166114f86115a0565b73ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590613f8e565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b66ae153d89fe800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546115d9906144c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611605906144c8565b80156116525780601f1061162757610100808354040283529160200191611652565b820191906000526020600020905b81548152906001019060200180831161163557829003601f168201915b5050505050905090565b600181565b601481565b61032081565b611674611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613fce565b60405180910390fd5b80600660006116ef611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661179c611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e19190613d96565b60405180910390a35050565b6117f8848484611d39565b6118048484848461287a565b611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a9061402e565b60405180910390fd5b50505050565b606061185482611c72565b611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90613fae565b60405180910390fd5b600061189d612a11565b905060008151116118bd576040518060200160405280600081525061191f565b806118c784612aa3565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161190f93929190613cfe565b6040516020818303038152906040525b915050919050565b611f4081565b60075481565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b600080826040516020016119809190613cb7565b6040516020818303038152906040528051906020012090506119e6858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612c50565b80156119fe5750600b60009054906101000a900460ff165b15611a5757600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611a4f919061438e565b915050611a5d565b60009150505b9392505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c6020528060005260406000206000915090505481565b611b18611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611b366115a0565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613f8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613e4e565b60405180910390fd5b611c05816127b4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d44826125b1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d6b611c7f565b73ffffffffffffffffffffffffffffffffffffffff161480611dc75750611d90611c7f565b73ffffffffffffffffffffffffffffffffffffffff16611daf84610abf565b73ffffffffffffffffffffffffffffffffffffffff16145b80611de35750611de28260000151611ddd611c7f565b611a64565b5b905080611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613fee565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613f6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90613ece565b60405180910390fd5b611f148585856001612d2c565b611f246000848460000151611c87565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f92919061435a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120369190614233565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461213c9190614279565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612282576121b281611c72565b15612281576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122ea8686866001612d32565b505050505050565b60006001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123409190614279565b9050600b60009054906101000a900460ff16156124115760003360405160200161236a9190613cb7565b6040516020818303038152906040528051906020012090506123d0848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612c50565b61240f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124069061408e565b60405180910390fd5b505b6001811115612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90613e0e565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124a4336001612d38565b505050565b6000811180156124ba575060148111155b6124f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f09061412e565b60405180910390fd5b611f4081612505610c5d565b61250f9190614279565b1115612550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254790613f2e565b60405180910390fd5b348166ae153d89fe80006125649190614300565b146125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90613eee565b60405180910390fd5b6125ae3382612d38565b50565b6125b96132ce565b6125c282611c72565b612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890613e6e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106126655760017f000000000000000000000000000000000000000000000000000000000000001484612658919061438e565b6126629190614279565b90505b60008390505b818110612773576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461275f578093505050506127af565b50808061276b9061449e565b91505061266b565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a6906140ce565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061289b8473ffffffffffffffffffffffffffffffffffffffff16612d56565b15612a04578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128c4611c7f565b8786866040518563ffffffff1660e01b81526004016128e69493929190613d4a565b602060405180830381600087803b15801561290057600080fd5b505af192505050801561293157506040513d601f19601f8201168201806040525081019061292e9190613766565b60015b6129b4573d8060008114612961576040519150601f19603f3d011682016040523d82523d6000602084013e612966565b606091505b506000815114156129ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a39061402e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a09565b600190505b949350505050565b606060098054612a20906144c8565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4c906144c8565b8015612a995780601f10612a6e57610100808354040283529160200191612a99565b820191906000526020600020905b815481529060010190602001808311612a7c57829003601f168201915b5050505050905090565b60606000821415612aeb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c4b565b600082905060005b60008214612b1d578080612b069061452b565b915050600a82612b1691906142cf565b9150612af3565b60008167ffffffffffffffff811115612b5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b915781602001600182028036833780820191505090505b5090505b60008514612c4457600182612baa919061438e565b9150600a85612bb991906145a2565b6030612bc59190614279565b60f81b818381518110612c01577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c3d91906142cf565b9450612b95565b8093505050505b919050565b60008082905060005b8551811015612d1e576000868281518110612c9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612cde578281604051602001612cc1929190613cd2565b604051602081830303815290604052805190602001209250612d0a565b8083604051602001612cf1929190613cd2565b6040516020818303038152906040528051906020012092505b508080612d169061452b565b915050612c59565b508381149150509392505050565b50505050565b50505050565b612d52828260405180602001604052806000815250612d69565b5050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd69061406e565b60405180910390fd5b612de881611c72565b15612e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1f9061404e565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e829061410e565b60405180910390fd5b612e986000858386612d2c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f959190614233565b6fffffffffffffffffffffffffffffffff168152602001858360200151612fbc9190614233565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561322b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131cb600088848861287a565b61320a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132019061402e565b60405180910390fd5b81806132159061452b565b92505080806132239061452b565b91505061315a565b50806000819055506132406000878588612d32565b505050505050565b828054613254906144c8565b90600052602060002090601f01602090048101928261327657600085556132bd565b82601f1061328f57805160ff19168380011785556132bd565b828001600101855582156132bd579182015b828111156132bc5782518255916020019190600101906132a1565b5b5090506132ca9190613308565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613321576000816000905550600101613309565b5090565b60006133386133338461418e565b614169565b90508281526020810184848401111561335057600080fd5b61335b84828561445c565b509392505050565b6000613376613371846141bf565b614169565b90508281526020810184848401111561338e57600080fd5b61339984828561445c565b509392505050565b6000813590506133b081614dac565b92915050565b60008083601f8401126133c857600080fd5b8235905067ffffffffffffffff8111156133e157600080fd5b6020830191508360208202830111156133f957600080fd5b9250929050565b60008135905061340f81614dc3565b92915050565b60008135905061342481614dda565b92915050565b60008135905061343981614df1565b92915050565b60008151905061344e81614df1565b92915050565b600082601f83011261346557600080fd5b8135613475848260208601613325565b91505092915050565b600082601f83011261348f57600080fd5b813561349f848260208601613363565b91505092915050565b6000813590506134b781614e08565b92915050565b6000602082840312156134cf57600080fd5b60006134dd848285016133a1565b91505092915050565b600080604083850312156134f957600080fd5b6000613507858286016133a1565b9250506020613518858286016133a1565b9150509250929050565b60008060006060848603121561353757600080fd5b6000613545868287016133a1565b9350506020613556868287016133a1565b9250506040613567868287016134a8565b9150509250925092565b6000806000806080858703121561358757600080fd5b6000613595878288016133a1565b94505060206135a6878288016133a1565b93505060406135b7878288016134a8565b925050606085013567ffffffffffffffff8111156135d457600080fd5b6135e087828801613454565b91505092959194509250565b600080604083850312156135ff57600080fd5b600061360d858286016133a1565b925050602061361e85828601613400565b9150509250929050565b6000806040838503121561363b57600080fd5b6000613649858286016133a1565b925050602061365a858286016134a8565b9150509250929050565b60008060006040848603121561367957600080fd5b600084013567ffffffffffffffff81111561369357600080fd5b61369f868287016133b6565b935093505060206136b2868287016133a1565b9150509250925092565b6000806000604084860312156136d157600080fd5b600084013567ffffffffffffffff8111156136eb57600080fd5b6136f7868287016133b6565b9350935050602061370a868287016134a8565b9150509250925092565b60006020828403121561372657600080fd5b600061373484828501613415565b91505092915050565b60006020828403121561374f57600080fd5b600061375d8482850161342a565b91505092915050565b60006020828403121561377857600080fd5b60006137868482850161343f565b91505092915050565b6000602082840312156137a157600080fd5b600082013567ffffffffffffffff8111156137bb57600080fd5b6137c78482850161347e565b91505092915050565b6000602082840312156137e257600080fd5b60006137f0848285016134a8565b91505092915050565b613802816143c2565b82525050565b613819613814826143c2565b614574565b82525050565b613828816143d4565b82525050565b613837816143e0565b82525050565b61384e613849826143e0565b614586565b82525050565b600061385f826141f0565b6138698185614206565b935061387981856020860161446b565b6138828161468f565b840191505092915050565b6000613898826141fb565b6138a28185614217565b93506138b281856020860161446b565b6138bb8161468f565b840191505092915050565b60006138d1826141fb565b6138db8185614228565b93506138eb81856020860161446b565b80840191505092915050565b6000613904602283614217565b915061390f826146ad565b604082019050919050565b6000613927601d83614217565b9150613932826146fc565b602082019050919050565b600061394a600b83614217565b915061395582614725565b602082019050919050565b600061396d602683614217565b91506139788261474e565b604082019050919050565b6000613990602a83614217565b915061399b8261479d565b604082019050919050565b60006139b3600e83614217565b91506139be826147ec565b602082019050919050565b60006139d6602383614217565b91506139e182614815565b604082019050919050565b60006139f9602583614217565b9150613a0482614864565b604082019050919050565b6000613a1c601f83614217565b9150613a27826148b3565b602082019050919050565b6000613a3f603983614217565b9150613a4a826148dc565b604082019050919050565b6000613a62602a83614217565b9150613a6d8261492b565b604082019050919050565b6000613a85602b83614217565b9150613a908261497a565b604082019050919050565b6000613aa8602683614217565b9150613ab3826149c9565b604082019050919050565b6000613acb602083614217565b9150613ad682614a18565b602082019050919050565b6000613aee602f83614217565b9150613af982614a41565b604082019050919050565b6000613b11601a83614217565b9150613b1c82614a90565b602082019050919050565b6000613b34603283614217565b9150613b3f82614ab9565b604082019050919050565b6000613b57602283614217565b9150613b6282614b08565b604082019050919050565b6000613b7a603383614217565b9150613b8582614b57565b604082019050919050565b6000613b9d601d83614217565b9150613ba882614ba6565b602082019050919050565b6000613bc0602183614217565b9150613bcb82614bcf565b604082019050919050565b6000613be3600d83614217565b9150613bee82614c1e565b602082019050919050565b6000613c06602e83614217565b9150613c1182614c47565b604082019050919050565b6000613c29602f83614217565b9150613c3482614c96565b604082019050919050565b6000613c4c602d83614217565b9150613c5782614ce5565b604082019050919050565b6000613c6f602283614217565b9150613c7a82614d34565b604082019050919050565b6000613c92601783614217565b9150613c9d82614d83565b602082019050919050565b613cb181614452565b82525050565b6000613cc38284613808565b60148201915081905092915050565b6000613cde828561383d565b602082019150613cee828461383d565b6020820191508190509392505050565b6000613d0a82866138c6565b9150613d1682856138c6565b9150613d2282846138c6565b9150819050949350505050565b6000602082019050613d4460008301846137f9565b92915050565b6000608082019050613d5f60008301876137f9565b613d6c60208301866137f9565b613d796040830185613ca8565b8181036060830152613d8b8184613854565b905095945050505050565b6000602082019050613dab600083018461381f565b92915050565b6000602082019050613dc6600083018461382e565b92915050565b60006020820190508181036000830152613de6818461388d565b905092915050565b60006020820190508181036000830152613e07816138f7565b9050919050565b60006020820190508181036000830152613e278161391a565b9050919050565b60006020820190508181036000830152613e478161393d565b9050919050565b60006020820190508181036000830152613e6781613960565b9050919050565b60006020820190508181036000830152613e8781613983565b9050919050565b60006020820190508181036000830152613ea7816139a6565b9050919050565b60006020820190508181036000830152613ec7816139c9565b9050919050565b60006020820190508181036000830152613ee7816139ec565b9050919050565b60006020820190508181036000830152613f0781613a0f565b9050919050565b60006020820190508181036000830152613f2781613a32565b9050919050565b60006020820190508181036000830152613f4781613a55565b9050919050565b60006020820190508181036000830152613f6781613a78565b9050919050565b60006020820190508181036000830152613f8781613a9b565b9050919050565b60006020820190508181036000830152613fa781613abe565b9050919050565b60006020820190508181036000830152613fc781613ae1565b9050919050565b60006020820190508181036000830152613fe781613b04565b9050919050565b6000602082019050818103600083015261400781613b27565b9050919050565b6000602082019050818103600083015261402781613b4a565b9050919050565b6000602082019050818103600083015261404781613b6d565b9050919050565b6000602082019050818103600083015261406781613b90565b9050919050565b6000602082019050818103600083015261408781613bb3565b9050919050565b600060208201905081810360008301526140a781613bd6565b9050919050565b600060208201905081810360008301526140c781613bf9565b9050919050565b600060208201905081810360008301526140e781613c1c565b9050919050565b6000602082019050818103600083015261410781613c3f565b9050919050565b6000602082019050818103600083015261412781613c62565b9050919050565b6000602082019050818103600083015261414781613c85565b9050919050565b60006020820190506141636000830184613ca8565b92915050565b6000614173614184565b905061417f82826144fa565b919050565b6000604051905090565b600067ffffffffffffffff8211156141a9576141a8614660565b5b6141b28261468f565b9050602081019050919050565b600067ffffffffffffffff8211156141da576141d9614660565b5b6141e38261468f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061423e82614416565b915061424983614416565b9250826fffffffffffffffffffffffffffffffff0382111561426e5761426d6145d3565b5b828201905092915050565b600061428482614452565b915061428f83614452565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142c4576142c36145d3565b5b828201905092915050565b60006142da82614452565b91506142e583614452565b9250826142f5576142f4614602565b5b828204905092915050565b600061430b82614452565b915061431683614452565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561434f5761434e6145d3565b5b828202905092915050565b600061436582614416565b915061437083614416565b925082821015614383576143826145d3565b5b828203905092915050565b600061439982614452565b91506143a483614452565b9250828210156143b7576143b66145d3565b5b828203905092915050565b60006143cd82614432565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561448957808201518184015260208101905061446e565b83811115614498576000848401525b50505050565b60006144a982614452565b915060008214156144bd576144bc6145d3565b5b600182039050919050565b600060028204905060018216806144e057607f821691505b602082108114156144f4576144f3614631565b5b50919050565b6145038261468f565b810181811067ffffffffffffffff8211171561452257614521614660565b5b80604052505050565b600061453682614452565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614569576145686145d3565b5b600182019050919050565b600061457f82614590565b9050919050565b6000819050919050565b600061459b826146a0565b9050919050565b60006145ad82614452565b91506145b883614452565b9250826145c8576145c7614602565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5768617420796120646f696e673f000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b614db5816143c2565b8114614dc057600080fd5b50565b614dcc816143d4565b8114614dd757600080fd5b50565b614de3816143e0565b8114614dee57600080fd5b50565b614dfa816143ea565b8114614e0557600080fd5b50565b614e1181614452565b8114614e1c57600080fd5b5056fea2646970667358221220487d3937bc98a1eb1c4652fd439a596f04f025779edd9b4f266db51b8f3f2c7a64736f6c63430008040033
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.