Overview
TokenID
485
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
IngloriousOrcsBrawlParty
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.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract IngloriousOrcsBrawlParty is ERC721Enumerable, Ownable { using Address for address; uint256 public constant MAX_SUPPLY = 10000; uint256 private _mintPrice = 0.08 ether; bool private _isSaleActive = false; bool private _isPrivateSaleActive = false; // baseURI string private _baseTokenURI; mapping(address => uint256) whitelisted; constructor(string memory baseURI) ERC721("IngloriousOrcsBrawlParty", "IOBP") { setBaseURI(baseURI); } function setPrice(uint256 newPrice) public onlyOwner() { _mintPrice = newPrice; } function getPrice() public view returns (uint256) { return _mintPrice; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function flipSaleState() public onlyOwner { _isSaleActive = !_isSaleActive; } function isSaleLive() public view returns (bool) { return _isSaleActive; } function isPrivateSaleLive() public view returns (bool) { return _isPrivateSaleActive; } function flipPrivateSaleState() public onlyOwner { _isPrivateSaleActive = !_isPrivateSaleActive; } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function isWhitelisted(address addr) public view returns (uint256) { return whitelisted[addr]; } function addToWhitelist(address[] memory addresses, uint256 count) public onlyOwner() { for (uint i = 0; i < addresses.length; ++i) { whitelisted[addresses[i]] = count; } } function removeFromWhitelist(address[] memory addresses) public onlyOwner() { for (uint i = 0; i < addresses.length; ++i) { whitelisted[addresses[i]] = 0; } } function reserve(uint256 num) public onlyOwner() { uint256 supply = totalSupply(); require((supply + num) <= MAX_SUPPLY, "Exceeds maximum supply"); for (uint256 i = 0; i < num; i++) { _safeMint(msg.sender, supply + i); } } function mint(uint256 num) public payable { uint256 supply = totalSupply(); require(_isSaleActive, "Sale paused"); require(num < 11, "You can mint a maximum of 10 per transaction"); require((supply + num) <= MAX_SUPPLY, "Exceeds maximum supply"); require(msg.value >= _mintPrice * num, "Ether sent is not correct"); for (uint256 i = 0; i < num; i++) { _safeMint(msg.sender, supply + i); } } function mintPrivateSale(uint256 num) public payable { uint256 supply = totalSupply(); uint256 remaining = whitelisted[msg.sender]; require(_isPrivateSaleActive, "Private Sale paused"); require(num <= remaining, "You are not whitelisted or you don't have any more NFT to mint"); require((supply + num) <= MAX_SUPPLY, "Exceeds maximum supply"); require(msg.value >= _mintPrice * num, "Ether sent is not correct"); whitelisted[msg.sender] = remaining - num; for (uint256 i = 0; i < num; i++) { _safeMint(msg.sender, supply + i); } } }
// 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; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/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 "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// 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; 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; /** * @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); }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPrivateSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPrivateSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267011c37937e080000600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055503480156200005357600080fd5b5060405162004e2838038062004e28833981810160405281019062000079919062000416565b6040518060400160405280601881526020017f496e676c6f72696f75734f726373427261776c506172747900000000000000008152506040518060400160405280600481526020017f494f4250000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fd929190620002f4565b50806001908051906020019062000116929190620002f4565b505050620001396200012d6200015160201b60201c565b6200015960201b60201c565b6200014a816200021f60201b60201c565b506200064e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022f6200015160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000255620002ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a59062000482565b60405180910390fd5b80600d9080519060200190620002c6929190620002f4565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000302906200054a565b90600052602060002090601f01602090048101928262000326576000855562000372565b82601f106200034157805160ff191683800117855562000372565b8280016001018555821562000372579182015b828111156200037157825182559160200191906001019062000354565b5b50905062000381919062000385565b5090565b5b80821115620003a057600081600090555060010162000386565b5090565b6000620003bb620003b584620004cd565b620004a4565b905082815260208101848484011115620003d457600080fd5b620003e184828562000514565b509392505050565b600082601f830112620003fb57600080fd5b81516200040d848260208601620003a4565b91505092915050565b6000602082840312156200042957600080fd5b600082015167ffffffffffffffff8111156200044457600080fd5b6200045284828501620003e9565b91505092915050565b60006200046a60208362000503565b9150620004778262000625565b602082019050919050565b600060208201905081810360008301526200049d816200045b565b9050919050565b6000620004b0620004c3565b9050620004be828262000580565b919050565b6000604051905090565b600067ffffffffffffffff821115620004eb57620004ea620005e5565b5b620004f68262000614565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200053457808201518184015260208101905062000517565b8381111562000544576000848401525b50505050565b600060028204905060018216806200056357607f821691505b602082108114156200057a5762000579620005b6565b5b50919050565b6200058b8262000614565b810181811067ffffffffffffffff82111715620005ad57620005ac620005e5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6147ca806200065e6000396000f3fe6080604052600436106101f95760003560e01c80636dd478e31161010d578063a0712d68116100a0578063cb06f3f01161006f578063cb06f3f0146106ed578063e985e9c514610718578063ed74094614610755578063f2fde38b1461077e578063f71143ca146107a7576101f9565b8063a0712d6814610642578063a22cb4651461065e578063b88d4fde14610687578063c87b56dd146106b0576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059857806391b7f5ed146105c357806395d89b41146105ec57806398d5fdca14610617576101f9565b80636dd478e3146104ff57806370a082311461051b578063715018a614610558578063819b25ba1461056f576101f9565b806334918dfd1161019057806342842e0e1161015f57806342842e0e1461040a5780634f6ccce714610433578063548db1741461047057806355f804b3146104995780636352211e146104c2576101f9565b806334918dfd146103885780633719e3b01461039f5780633af32abf146103b65780633ccfd60b146103f3576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c591461032057806332cb6b0c1461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906133de565b6107d2565b604051610232919061393d565b60405180910390f35b34801561024757600080fd5b5061025061084c565b60405161025d9190613958565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613471565b6108de565b60405161029a91906138d6565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061330d565b610963565b005b3480156102d857600080fd5b506102e1610a7b565b6040516102ee9190613c7a565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190613207565b610a88565b005b34801561032c57600080fd5b506103476004803603810190610342919061330d565b610ae8565b6040516103549190613c7a565b60405180910390f35b34801561036957600080fd5b50610372610b8d565b60405161037f9190613c7a565b60405180910390f35b34801561039457600080fd5b5061039d610b93565b005b3480156103ab57600080fd5b506103b4610c3b565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906131a2565b610ce3565b6040516103ea9190613c7a565b60405180910390f35b3480156103ff57600080fd5b50610408610d2c565b005b34801561041657600080fd5b50610431600480360381019061042c9190613207565b610df7565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613471565b610e17565b6040516104679190613c7a565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190613349565b610eae565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190613430565b610fd0565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613471565b611066565b6040516104f691906138d6565b60405180910390f35b61051960048036038101906105149190613471565b611118565b005b34801561052757600080fd5b50610542600480360381019061053d91906131a2565b611322565b60405161054f9190613c7a565b60405180910390f35b34801561056457600080fd5b5061056d6113da565b005b34801561057b57600080fd5b5061059660048036038101906105919190613471565b611462565b005b3480156105a457600080fd5b506105ad611572565b6040516105ba91906138d6565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613471565b61159c565b005b3480156105f857600080fd5b50610601611622565b60405161060e9190613958565b60405180910390f35b34801561062357600080fd5b5061062c6116b4565b6040516106399190613c7a565b60405180910390f35b61065c60048036038101906106579190613471565b6116be565b005b34801561066a57600080fd5b50610685600480360381019061068091906132d1565b611834565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613256565b6119b5565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190613471565b611a17565b6040516106e49190613958565b60405180910390f35b3480156106f957600080fd5b50610702611abe565b60405161070f919061393d565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906131cb565b611ad5565b60405161074c919061393d565b60405180910390f35b34801561076157600080fd5b5061077c6004803603810190610777919061338a565b611b69565b005b34801561078a57600080fd5b506107a560048036038101906107a091906131a2565b611c8b565b005b3480156107b357600080fd5b506107bc611d83565b6040516107c9919061393d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610845575061084482611d9a565b5b9050919050565b60606000805461085b90613f56565b80601f016020809104026020016040519081016040528092919081815260200182805461088790613f56565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b60006108e982611e7c565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613b3a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096e82611066565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613bda565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fe611ee8565b73ffffffffffffffffffffffffffffffffffffffff161480610a2d5750610a2c81610a27611ee8565b611ad5565b5b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613a9a565b60405180910390fd5b610a768383611ef0565b505050565b6000600880549050905090565b610a99610a93611ee8565b82611fa9565b610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613c3a565b60405180910390fd5b610ae3838383612087565b505050565b6000610af383611322565b8210610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b9061399a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610b9b611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610bb9611572565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690613b5a565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610c43611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610c61611572565b73ffffffffffffffffffffffffffffffffffffffff1614610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90613b5a565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d34611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610d52611572565b73ffffffffffffffffffffffffffffffffffffffff1614610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613b5a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610df3573d6000803e3d6000fd5b5050565b610e12838383604051806020016040528060008152506119b5565b505050565b6000610e21610a7b565b8210610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5990613c5a565b60405180910390fd5b60088281548110610e9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610eb6611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610ed4611572565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613b5a565b60405180910390fd5b60005b8151811015610fcc576000600e6000848481518110610f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080610fc590613fb9565b9050610f2d565b5050565b610fd8611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610ff6611572565b73ffffffffffffffffffffffffffffffffffffffff161461104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390613b5a565b60405180910390fd5b80600d9080519060200190611062929190612f30565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613afa565b60405180910390fd5b80915050919050565b6000611122610a7b565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60019054906101000a900460ff166111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90613a1a565b60405180910390fd5b808311156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613b7a565b60405180910390fd5b61271083836112099190613d8b565b111561124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190613bfa565b60405180910390fd5b82600b546112589190613e12565b34101561129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613c1a565b60405180910390fd5b82816112a69190613e6c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8381101561131c576113093382856113049190613d8b565b6122e3565b808061131490613fb9565b9150506112ec565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613aba565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113e2611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611400611572565b73ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613b5a565b60405180910390fd5b6114606000612301565b565b61146a611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611488611572565b73ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590613b5a565b60405180910390fd5b60006114e8610a7b565b905061271082826114f99190613d8b565b111561153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190613bfa565b60405180910390fd5b60005b8281101561156d5761155a3382846115559190613d8b565b6122e3565b808061156590613fb9565b91505061153d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115a4611ee8565b73ffffffffffffffffffffffffffffffffffffffff166115c2611572565b73ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90613b5a565b60405180910390fd5b80600b8190555050565b60606001805461163190613f56565b80601f016020809104026020016040519081016040528092919081815260200182805461165d90613f56565b80156116aa5780601f1061167f576101008083540402835291602001916116aa565b820191906000526020600020905b81548152906001019060200180831161168d57829003601f168201915b5050505050905090565b6000600b54905090565b60006116c8610a7b565b9050600c60009054906101000a900460ff16611719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117109061397a565b60405180910390fd5b600b821061175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613ada565b60405180910390fd5b612710828261176b9190613d8b565b11156117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613bfa565b60405180910390fd5b81600b546117ba9190613e12565b3410156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390613c1a565b60405180910390fd5b60005b8281101561182f5761181c3382846118179190613d8b565b6122e3565b808061182790613fb9565b9150506117ff565b505050565b61183c611ee8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190613a5a565b60405180910390fd5b80600560006118b7611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611964611ee8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a9919061393d565b60405180910390a35050565b6119c66119c0611ee8565b83611fa9565b611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613c3a565b60405180910390fd5b611a11848484846123c7565b50505050565b6060611a2282611e7c565b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613bba565b60405180910390fd5b6000611a6b612423565b90506000815111611a8b5760405180602001604052806000815250611ab6565b80611a95846124b5565b604051602001611aa69291906138b2565b6040516020818303038152906040525b915050919050565b6000600c60019054906101000a900460ff16905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b71611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611b8f611572565b73ffffffffffffffffffffffffffffffffffffffff1614611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90613b5a565b60405180910390fd5b60005b8251811015611c865781600e6000858481518110611c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080611c7f90613fb9565b9050611be8565b505050565b611c93611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611cb1611572565b73ffffffffffffffffffffffffffffffffffffffff1614611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613b5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e906139da565b60405180910390fd5b611d8081612301565b50565b6000600c60009054906101000a900460ff16905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e755750611e7482612662565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f6383611066565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fb482611e7c565b611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea90613a7a565b60405180910390fd5b6000611ffe83611066565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061206d57508373ffffffffffffffffffffffffffffffffffffffff16612055846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b8061207e575061207d8185611ad5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120a782611066565b73ffffffffffffffffffffffffffffffffffffffff16146120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490613b9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490613a3a565b60405180910390fd5b6121788383836126cc565b612183600082611ef0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d39190613e6c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222a9190613d8b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122fd8282604051806020016040528060008152506127e0565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123d2848484612087565b6123de8484848461283b565b61241d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612414906139ba565b60405180910390fd5b50505050565b6060600d805461243290613f56565b80601f016020809104026020016040519081016040528092919081815260200182805461245e90613f56565b80156124ab5780601f10612480576101008083540402835291602001916124ab565b820191906000526020600020905b81548152906001019060200180831161248e57829003601f168201915b5050505050905090565b606060008214156124fd576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061265d565b600082905060005b6000821461252f57808061251890613fb9565b915050600a826125289190613de1565b9150612505565b60008167ffffffffffffffff811115612571577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125a35781602001600182028036833780820191505090505b5090505b60008514612656576001826125bc9190613e6c565b9150600a856125cb9190614002565b60306125d79190613d8b565b60f81b818381518110612613577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561264f9190613de1565b94506125a7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126d78383836129d2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561271a57612715816129d7565b612759565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612758576127578382612a20565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279c5761279781612b8d565b6127db565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127da576127d98282612cd0565b5b5b505050565b6127ea8383612d4f565b6127f7600084848461283b565b612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d906139ba565b60405180910390fd5b505050565b600061285c8473ffffffffffffffffffffffffffffffffffffffff16612f1d565b156129c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612885611ee8565b8786866040518563ffffffff1660e01b81526004016128a794939291906138f1565b602060405180830381600087803b1580156128c157600080fd5b505af19250505080156128f257506040513d601f19601f820116820180604052508101906128ef9190613407565b60015b612975573d8060008114612922576040519150601f19603f3d011682016040523d82523d6000602084013e612927565b606091505b5060008151141561296d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612964906139ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ca565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a2d84611322565b612a379190613e6c565b9050600060076000848152602001908152602001600020549050818114612b1c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ba19190613e6c565b9050600060096000848152602001908152602001600020549050600060088381548110612bf7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612c3f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cb4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612cdb83611322565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db690613b1a565b60405180910390fd5b612dc881611e7c565b15612e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dff906139fa565b60405180910390fd5b612e14600083836126cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e649190613d8b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f3c90613f56565b90600052602060002090601f016020900481019282612f5e5760008555612fa5565b82601f10612f7757805160ff1916838001178555612fa5565b82800160010185558215612fa5579182015b82811115612fa4578251825591602001919060010190612f89565b5b509050612fb29190612fb6565b5090565b5b80821115612fcf576000816000905550600101612fb7565b5090565b6000612fe6612fe184613cba565b613c95565b9050808382526020820190508285602086028201111561300557600080fd5b60005b85811015613035578161301b88826130bb565b845260208401935060208301925050600181019050613008565b5050509392505050565b600061305261304d84613ce6565b613c95565b90508281526020810184848401111561306a57600080fd5b613075848285613f14565b509392505050565b600061309061308b84613d17565b613c95565b9050828152602081018484840111156130a857600080fd5b6130b3848285613f14565b509392505050565b6000813590506130ca81614738565b92915050565b600082601f8301126130e157600080fd5b81356130f1848260208601612fd3565b91505092915050565b6000813590506131098161474f565b92915050565b60008135905061311e81614766565b92915050565b60008151905061313381614766565b92915050565b600082601f83011261314a57600080fd5b813561315a84826020860161303f565b91505092915050565b600082601f83011261317457600080fd5b813561318484826020860161307d565b91505092915050565b60008135905061319c8161477d565b92915050565b6000602082840312156131b457600080fd5b60006131c2848285016130bb565b91505092915050565b600080604083850312156131de57600080fd5b60006131ec858286016130bb565b92505060206131fd858286016130bb565b9150509250929050565b60008060006060848603121561321c57600080fd5b600061322a868287016130bb565b935050602061323b868287016130bb565b925050604061324c8682870161318d565b9150509250925092565b6000806000806080858703121561326c57600080fd5b600061327a878288016130bb565b945050602061328b878288016130bb565b935050604061329c8782880161318d565b925050606085013567ffffffffffffffff8111156132b957600080fd5b6132c587828801613139565b91505092959194509250565b600080604083850312156132e457600080fd5b60006132f2858286016130bb565b9250506020613303858286016130fa565b9150509250929050565b6000806040838503121561332057600080fd5b600061332e858286016130bb565b925050602061333f8582860161318d565b9150509250929050565b60006020828403121561335b57600080fd5b600082013567ffffffffffffffff81111561337557600080fd5b613381848285016130d0565b91505092915050565b6000806040838503121561339d57600080fd5b600083013567ffffffffffffffff8111156133b757600080fd5b6133c3858286016130d0565b92505060206133d48582860161318d565b9150509250929050565b6000602082840312156133f057600080fd5b60006133fe8482850161310f565b91505092915050565b60006020828403121561341957600080fd5b600061342784828501613124565b91505092915050565b60006020828403121561344257600080fd5b600082013567ffffffffffffffff81111561345c57600080fd5b61346884828501613163565b91505092915050565b60006020828403121561348357600080fd5b60006134918482850161318d565b91505092915050565b6134a381613ea0565b82525050565b6134b281613eb2565b82525050565b60006134c382613d48565b6134cd8185613d5e565b93506134dd818560208601613f23565b6134e6816140ef565b840191505092915050565b60006134fc82613d53565b6135068185613d6f565b9350613516818560208601613f23565b61351f816140ef565b840191505092915050565b600061353582613d53565b61353f8185613d80565b935061354f818560208601613f23565b80840191505092915050565b6000613568600b83613d6f565b915061357382614100565b602082019050919050565b600061358b602b83613d6f565b915061359682614129565b604082019050919050565b60006135ae603283613d6f565b91506135b982614178565b604082019050919050565b60006135d1602683613d6f565b91506135dc826141c7565b604082019050919050565b60006135f4601c83613d6f565b91506135ff82614216565b602082019050919050565b6000613617601383613d6f565b91506136228261423f565b602082019050919050565b600061363a602483613d6f565b915061364582614268565b604082019050919050565b600061365d601983613d6f565b9150613668826142b7565b602082019050919050565b6000613680602c83613d6f565b915061368b826142e0565b604082019050919050565b60006136a3603883613d6f565b91506136ae8261432f565b604082019050919050565b60006136c6602a83613d6f565b91506136d18261437e565b604082019050919050565b60006136e9602c83613d6f565b91506136f4826143cd565b604082019050919050565b600061370c602983613d6f565b91506137178261441c565b604082019050919050565b600061372f602083613d6f565b915061373a8261446b565b602082019050919050565b6000613752602c83613d6f565b915061375d82614494565b604082019050919050565b6000613775602083613d6f565b9150613780826144e3565b602082019050919050565b6000613798603e83613d6f565b91506137a38261450c565b604082019050919050565b60006137bb602983613d6f565b91506137c68261455b565b604082019050919050565b60006137de602f83613d6f565b91506137e9826145aa565b604082019050919050565b6000613801602183613d6f565b915061380c826145f9565b604082019050919050565b6000613824601683613d6f565b915061382f82614648565b602082019050919050565b6000613847601983613d6f565b915061385282614671565b602082019050919050565b600061386a603183613d6f565b91506138758261469a565b604082019050919050565b600061388d602c83613d6f565b9150613898826146e9565b604082019050919050565b6138ac81613f0a565b82525050565b60006138be828561352a565b91506138ca828461352a565b91508190509392505050565b60006020820190506138eb600083018461349a565b92915050565b6000608082019050613906600083018761349a565b613913602083018661349a565b61392060408301856138a3565b818103606083015261393281846134b8565b905095945050505050565b600060208201905061395260008301846134a9565b92915050565b6000602082019050818103600083015261397281846134f1565b905092915050565b600060208201905081810360008301526139938161355b565b9050919050565b600060208201905081810360008301526139b38161357e565b9050919050565b600060208201905081810360008301526139d3816135a1565b9050919050565b600060208201905081810360008301526139f3816135c4565b9050919050565b60006020820190508181036000830152613a13816135e7565b9050919050565b60006020820190508181036000830152613a338161360a565b9050919050565b60006020820190508181036000830152613a538161362d565b9050919050565b60006020820190508181036000830152613a7381613650565b9050919050565b60006020820190508181036000830152613a9381613673565b9050919050565b60006020820190508181036000830152613ab381613696565b9050919050565b60006020820190508181036000830152613ad3816136b9565b9050919050565b60006020820190508181036000830152613af3816136dc565b9050919050565b60006020820190508181036000830152613b13816136ff565b9050919050565b60006020820190508181036000830152613b3381613722565b9050919050565b60006020820190508181036000830152613b5381613745565b9050919050565b60006020820190508181036000830152613b7381613768565b9050919050565b60006020820190508181036000830152613b938161378b565b9050919050565b60006020820190508181036000830152613bb3816137ae565b9050919050565b60006020820190508181036000830152613bd3816137d1565b9050919050565b60006020820190508181036000830152613bf3816137f4565b9050919050565b60006020820190508181036000830152613c1381613817565b9050919050565b60006020820190508181036000830152613c338161383a565b9050919050565b60006020820190508181036000830152613c538161385d565b9050919050565b60006020820190508181036000830152613c7381613880565b9050919050565b6000602082019050613c8f60008301846138a3565b92915050565b6000613c9f613cb0565b9050613cab8282613f88565b919050565b6000604051905090565b600067ffffffffffffffff821115613cd557613cd46140c0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d0157613d006140c0565b5b613d0a826140ef565b9050602081019050919050565b600067ffffffffffffffff821115613d3257613d316140c0565b5b613d3b826140ef565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9682613f0a565b9150613da183613f0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd657613dd5614033565b5b828201905092915050565b6000613dec82613f0a565b9150613df783613f0a565b925082613e0757613e06614062565b5b828204905092915050565b6000613e1d82613f0a565b9150613e2883613f0a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6157613e60614033565b5b828202905092915050565b6000613e7782613f0a565b9150613e8283613f0a565b925082821015613e9557613e94614033565b5b828203905092915050565b6000613eab82613eea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f41578082015181840152602081019050613f26565b83811115613f50576000848401525b50505050565b60006002820490506001821680613f6e57607f821691505b60208210811415613f8257613f81614091565b5b50919050565b613f91826140ef565b810181811067ffffffffffffffff82111715613fb057613faf6140c0565b5b80604052505050565b6000613fc482613f0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ff757613ff6614033565b5b600182019050919050565b600061400d82613f0a565b915061401883613f0a565b92508261402857614027614062565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f507269766174652053616c652070617573656400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662031302070657260008201527f207472616e73616374696f6e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520617265206e6f742077686974656c6973746564206f7220796f75206460008201527f6f6e2774206861766520616e79206d6f7265204e465420746f206d696e740000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61474181613ea0565b811461474c57600080fd5b50565b61475881613eb2565b811461476357600080fd5b50565b61476f81613ebe565b811461477a57600080fd5b50565b61478681613f0a565b811461479157600080fd5b5056fea2646970667358221220f180df22b1efd30ecb697629565d248f3bac738366d7bdd69db4c70080aa4fa664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636dd478e31161010d578063a0712d68116100a0578063cb06f3f01161006f578063cb06f3f0146106ed578063e985e9c514610718578063ed74094614610755578063f2fde38b1461077e578063f71143ca146107a7576101f9565b8063a0712d6814610642578063a22cb4651461065e578063b88d4fde14610687578063c87b56dd146106b0576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059857806391b7f5ed146105c357806395d89b41146105ec57806398d5fdca14610617576101f9565b80636dd478e3146104ff57806370a082311461051b578063715018a614610558578063819b25ba1461056f576101f9565b806334918dfd1161019057806342842e0e1161015f57806342842e0e1461040a5780634f6ccce714610433578063548db1741461047057806355f804b3146104995780636352211e146104c2576101f9565b806334918dfd146103885780633719e3b01461039f5780633af32abf146103b65780633ccfd60b146103f3576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c591461032057806332cb6b0c1461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906133de565b6107d2565b604051610232919061393d565b60405180910390f35b34801561024757600080fd5b5061025061084c565b60405161025d9190613958565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613471565b6108de565b60405161029a91906138d6565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061330d565b610963565b005b3480156102d857600080fd5b506102e1610a7b565b6040516102ee9190613c7a565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190613207565b610a88565b005b34801561032c57600080fd5b506103476004803603810190610342919061330d565b610ae8565b6040516103549190613c7a565b60405180910390f35b34801561036957600080fd5b50610372610b8d565b60405161037f9190613c7a565b60405180910390f35b34801561039457600080fd5b5061039d610b93565b005b3480156103ab57600080fd5b506103b4610c3b565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906131a2565b610ce3565b6040516103ea9190613c7a565b60405180910390f35b3480156103ff57600080fd5b50610408610d2c565b005b34801561041657600080fd5b50610431600480360381019061042c9190613207565b610df7565b005b34801561043f57600080fd5b5061045a60048036038101906104559190613471565b610e17565b6040516104679190613c7a565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190613349565b610eae565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190613430565b610fd0565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613471565b611066565b6040516104f691906138d6565b60405180910390f35b61051960048036038101906105149190613471565b611118565b005b34801561052757600080fd5b50610542600480360381019061053d91906131a2565b611322565b60405161054f9190613c7a565b60405180910390f35b34801561056457600080fd5b5061056d6113da565b005b34801561057b57600080fd5b5061059660048036038101906105919190613471565b611462565b005b3480156105a457600080fd5b506105ad611572565b6040516105ba91906138d6565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613471565b61159c565b005b3480156105f857600080fd5b50610601611622565b60405161060e9190613958565b60405180910390f35b34801561062357600080fd5b5061062c6116b4565b6040516106399190613c7a565b60405180910390f35b61065c60048036038101906106579190613471565b6116be565b005b34801561066a57600080fd5b50610685600480360381019061068091906132d1565b611834565b005b34801561069357600080fd5b506106ae60048036038101906106a99190613256565b6119b5565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190613471565b611a17565b6040516106e49190613958565b60405180910390f35b3480156106f957600080fd5b50610702611abe565b60405161070f919061393d565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906131cb565b611ad5565b60405161074c919061393d565b60405180910390f35b34801561076157600080fd5b5061077c6004803603810190610777919061338a565b611b69565b005b34801561078a57600080fd5b506107a560048036038101906107a091906131a2565b611c8b565b005b3480156107b357600080fd5b506107bc611d83565b6040516107c9919061393d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610845575061084482611d9a565b5b9050919050565b60606000805461085b90613f56565b80601f016020809104026020016040519081016040528092919081815260200182805461088790613f56565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b60006108e982611e7c565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613b3a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096e82611066565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613bda565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fe611ee8565b73ffffffffffffffffffffffffffffffffffffffff161480610a2d5750610a2c81610a27611ee8565b611ad5565b5b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613a9a565b60405180910390fd5b610a768383611ef0565b505050565b6000600880549050905090565b610a99610a93611ee8565b82611fa9565b610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613c3a565b60405180910390fd5b610ae3838383612087565b505050565b6000610af383611322565b8210610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b9061399a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610b9b611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610bb9611572565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0690613b5a565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610c43611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610c61611572565b73ffffffffffffffffffffffffffffffffffffffff1614610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90613b5a565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d34611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610d52611572565b73ffffffffffffffffffffffffffffffffffffffff1614610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613b5a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610df3573d6000803e3d6000fd5b5050565b610e12838383604051806020016040528060008152506119b5565b505050565b6000610e21610a7b565b8210610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5990613c5a565b60405180910390fd5b60088281548110610e9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610eb6611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610ed4611572565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190613b5a565b60405180910390fd5b60005b8151811015610fcc576000600e6000848481518110610f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080610fc590613fb9565b9050610f2d565b5050565b610fd8611ee8565b73ffffffffffffffffffffffffffffffffffffffff16610ff6611572565b73ffffffffffffffffffffffffffffffffffffffff161461104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390613b5a565b60405180910390fd5b80600d9080519060200190611062929190612f30565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613afa565b60405180910390fd5b80915050919050565b6000611122610a7b565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60019054906101000a900460ff166111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90613a1a565b60405180910390fd5b808311156111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190613b7a565b60405180910390fd5b61271083836112099190613d8b565b111561124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190613bfa565b60405180910390fd5b82600b546112589190613e12565b34101561129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613c1a565b60405180910390fd5b82816112a69190613e6c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8381101561131c576113093382856113049190613d8b565b6122e3565b808061131490613fb9565b9150506112ec565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613aba565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113e2611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611400611572565b73ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613b5a565b60405180910390fd5b6114606000612301565b565b61146a611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611488611572565b73ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590613b5a565b60405180910390fd5b60006114e8610a7b565b905061271082826114f99190613d8b565b111561153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190613bfa565b60405180910390fd5b60005b8281101561156d5761155a3382846115559190613d8b565b6122e3565b808061156590613fb9565b91505061153d565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115a4611ee8565b73ffffffffffffffffffffffffffffffffffffffff166115c2611572565b73ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90613b5a565b60405180910390fd5b80600b8190555050565b60606001805461163190613f56565b80601f016020809104026020016040519081016040528092919081815260200182805461165d90613f56565b80156116aa5780601f1061167f576101008083540402835291602001916116aa565b820191906000526020600020905b81548152906001019060200180831161168d57829003601f168201915b5050505050905090565b6000600b54905090565b60006116c8610a7b565b9050600c60009054906101000a900460ff16611719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117109061397a565b60405180910390fd5b600b821061175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613ada565b60405180910390fd5b612710828261176b9190613d8b565b11156117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613bfa565b60405180910390fd5b81600b546117ba9190613e12565b3410156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390613c1a565b60405180910390fd5b60005b8281101561182f5761181c3382846118179190613d8b565b6122e3565b808061182790613fb9565b9150506117ff565b505050565b61183c611ee8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190613a5a565b60405180910390fd5b80600560006118b7611ee8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611964611ee8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a9919061393d565b60405180910390a35050565b6119c66119c0611ee8565b83611fa9565b611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613c3a565b60405180910390fd5b611a11848484846123c7565b50505050565b6060611a2282611e7c565b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613bba565b60405180910390fd5b6000611a6b612423565b90506000815111611a8b5760405180602001604052806000815250611ab6565b80611a95846124b5565b604051602001611aa69291906138b2565b6040516020818303038152906040525b915050919050565b6000600c60019054906101000a900460ff16905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b71611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611b8f611572565b73ffffffffffffffffffffffffffffffffffffffff1614611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90613b5a565b60405180910390fd5b60005b8251811015611c865781600e6000858481518110611c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080611c7f90613fb9565b9050611be8565b505050565b611c93611ee8565b73ffffffffffffffffffffffffffffffffffffffff16611cb1611572565b73ffffffffffffffffffffffffffffffffffffffff1614611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613b5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e906139da565b60405180910390fd5b611d8081612301565b50565b6000600c60009054906101000a900460ff16905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e755750611e7482612662565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f6383611066565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fb482611e7c565b611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea90613a7a565b60405180910390fd5b6000611ffe83611066565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061206d57508373ffffffffffffffffffffffffffffffffffffffff16612055846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b8061207e575061207d8185611ad5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120a782611066565b73ffffffffffffffffffffffffffffffffffffffff16146120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490613b9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490613a3a565b60405180910390fd5b6121788383836126cc565b612183600082611ef0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d39190613e6c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222a9190613d8b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122fd8282604051806020016040528060008152506127e0565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123d2848484612087565b6123de8484848461283b565b61241d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612414906139ba565b60405180910390fd5b50505050565b6060600d805461243290613f56565b80601f016020809104026020016040519081016040528092919081815260200182805461245e90613f56565b80156124ab5780601f10612480576101008083540402835291602001916124ab565b820191906000526020600020905b81548152906001019060200180831161248e57829003601f168201915b5050505050905090565b606060008214156124fd576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061265d565b600082905060005b6000821461252f57808061251890613fb9565b915050600a826125289190613de1565b9150612505565b60008167ffffffffffffffff811115612571577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125a35781602001600182028036833780820191505090505b5090505b60008514612656576001826125bc9190613e6c565b9150600a856125cb9190614002565b60306125d79190613d8b565b60f81b818381518110612613577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561264f9190613de1565b94506125a7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126d78383836129d2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561271a57612715816129d7565b612759565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612758576127578382612a20565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279c5761279781612b8d565b6127db565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127da576127d98282612cd0565b5b5b505050565b6127ea8383612d4f565b6127f7600084848461283b565b612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d906139ba565b60405180910390fd5b505050565b600061285c8473ffffffffffffffffffffffffffffffffffffffff16612f1d565b156129c5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612885611ee8565b8786866040518563ffffffff1660e01b81526004016128a794939291906138f1565b602060405180830381600087803b1580156128c157600080fd5b505af19250505080156128f257506040513d601f19601f820116820180604052508101906128ef9190613407565b60015b612975573d8060008114612922576040519150601f19603f3d011682016040523d82523d6000602084013e612927565b606091505b5060008151141561296d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612964906139ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129ca565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a2d84611322565b612a379190613e6c565b9050600060076000848152602001908152602001600020549050818114612b1c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612ba19190613e6c565b9050600060096000848152602001908152602001600020549050600060088381548110612bf7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612c3f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cb4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612cdb83611322565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db690613b1a565b60405180910390fd5b612dc881611e7c565b15612e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dff906139fa565b60405180910390fd5b612e14600083836126cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e649190613d8b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f3c90613f56565b90600052602060002090601f016020900481019282612f5e5760008555612fa5565b82601f10612f7757805160ff1916838001178555612fa5565b82800160010185558215612fa5579182015b82811115612fa4578251825591602001919060010190612f89565b5b509050612fb29190612fb6565b5090565b5b80821115612fcf576000816000905550600101612fb7565b5090565b6000612fe6612fe184613cba565b613c95565b9050808382526020820190508285602086028201111561300557600080fd5b60005b85811015613035578161301b88826130bb565b845260208401935060208301925050600181019050613008565b5050509392505050565b600061305261304d84613ce6565b613c95565b90508281526020810184848401111561306a57600080fd5b613075848285613f14565b509392505050565b600061309061308b84613d17565b613c95565b9050828152602081018484840111156130a857600080fd5b6130b3848285613f14565b509392505050565b6000813590506130ca81614738565b92915050565b600082601f8301126130e157600080fd5b81356130f1848260208601612fd3565b91505092915050565b6000813590506131098161474f565b92915050565b60008135905061311e81614766565b92915050565b60008151905061313381614766565b92915050565b600082601f83011261314a57600080fd5b813561315a84826020860161303f565b91505092915050565b600082601f83011261317457600080fd5b813561318484826020860161307d565b91505092915050565b60008135905061319c8161477d565b92915050565b6000602082840312156131b457600080fd5b60006131c2848285016130bb565b91505092915050565b600080604083850312156131de57600080fd5b60006131ec858286016130bb565b92505060206131fd858286016130bb565b9150509250929050565b60008060006060848603121561321c57600080fd5b600061322a868287016130bb565b935050602061323b868287016130bb565b925050604061324c8682870161318d565b9150509250925092565b6000806000806080858703121561326c57600080fd5b600061327a878288016130bb565b945050602061328b878288016130bb565b935050604061329c8782880161318d565b925050606085013567ffffffffffffffff8111156132b957600080fd5b6132c587828801613139565b91505092959194509250565b600080604083850312156132e457600080fd5b60006132f2858286016130bb565b9250506020613303858286016130fa565b9150509250929050565b6000806040838503121561332057600080fd5b600061332e858286016130bb565b925050602061333f8582860161318d565b9150509250929050565b60006020828403121561335b57600080fd5b600082013567ffffffffffffffff81111561337557600080fd5b613381848285016130d0565b91505092915050565b6000806040838503121561339d57600080fd5b600083013567ffffffffffffffff8111156133b757600080fd5b6133c3858286016130d0565b92505060206133d48582860161318d565b9150509250929050565b6000602082840312156133f057600080fd5b60006133fe8482850161310f565b91505092915050565b60006020828403121561341957600080fd5b600061342784828501613124565b91505092915050565b60006020828403121561344257600080fd5b600082013567ffffffffffffffff81111561345c57600080fd5b61346884828501613163565b91505092915050565b60006020828403121561348357600080fd5b60006134918482850161318d565b91505092915050565b6134a381613ea0565b82525050565b6134b281613eb2565b82525050565b60006134c382613d48565b6134cd8185613d5e565b93506134dd818560208601613f23565b6134e6816140ef565b840191505092915050565b60006134fc82613d53565b6135068185613d6f565b9350613516818560208601613f23565b61351f816140ef565b840191505092915050565b600061353582613d53565b61353f8185613d80565b935061354f818560208601613f23565b80840191505092915050565b6000613568600b83613d6f565b915061357382614100565b602082019050919050565b600061358b602b83613d6f565b915061359682614129565b604082019050919050565b60006135ae603283613d6f565b91506135b982614178565b604082019050919050565b60006135d1602683613d6f565b91506135dc826141c7565b604082019050919050565b60006135f4601c83613d6f565b91506135ff82614216565b602082019050919050565b6000613617601383613d6f565b91506136228261423f565b602082019050919050565b600061363a602483613d6f565b915061364582614268565b604082019050919050565b600061365d601983613d6f565b9150613668826142b7565b602082019050919050565b6000613680602c83613d6f565b915061368b826142e0565b604082019050919050565b60006136a3603883613d6f565b91506136ae8261432f565b604082019050919050565b60006136c6602a83613d6f565b91506136d18261437e565b604082019050919050565b60006136e9602c83613d6f565b91506136f4826143cd565b604082019050919050565b600061370c602983613d6f565b91506137178261441c565b604082019050919050565b600061372f602083613d6f565b915061373a8261446b565b602082019050919050565b6000613752602c83613d6f565b915061375d82614494565b604082019050919050565b6000613775602083613d6f565b9150613780826144e3565b602082019050919050565b6000613798603e83613d6f565b91506137a38261450c565b604082019050919050565b60006137bb602983613d6f565b91506137c68261455b565b604082019050919050565b60006137de602f83613d6f565b91506137e9826145aa565b604082019050919050565b6000613801602183613d6f565b915061380c826145f9565b604082019050919050565b6000613824601683613d6f565b915061382f82614648565b602082019050919050565b6000613847601983613d6f565b915061385282614671565b602082019050919050565b600061386a603183613d6f565b91506138758261469a565b604082019050919050565b600061388d602c83613d6f565b9150613898826146e9565b604082019050919050565b6138ac81613f0a565b82525050565b60006138be828561352a565b91506138ca828461352a565b91508190509392505050565b60006020820190506138eb600083018461349a565b92915050565b6000608082019050613906600083018761349a565b613913602083018661349a565b61392060408301856138a3565b818103606083015261393281846134b8565b905095945050505050565b600060208201905061395260008301846134a9565b92915050565b6000602082019050818103600083015261397281846134f1565b905092915050565b600060208201905081810360008301526139938161355b565b9050919050565b600060208201905081810360008301526139b38161357e565b9050919050565b600060208201905081810360008301526139d3816135a1565b9050919050565b600060208201905081810360008301526139f3816135c4565b9050919050565b60006020820190508181036000830152613a13816135e7565b9050919050565b60006020820190508181036000830152613a338161360a565b9050919050565b60006020820190508181036000830152613a538161362d565b9050919050565b60006020820190508181036000830152613a7381613650565b9050919050565b60006020820190508181036000830152613a9381613673565b9050919050565b60006020820190508181036000830152613ab381613696565b9050919050565b60006020820190508181036000830152613ad3816136b9565b9050919050565b60006020820190508181036000830152613af3816136dc565b9050919050565b60006020820190508181036000830152613b13816136ff565b9050919050565b60006020820190508181036000830152613b3381613722565b9050919050565b60006020820190508181036000830152613b5381613745565b9050919050565b60006020820190508181036000830152613b7381613768565b9050919050565b60006020820190508181036000830152613b938161378b565b9050919050565b60006020820190508181036000830152613bb3816137ae565b9050919050565b60006020820190508181036000830152613bd3816137d1565b9050919050565b60006020820190508181036000830152613bf3816137f4565b9050919050565b60006020820190508181036000830152613c1381613817565b9050919050565b60006020820190508181036000830152613c338161383a565b9050919050565b60006020820190508181036000830152613c538161385d565b9050919050565b60006020820190508181036000830152613c7381613880565b9050919050565b6000602082019050613c8f60008301846138a3565b92915050565b6000613c9f613cb0565b9050613cab8282613f88565b919050565b6000604051905090565b600067ffffffffffffffff821115613cd557613cd46140c0565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d0157613d006140c0565b5b613d0a826140ef565b9050602081019050919050565b600067ffffffffffffffff821115613d3257613d316140c0565b5b613d3b826140ef565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9682613f0a565b9150613da183613f0a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd657613dd5614033565b5b828201905092915050565b6000613dec82613f0a565b9150613df783613f0a565b925082613e0757613e06614062565b5b828204905092915050565b6000613e1d82613f0a565b9150613e2883613f0a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6157613e60614033565b5b828202905092915050565b6000613e7782613f0a565b9150613e8283613f0a565b925082821015613e9557613e94614033565b5b828203905092915050565b6000613eab82613eea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f41578082015181840152602081019050613f26565b83811115613f50576000848401525b50505050565b60006002820490506001821680613f6e57607f821691505b60208210811415613f8257613f81614091565b5b50919050565b613f91826140ef565b810181811067ffffffffffffffff82111715613fb057613faf6140c0565b5b80604052505050565b6000613fc482613f0a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ff757613ff6614033565b5b600182019050919050565b600061400d82613f0a565b915061401883613f0a565b92508261402857614027614062565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f507269766174652053616c652070617573656400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e742061206d6178696d756d206f662031302070657260008201527f207472616e73616374696f6e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520617265206e6f742077686974656c6973746564206f7220796f75206460008201527f6f6e2774206861766520616e79206d6f7265204e465420746f206d696e740000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61474181613ea0565b811461474c57600080fd5b50565b61475881613eb2565b811461476357600080fd5b50565b61476f81613ebe565b811461477a57600080fd5b50565b61478681613f0a565b811461479157600080fd5b5056fea2646970667358221220f180df22b1efd30ecb697629565d248f3bac738366d7bdd69db4c70080aa4fa664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.