NFT
Overview
TokenID
370
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:
Star
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // author: Giovanni Vignone pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract IMuttniks { function ownerOf(uint256 tokenId) public virtual view returns (address); } contract Star is Ownable, ERC721 { struct Wlist{ uint256 approvedTokens; uint256 mintPriceWei; } using Counters for Counters.Counter; Counters.Counter public StarID; IMuttniks private MuttnikConnection; uint256 private maxSupply; address private contract_creator; bool public redeemable; bool public paused; bool public whiteListOn; bool public mintable; bool public metadataFrozen; string private storageLocation; uint256 public mintCost; address private VerificationAdr; string private identifier; mapping(uint256 => string) private _tokenURIs; mapping(string => bool) private isCIDSet; mapping(uint256 => bool) public isMuttnikRedeemed; mapping(address => Wlist) public Whitelist; constructor(address verificationaccount, address adrMuttContract, string memory _identifier, string memory _gateway) ERC721("Muttniks Star", "STAR") { MuttnikConnection = IMuttniks(adrMuttContract); contract_creator = msg.sender; maxSupply = 3333; VerificationAdr = verificationaccount; mintCost = 60000000000000000; mintable = true; storageLocation = _gateway; redeemable = true; paused = true; identifier = _identifier; } // Owner only functions... function changeVerification(address verificationaddress) public onlyOwner { VerificationAdr = verificationaddress; } function batchChangeMetadata(uint256[] memory tokenIds, string[] memory _newTokenURIs) public onlyOwner { require(!metadataFrozen, "Metadata is frozen and unchangeable"); for (uint256 i = 0; i < tokenIds.length; i++){ require(_exists(tokenIds[i]), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenIds[i]] = _newTokenURIs[i]; } } function flipSaleState() public onlyOwner { paused = !paused; } function changeMintprice(uint256 newMintCost) public onlyOwner { mintCost = newMintCost; } function setStorageLocation(string memory newLocation) public onlyOwner { require(!metadataFrozen, "Metadata is frozen and unchangeable"); storageLocation = newLocation; } function changeSupply(uint256 newSupply) public onlyOwner { require(mintable, "Contract permanently decentralized"); maxSupply = newSupply; } function flipRedeem() public onlyOwner { redeemable = !redeemable; } function changeWhitelistState() public onlyOwner { whiteListOn = !whiteListOn; } function addToWhitelist(address[] memory collectors, uint256[] memory tokensAllowed, uint256[] memory WLweicosts) public onlyOwner { require((collectors.length == tokensAllowed.length) && (tokensAllowed.length == WLweicosts.length)); for (uint256 i = 0; i < tokensAllowed.length; i++) { Whitelist[collectors[i]].approvedTokens = tokensAllowed[i]; Whitelist[collectors[i]].mintPriceWei = WLweicosts[i]; } } function ownerBatchMint(string[] memory ipfsCIDs) public onlyOwner { require(mintable, "Contract is locked and permanently decentralized"); require(StarID.current() + ipfsCIDs.length <= maxSupply, "Muttniks are sold out!"); for (uint256 i = 0; i < ipfsCIDs.length; i++){ require(isCIDSet[ipfsCIDs[i]] == false, "This Star already exists"); uint256 uniquetokenID = StarID.current(); _safeMint(msg.sender, uniquetokenID); _setTokenURI(uniquetokenID, ipfsCIDs[i]); StarID.increment(); isCIDSet[ipfsCIDs[i]] = true; } } function _withdraw(uint256 amountinwei, bool getall, address payable exportaddress) public onlyOwner returns (bool){ if(getall == true){ exportaddress.transfer(address(this).balance); return true; } require(amountinwei<address(this).balance,"Contract is not worth that much yet"); exportaddress.transfer(amountinwei); return true; } function freezeMetdata() public onlyOwner { metadataFrozen = true; // On function call, metadata is locked and permenantly decentralized } function lockMint() public onlyOwner { mintable = false; // On function call, contract is permenantly unmintable } // Contract internal functions... function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } // Public signature functions... function checkValidData(string memory ipfsCID, bytes memory sig) public view returns(address){ bytes32 message = keccak256(abi.encodePacked(ipfsCID, identifier)); return (recoverSigner(message, sig)); } function recoverSigner(bytes32 message, bytes memory sig) public pure returns (address) { uint8 v; bytes32 r; bytes32 s; (v, r, s) = splitSignature(sig); return ecrecover(message, v, r, s); } function splitSignature(bytes memory sig) public pure returns (uint8, bytes32, bytes32) { require(sig.length == 65); bytes32 r; bytes32 s; uint8 v; assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } return (v, r, s); } // Public view state functions... function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "TokenURI query for nonexistent token"); return string(abi.encodePacked(storageLocation, _tokenURIs[tokenId])); } function isStarMinted(string memory ipfsCID) public view returns (bool){ return isCIDSet[ipfsCID]; } //Public alter contract state functions... function mintStar(string memory ipfsCID, bytes memory signature, uint256[] memory muttnikTokenID) public payable { require(mintable, "Contract is permanently decentralized"); require(StarID.current() < maxSupply, "Muttniks are sold out!"); if(whiteListOn){ require(Whitelist[msg.sender].approvedTokens > 0 || ((((muttnikTokenID.length > 0) && MuttnikConnection.ownerOf(muttnikTokenID[0]) == msg.sender) && (isMuttnikRedeemed[muttnikTokenID[0]] == false) && redeemable)), "You are not entitled to mint Star yet"); } require(!paused, "Contract is paused for minting"); require(muttnikTokenID.length <= 1, "Parameters sent incorrectly"); require(VerificationAdr == checkValidData(ipfsCID, signature), "Unauthentificated sender"); require(isCIDSet[ipfsCID] == false, "This Star already exists"); require(msg.sender != address(0) && msg.sender != address(this)); uint256 uniquetokenID = StarID.current(); if(redeemable){ if(muttnikTokenID.length == 1){ if(muttnikTokenID[0] <= 100 && muttnikTokenID[0] >= 0) { require(msg.sender == MuttnikConnection.ownerOf(muttnikTokenID[0]), "You are not the owner of this 101 Foundation token"); require(isMuttnikRedeemed[muttnikTokenID[0]] == false, "You have already redeemed this Muttnik"); isMuttnikRedeemed[muttnikTokenID[0]] = true; _safeMint(contract_creator, uniquetokenID); _safeTransfer(contract_creator, msg.sender, uniquetokenID,""); _setTokenURI(uniquetokenID, ipfsCID); StarID.increment(); isCIDSet[ipfsCID] = true; return; } else { require(msg.sender == MuttnikConnection.ownerOf(muttnikTokenID[0]), "You are not the owner of this Muttnik token"); require(msg.value == mintCost/2, "Incorrect value sent: Should be half of mint"); require(isMuttnikRedeemed[muttnikTokenID[0]] == false, "You have already redeemed this Muttnik"); isMuttnikRedeemed[muttnikTokenID[0]] = true; _safeMint(contract_creator, uniquetokenID); _safeTransfer(contract_creator, msg.sender, uniquetokenID,""); _setTokenURI(uniquetokenID, ipfsCID); StarID.increment(); isCIDSet[ipfsCID] = true; return; } } } if(whiteListOn){ require(msg.value == Whitelist[msg.sender].mintPriceWei*10000000000000000); Whitelist[msg.sender].approvedTokens = Whitelist[msg.sender].approvedTokens - 1; } else { require(msg.value >= mintCost, "Incorrect value sent"); } _safeMint(contract_creator, uniquetokenID); _safeTransfer(contract_creator, msg.sender, uniquetokenID,""); _setTokenURI(uniquetokenID, ipfsCID); StarID.increment(); isCIDSet[ipfsCID] = true; } }
// 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; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// 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 "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"verificationaccount","type":"address"},{"internalType":"address","name":"adrMuttContract","type":"address"},{"internalType":"string","name":"_identifier","type":"string"},{"internalType":"string","name":"_gateway","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":"StarID","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Whitelist","outputs":[{"internalType":"uint256","name":"approvedTokens","type":"uint256"},{"internalType":"uint256","name":"mintPriceWei","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountinwei","type":"uint256"},{"internalType":"bool","name":"getall","type":"bool"},{"internalType":"address payable","name":"exportaddress","type":"address"}],"name":"_withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"collectors","type":"address[]"},{"internalType":"uint256[]","name":"tokensAllowed","type":"uint256[]"},{"internalType":"uint256[]","name":"WLweicosts","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":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"_newTokenURIs","type":"string[]"}],"name":"batchChangeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintCost","type":"uint256"}],"name":"changeMintprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"changeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"verificationaddress","type":"address"}],"name":"changeVerification","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ipfsCID","type":"string"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"checkValidData","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetdata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isMuttnikRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"ipfsCID","type":"string"}],"name":"isStarMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"metadataFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"ipfsCID","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256[]","name":"muttnikTokenID","type":"uint256[]"}],"name":"mintStar","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string[]","name":"ipfsCIDs","type":"string[]"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"redeemable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newLocation","type":"string"}],"name":"setStorageLocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"whiteListOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200669f3803806200669f83398181016040528101906200003791906200046f565b6040518060400160405280600d81526020017f4d7574746e696b732053746172000000000000000000000000000000000000008152506040518060400160405280600481526020017f5354415200000000000000000000000000000000000000000000000000000000815250620000c3620000b76200025e60201b60201c565b6200026660201b60201c565b8160019080519060200190620000db9291906200032a565b508060029080519060200190620000f49291906200032a565b50505082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d0560098190555083600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066d529ae9e860000600c819055506001600a60176101000a81548160ff02191690831515021790555080600b9080519060200190620002049291906200032a565b506001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff02191690831515021790555081600e9080519060200190620002539291906200032a565b5050505050620006f1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033890620005e8565b90600052602060002090601f0160209004810192826200035c5760008555620003a8565b82601f106200037757805160ff1916838001178555620003a8565b82800160010185558215620003a8579182015b82811115620003a75782518255916020019190600101906200038a565b5b509050620003b79190620003bb565b5090565b5b80821115620003d6576000816000905550600101620003bc565b5090565b6000620003f1620003eb8462000548565b6200051f565b90508281526020810184848401111562000410576200040f620006b7565b5b6200041d848285620005b2565b509392505050565b6000815190506200043681620006d7565b92915050565b600082601f830112620004545762000453620006b2565b5b815162000466848260208601620003da565b91505092915050565b600080600080608085870312156200048c576200048b620006c1565b5b60006200049c8782880162000425565b9450506020620004af8782880162000425565b935050604085015167ffffffffffffffff811115620004d357620004d2620006bc565b5b620004e1878288016200043c565b925050606085015167ffffffffffffffff811115620005055762000504620006bc565b5b62000513878288016200043c565b91505092959194509250565b60006200052b6200053e565b90506200053982826200061e565b919050565b6000604051905090565b600067ffffffffffffffff82111562000566576200056562000683565b5b6200057182620006c6565b9050602081019050919050565b60006200058b8262000592565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005d2578082015181840152602081019050620005b5565b83811115620005e2576000848401525b50505050565b600060028204905060018216806200060157607f821691505b6020821081141562000618576200061762000654565b5b50919050565b6200062982620006c6565b810181811067ffffffffffffffff821117156200064b576200064a62000683565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006e2816200057e565b8114620006ee57600080fd5b50565b615f9e80620007016000396000f3fe60806040526004361061025c5760003560e01c80638da5cb5b11610144578063ca0d0f78116100b6578063ebcfbc3f1161007a578063ebcfbc3f146108ea578063f287f1d014610901578063f2fde38b1461092a578063fb3cc6c214610953578063fd11e6d21461097e578063fef7dfdf146109a95761025c565b8063ca0d0f7814610816578063de93c6d414610841578063e0b6bb6714610858578063e985e9c51461086f578063eb73900b146108ac5761025c565b8063a7bb580311610108578063a7bb5803146106f4578063b1af472214610733578063b88d4fde1461075c578063bdb4b84814610785578063c0c617d6146107b0578063c87b56dd146107d95761025c565b80638da5cb5b146105fb57806395d89b411461062657806397aba7f9146106515780639c14bda91461068e578063a22cb465146106cb5761025c565b806334918dfd116101dd5780634bf365df116101a15780634bf365df146104eb5780635c975abb146105165780636352211e1461054157806370a082311461057e578063715018a6146105bb578063868b7267146105d25761025c565b806334918dfd1461043d578063356629211461045457806339a7919f1461047d57806342842e0e146104a657806342b82ad6146104cf5761025c565b8063095ea7b311610224578063095ea7b31461036c5780630e62463414610395578063235ba341146103ac57806323b872dd146103e95780632d7ecd11146104125761025c565b806301ffc9a71461026157806303163d551461029e5780630419207f146102db57806306fdde0314610304578063081812fc1461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906142b5565b6109e6565b6040516102959190614bf6565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906144ed565b610ac8565b6040516102d29190614bf6565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190614358565b610c38565b005b34801561031057600080fd5b50610319610d1e565b6040516103269190614c56565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906144c0565b610db0565b6040516103639190614b8f565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906140b1565b610e35565b005b3480156103a157600080fd5b506103aa610f4d565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190614358565b610ff5565b6040516103e09190614bf6565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613f9b565b61102a565b005b34801561041e57600080fd5b5061042761108a565b6040516104349190614bf6565b60405180910390f35b34801561044957600080fd5b5061045261109d565b005b34801561046057600080fd5b5061047b60048036038101906104769190614198565b611145565b005b34801561048957600080fd5b506104a4600480360381019061049f91906144c0565b6113b1565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190613f9b565b611486565b005b6104e960048036038101906104e49190614419565b6114a6565b005b3480156104f757600080fd5b506105006121a1565b60405161050d9190614bf6565b60405180910390f35b34801561052257600080fd5b5061052b6121b4565b6040516105389190614bf6565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906144c0565b6121c7565b6040516105759190614b8f565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613f01565b612279565b6040516105b29190615098565b60405180910390f35b3480156105c757600080fd5b506105d0612331565b005b3480156105de57600080fd5b506105f960048036038101906105f49190613f01565b6123b9565b005b34801561060757600080fd5b50610610612479565b60405161061d9190614b8f565b60405180910390f35b34801561063257600080fd5b5061063b6124a2565b6040516106489190614c56565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190614259565b612534565b6040516106859190614b8f565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b091906143a1565b6125a9565b6040516106c29190614b8f565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190614071565b6125eb565b005b34801561070057600080fd5b5061071b6004803603810190610716919061430f565b61276c565b60405161072a939291906150dc565b60405180910390f35b34801561073f57600080fd5b5061075a600480360381019061075591906141e1565b6127af565b005b34801561076857600080fd5b50610783600480360381019061077e9190613fee565b61295d565b005b34801561079157600080fd5b5061079a6129bf565b6040516107a79190615098565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906140f1565b6129c5565b005b3480156107e557600080fd5b5061080060048036038101906107fb91906144c0565b612b77565b60405161080d9190614c56565b60405180910390f35b34801561082257600080fd5b5061082b612bfd565b6040516108389190615098565b60405180910390f35b34801561084d57600080fd5b50610856612c09565b005b34801561086457600080fd5b5061086d612cb1565b005b34801561087b57600080fd5b5061089660048036038101906108919190613f5b565b612d4a565b6040516108a39190614bf6565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190613f01565b612dde565b6040516108e19291906150b3565b60405180910390f35b3480156108f657600080fd5b506108ff612e02565b005b34801561090d57600080fd5b50610928600480360381019061092391906144c0565b612e9b565b005b34801561093657600080fd5b50610951600480360381019061094c9190613f01565b612f21565b005b34801561095f57600080fd5b50610968613019565b6040516109759190614bf6565b60405180910390f35b34801561098a57600080fd5b5061099361302c565b6040516109a09190614bf6565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb91906144c0565b61303f565b6040516109dd9190614bf6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac15750610ac08261305f565b5b9050919050565b6000610ad26130c9565b73ffffffffffffffffffffffffffffffffffffffff16610af0612479565b73ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90614f78565b60405180910390fd5b600115158315151415610ba3578173ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b99573d6000803e3d6000fd5b5060019050610c31565b478410610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90614d98565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015610c2b573d6000803e3d6000fd5b50600190505b9392505050565b610c406130c9565b73ffffffffffffffffffffffffffffffffffffffff16610c5e612479565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90614f78565b60405180910390fd5b600a60189054906101000a900460ff1615610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90614d78565b60405180910390fd5b80600b9080519060200190610d1a929190613ade565b5050565b606060018054610d2d9061546a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d599061546a565b8015610da65780601f10610d7b57610100808354040283529160200191610da6565b820191906000526020600020905b815481529060010190602001808311610d8957829003601f168201915b5050505050905090565b6000610dbb826130d1565b610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614f38565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e40826121c7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614fb8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ed06130c9565b73ffffffffffffffffffffffffffffffffffffffff161480610eff5750610efe81610ef96130c9565b612d4a565b5b610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590614e38565b60405180910390fd5b610f48838361313d565b505050565b610f556130c9565b73ffffffffffffffffffffffffffffffffffffffff16610f73612479565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090614f78565b60405180910390fd5b600a60169054906101000a900460ff1615600a60166101000a81548160ff021916908315150217905550565b60006010826040516110079190614b30565b908152602001604051809103902060009054906101000a900460ff169050919050565b61103b6110356130c9565b826131f6565b61107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190614ff8565b60405180910390fd5b6110858383836132d4565b505050565b600a60149054906101000a900460ff1681565b6110a56130c9565b73ffffffffffffffffffffffffffffffffffffffff166110c3612479565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614f78565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b61114d6130c9565b73ffffffffffffffffffffffffffffffffffffffff1661116b612479565b73ffffffffffffffffffffffffffffffffffffffff16146111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890614f78565b60405180910390fd5b600a60179054906101000a900460ff16611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790614d38565b60405180910390fd5b600954815161121f6007613530565b6112299190615276565b111561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190614c98565b60405180910390fd5b60005b81518110156113ad5760001515601083838151811061128f5761128e6155a3565b5b60200260200101516040516112a49190614b30565b908152602001604051809103902060009054906101000a900460ff16151514611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990614e58565b60405180910390fd5b600061130e6007613530565b905061131a338261353e565b61133e81848481518110611331576113306155a3565b5b602002602001015161355c565b61134860076135d0565b6001601084848151811061135f5761135e6155a3565b5b60200260200101516040516113749190614b30565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505080806113a5906154cd565b91505061126d565b5050565b6113b96130c9565b73ffffffffffffffffffffffffffffffffffffffff166113d7612479565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490614f78565b60405180910390fd5b600a60179054906101000a900460ff1661147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390614ef8565b60405180910390fd5b8060098190555050565b6114a18383836040518060200160405280600081525061295d565b505050565b600a60179054906101000a900460ff166114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90614eb8565b60405180910390fd5b6009546115026007613530565b10611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990614c98565b60405180910390fd5b600a60169054906101000a900460ff1615611748576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411806117085750600081511180156116a457503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e83600081518110611618576116176155a3565b5b60200260200101516040518263ffffffff1660e01b815260040161163c9190615098565b60206040518083038186803b15801561165457600080fd5b505afa158015611668573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168c9190613f2e565b73ffffffffffffffffffffffffffffffffffffffff16145b80156116ef57506000151560116000836000815181106116c7576116c66155a3565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515145b80156117075750600a60149054906101000a900460ff165b5b611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90614fd8565b60405180910390fd5b5b600a60159054906101000a900460ff1615611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90614dd8565b60405180910390fd5b6001815111156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614df8565b60405180910390fd5b6117e783836125a9565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90615078565b60405180910390fd5b6000151560108460405161188a9190614b30565b908152602001604051809103902060009054906101000a900460ff161515146118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90614e58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561195157503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b61195a57600080fd5b60006119666007613530565b9050600a60149054906101000a900460ff1615611f9157600182511415611f905760648260008151811061199d5761199c6155a3565b5b6020026020010151111580156119cf57506000826000815181106119c4576119c36155a3565b5b602002602001015110155b15611c8a57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e83600081518110611a2657611a256155a3565b5b60200260200101516040518263ffffffff1660e01b8152600401611a4a9190615098565b60206040518083038186803b158015611a6257600080fd5b505afa158015611a76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9a9190613f2e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90615018565b60405180910390fd5b600015156011600084600081518110611b2357611b226155a3565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8090614e18565b60405180910390fd5b60016011600084600081518110611ba357611ba26155a3565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550611bfc600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261353e565b611c39600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383604051806020016040528060008152506135e6565b611c43818561355c565b611c4d60076135d0565b6001601085604051611c5f9190614b30565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505061219c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e83600081518110611cdc57611cdb6155a3565b5b60200260200101516040518263ffffffff1660e01b8152600401611d009190615098565b60206040518083038186803b158015611d1857600080fd5b505afa158015611d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d509190613f2e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490615038565b60405180910390fd5b6002600c54611dcc91906152cc565b3414611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490614ed8565b60405180910390fd5b600015156011600084600081518110611e2957611e286155a3565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690614e18565b60405180910390fd5b60016011600084600081518110611ea957611ea86155a3565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550611f02600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261353e565b611f3f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383604051806020016040528060008152506135e6565b611f49818561355c565b611f5360076135d0565b6001601085604051611f659190614b30565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505061219c565b5b600a60169054906101000a900460ff16156120a057662386f26fc10000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154611ffb91906152fd565b341461200657600080fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546120559190615357565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506120e6565b600c543410156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614d58565b60405180910390fd5b5b612112600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261353e565b61214f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383604051806020016040528060008152506135e6565b612159818561355c565b61216360076135d0565b60016010856040516121759190614b30565b908152602001604051809103902060006101000a81548160ff021916908315150217905550505b505050565b600a60179054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614e98565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e190614e78565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6123396130c9565b73ffffffffffffffffffffffffffffffffffffffff16612357612479565b73ffffffffffffffffffffffffffffffffffffffff16146123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614f78565b60405180910390fd5b6123b76000613642565b565b6123c16130c9565b73ffffffffffffffffffffffffffffffffffffffff166123df612479565b73ffffffffffffffffffffffffffffffffffffffff1614612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c90614f78565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546124b19061546a565b80601f01602080910402602001604051908101604052809291908181526020018280546124dd9061546a565b801561252a5780601f106124ff5761010080835404028352916020019161252a565b820191906000526020600020905b81548152906001019060200180831161250d57829003601f168201915b5050505050905090565b6000806000806125438561276c565b809350819450829550505050600186848484604051600081526020016040526040516125729493929190614c11565b6020604051602081039080840390855afa158015612594573d6000803e3d6000fd5b50505060206040510351935050505092915050565b60008083600e6040516020016125c0929190614b47565b6040516020818303038152906040528051906020012090506125e28184612534565b91505092915050565b6125f36130c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890614d18565b60405180910390fd5b806006600061266e6130c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661271b6130c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127609190614bf6565b60405180910390a35050565b6000806000604184511461277f57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b6127b76130c9565b73ffffffffffffffffffffffffffffffffffffffff166127d5612479565b73ffffffffffffffffffffffffffffffffffffffff161461282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614f78565b60405180910390fd5b600a60189054906101000a900460ff161561287b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287290614d78565b60405180910390fd5b60005b8251811015612958576128aa83828151811061289d5761289c6155a3565b5b60200260200101516130d1565b6128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090614f58565b60405180910390fd5b8181815181106128fc576128fb6155a3565b5b6020026020010151600f600085848151811061291b5761291a6155a3565b5b602002602001015181526020019081526020016000209080519060200190612944929190613ade565b508080612950906154cd565b91505061287e565b505050565b61296e6129686130c9565b836131f6565b6129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490614ff8565b60405180910390fd5b6129b9848484846135e6565b50505050565b600c5481565b6129cd6130c9565b73ffffffffffffffffffffffffffffffffffffffff166129eb612479565b73ffffffffffffffffffffffffffffffffffffffff1614612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890614f78565b60405180910390fd5b81518351148015612a53575080518251145b612a5c57600080fd5b60005b8251811015612b7157828181518110612a7b57612a7a6155a3565b5b602002602001015160126000868481518110612a9a57612a996155a3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550818181518110612af657612af56155a3565b5b602002602001015160126000868481518110612b1557612b146155a3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508080612b69906154cd565b915050612a5f565b50505050565b6060612b82826130d1565b612bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb890615058565b60405180910390fd5b600b600f6000848152602001908152602001600020604051602001612be7929190614b6b565b6040516020818303038152906040529050919050565b60078060000154905081565b612c116130c9565b73ffffffffffffffffffffffffffffffffffffffff16612c2f612479565b73ffffffffffffffffffffffffffffffffffffffff1614612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90614f78565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b612cb96130c9565b73ffffffffffffffffffffffffffffffffffffffff16612cd7612479565b73ffffffffffffffffffffffffffffffffffffffff1614612d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2490614f78565b60405180910390fd5b6000600a60176101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60126020528060005260406000206000915090508060000154908060010154905082565b612e0a6130c9565b73ffffffffffffffffffffffffffffffffffffffff16612e28612479565b73ffffffffffffffffffffffffffffffffffffffff1614612e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7590614f78565b60405180910390fd5b6001600a60186101000a81548160ff021916908315150217905550565b612ea36130c9565b73ffffffffffffffffffffffffffffffffffffffff16612ec1612479565b73ffffffffffffffffffffffffffffffffffffffff1614612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e90614f78565b60405180910390fd5b80600c8190555050565b612f296130c9565b73ffffffffffffffffffffffffffffffffffffffff16612f47612479565b73ffffffffffffffffffffffffffffffffffffffff1614612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9490614f78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561300d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300490614cb8565b60405180910390fd5b61301681613642565b50565b600a60189054906101000a900460ff1681565b600a60169054906101000a900460ff1681565b60116020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166131b0836121c7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613201826130d1565b613240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323790614db8565b60405180910390fd5b600061324b836121c7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806132ba57508373ffffffffffffffffffffffffffffffffffffffff166132a284610db0565b73ffffffffffffffffffffffffffffffffffffffff16145b806132cb57506132ca8185612d4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166132f4826121c7565b73ffffffffffffffffffffffffffffffffffffffff161461334a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334190614f98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b190614cf8565b60405180910390fd5b6133c5838383613706565b6133d060008261313d565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134209190615357565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134779190615276565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b61355882826040518060200160405280600081525061370b565b5050565b613565826130d1565b6135a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359b90614f58565b60405180910390fd5b80600f600084815260200190815260200160002090805190602001906135cb929190613ade565b505050565b6001816000016000828254019250508190555050565b6135f18484846132d4565b6135fd84848484613766565b61363c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363390614c78565b60405180910390fd5b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b61371583836138fd565b6137226000848484613766565b613761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375890614c78565b60405180910390fd5b505050565b60006137878473ffffffffffffffffffffffffffffffffffffffff16613acb565b156138f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137b06130c9565b8786866040518563ffffffff1660e01b81526004016137d29493929190614baa565b602060405180830381600087803b1580156137ec57600080fd5b505af192505050801561381d57506040513d601f19601f8201168201806040525081019061381a91906142e2565b60015b6138a0573d806000811461384d576040519150601f19603f3d011682016040523d82523d6000602084013e613852565b606091505b50600081511415613898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388f90614c78565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138f5565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561396d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396490614f18565b60405180910390fd5b613976816130d1565b156139b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ad90614cd8565b60405180910390fd5b6139c260008383613706565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a129190615276565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613aea9061546a565b90600052602060002090601f016020900481019282613b0c5760008555613b53565b82601f10613b2557805160ff1916838001178555613b53565b82800160010185558215613b53579182015b82811115613b52578251825591602001919060010190613b37565b5b509050613b609190613b64565b5090565b5b80821115613b7d576000816000905550600101613b65565b5090565b6000613b94613b8f84615138565b615113565b90508083825260208201905082856020860282011115613bb757613bb6615606565b5b60005b85811015613be75781613bcd8882613d73565b845260208401935060208301925050600181019050613bba565b5050509392505050565b6000613c04613bff84615164565b615113565b90508083825260208201905082856020860282011115613c2757613c26615606565b5b60005b85811015613c7557813567ffffffffffffffff811115613c4d57613c4c615601565b5b808601613c5a8982613ebe565b85526020850194506020840193505050600181019050613c2a565b5050509392505050565b6000613c92613c8d84615190565b615113565b90508083825260208201905082856020860282011115613cb557613cb4615606565b5b60005b85811015613ce55781613ccb8882613eec565b845260208401935060208301925050600181019050613cb8565b5050509392505050565b6000613d02613cfd846151bc565b615113565b905082815260208101848484011115613d1e57613d1d61560b565b5b613d29848285615428565b509392505050565b6000613d44613d3f846151ed565b615113565b905082815260208101848484011115613d6057613d5f61560b565b5b613d6b848285615428565b509392505050565b600081359050613d8281615ede565b92915050565b600081519050613d9781615ede565b92915050565b600081359050613dac81615ef5565b92915050565b600082601f830112613dc757613dc6615601565b5b8135613dd7848260208601613b81565b91505092915050565b600082601f830112613df557613df4615601565b5b8135613e05848260208601613bf1565b91505092915050565b600082601f830112613e2357613e22615601565b5b8135613e33848260208601613c7f565b91505092915050565b600081359050613e4b81615f0c565b92915050565b600081359050613e6081615f23565b92915050565b600081359050613e7581615f3a565b92915050565b600081519050613e8a81615f3a565b92915050565b600082601f830112613ea557613ea4615601565b5b8135613eb5848260208601613cef565b91505092915050565b600082601f830112613ed357613ed2615601565b5b8135613ee3848260208601613d31565b91505092915050565b600081359050613efb81615f51565b92915050565b600060208284031215613f1757613f16615615565b5b6000613f2584828501613d73565b91505092915050565b600060208284031215613f4457613f43615615565b5b6000613f5284828501613d88565b91505092915050565b60008060408385031215613f7257613f71615615565b5b6000613f8085828601613d73565b9250506020613f9185828601613d73565b9150509250929050565b600080600060608486031215613fb457613fb3615615565b5b6000613fc286828701613d73565b9350506020613fd386828701613d73565b9250506040613fe486828701613eec565b9150509250925092565b6000806000806080858703121561400857614007615615565b5b600061401687828801613d73565b945050602061402787828801613d73565b935050604061403887828801613eec565b925050606085013567ffffffffffffffff81111561405957614058615610565b5b61406587828801613e90565b91505092959194509250565b6000806040838503121561408857614087615615565b5b600061409685828601613d73565b92505060206140a785828601613e3c565b9150509250929050565b600080604083850312156140c8576140c7615615565b5b60006140d685828601613d73565b92505060206140e785828601613eec565b9150509250929050565b60008060006060848603121561410a57614109615615565b5b600084013567ffffffffffffffff81111561412857614127615610565b5b61413486828701613db2565b935050602084013567ffffffffffffffff81111561415557614154615610565b5b61416186828701613e0e565b925050604084013567ffffffffffffffff81111561418257614181615610565b5b61418e86828701613e0e565b9150509250925092565b6000602082840312156141ae576141ad615615565b5b600082013567ffffffffffffffff8111156141cc576141cb615610565b5b6141d884828501613de0565b91505092915050565b600080604083850312156141f8576141f7615615565b5b600083013567ffffffffffffffff81111561421657614215615610565b5b61422285828601613e0e565b925050602083013567ffffffffffffffff81111561424357614242615610565b5b61424f85828601613de0565b9150509250929050565b600080604083850312156142705761426f615615565b5b600061427e85828601613e51565b925050602083013567ffffffffffffffff81111561429f5761429e615610565b5b6142ab85828601613e90565b9150509250929050565b6000602082840312156142cb576142ca615615565b5b60006142d984828501613e66565b91505092915050565b6000602082840312156142f8576142f7615615565b5b600061430684828501613e7b565b91505092915050565b60006020828403121561432557614324615615565b5b600082013567ffffffffffffffff81111561434357614342615610565b5b61434f84828501613e90565b91505092915050565b60006020828403121561436e5761436d615615565b5b600082013567ffffffffffffffff81111561438c5761438b615610565b5b61439884828501613ebe565b91505092915050565b600080604083850312156143b8576143b7615615565b5b600083013567ffffffffffffffff8111156143d6576143d5615610565b5b6143e285828601613ebe565b925050602083013567ffffffffffffffff81111561440357614402615610565b5b61440f85828601613e90565b9150509250929050565b60008060006060848603121561443257614431615615565b5b600084013567ffffffffffffffff8111156144505761444f615610565b5b61445c86828701613ebe565b935050602084013567ffffffffffffffff81111561447d5761447c615610565b5b61448986828701613e90565b925050604084013567ffffffffffffffff8111156144aa576144a9615610565b5b6144b686828701613e0e565b9150509250925092565b6000602082840312156144d6576144d5615615565b5b60006144e484828501613eec565b91505092915050565b60008060006060848603121561450657614505615615565b5b600061451486828701613eec565b935050602061452586828701613e3c565b925050604061453686828701613d9d565b9150509250925092565b6145498161538b565b82525050565b614558816153af565b82525050565b614567816153bb565b82525050565b600061457882615233565b6145828185615249565b9350614592818560208601615437565b61459b8161561a565b840191505092915050565b60006145b18261523e565b6145bb818561525a565b93506145cb818560208601615437565b6145d48161561a565b840191505092915050565b60006145ea8261523e565b6145f4818561526b565b9350614604818560208601615437565b80840191505092915050565b6000815461461d8161546a565b614627818661526b565b94506001821660008114614642576001811461465357614686565b60ff19831686528186019350614686565b61465c8561521e565b60005b8381101561467e5781548189015260018201915060208101905061465f565b838801955050505b50505092915050565b600061469c60328361525a565b91506146a78261562b565b604082019050919050565b60006146bf60168361525a565b91506146ca8261567a565b602082019050919050565b60006146e260268361525a565b91506146ed826156a3565b604082019050919050565b6000614705601c8361525a565b9150614710826156f2565b602082019050919050565b600061472860248361525a565b91506147338261571b565b604082019050919050565b600061474b60198361525a565b91506147568261576a565b602082019050919050565b600061476e60308361525a565b915061477982615793565b604082019050919050565b600061479160148361525a565b915061479c826157e2565b602082019050919050565b60006147b460238361525a565b91506147bf8261580b565b604082019050919050565b60006147d760238361525a565b91506147e28261585a565b604082019050919050565b60006147fa602c8361525a565b9150614805826158a9565b604082019050919050565b600061481d601e8361525a565b9150614828826158f8565b602082019050919050565b6000614840601b8361525a565b915061484b82615921565b602082019050919050565b600061486360268361525a565b915061486e8261594a565b604082019050919050565b600061488660388361525a565b915061489182615999565b604082019050919050565b60006148a960188361525a565b91506148b4826159e8565b602082019050919050565b60006148cc602a8361525a565b91506148d782615a11565b604082019050919050565b60006148ef60298361525a565b91506148fa82615a60565b604082019050919050565b600061491260258361525a565b915061491d82615aaf565b604082019050919050565b6000614935602c8361525a565b915061494082615afe565b604082019050919050565b600061495860228361525a565b915061496382615b4d565b604082019050919050565b600061497b60208361525a565b915061498682615b9c565b602082019050919050565b600061499e602c8361525a565b91506149a982615bc5565b604082019050919050565b60006149c1602c8361525a565b91506149cc82615c14565b604082019050919050565b60006149e460208361525a565b91506149ef82615c63565b602082019050919050565b6000614a0760298361525a565b9150614a1282615c8c565b604082019050919050565b6000614a2a60218361525a565b9150614a3582615cdb565b604082019050919050565b6000614a4d60258361525a565b9150614a5882615d2a565b604082019050919050565b6000614a7060318361525a565b9150614a7b82615d79565b604082019050919050565b6000614a9360328361525a565b9150614a9e82615dc8565b604082019050919050565b6000614ab6602b8361525a565b9150614ac182615e17565b604082019050919050565b6000614ad960248361525a565b9150614ae482615e66565b604082019050919050565b6000614afc60188361525a565b9150614b0782615eb5565b602082019050919050565b614b1b81615411565b82525050565b614b2a8161541b565b82525050565b6000614b3c82846145df565b915081905092915050565b6000614b5382856145df565b9150614b5f8284614610565b91508190509392505050565b6000614b778285614610565b9150614b838284614610565b91508190509392505050565b6000602082019050614ba46000830184614540565b92915050565b6000608082019050614bbf6000830187614540565b614bcc6020830186614540565b614bd96040830185614b12565b8181036060830152614beb818461456d565b905095945050505050565b6000602082019050614c0b600083018461454f565b92915050565b6000608082019050614c26600083018761455e565b614c336020830186614b21565b614c40604083018561455e565b614c4d606083018461455e565b95945050505050565b60006020820190508181036000830152614c7081846145a6565b905092915050565b60006020820190508181036000830152614c918161468f565b9050919050565b60006020820190508181036000830152614cb1816146b2565b9050919050565b60006020820190508181036000830152614cd1816146d5565b9050919050565b60006020820190508181036000830152614cf1816146f8565b9050919050565b60006020820190508181036000830152614d118161471b565b9050919050565b60006020820190508181036000830152614d318161473e565b9050919050565b60006020820190508181036000830152614d5181614761565b9050919050565b60006020820190508181036000830152614d7181614784565b9050919050565b60006020820190508181036000830152614d91816147a7565b9050919050565b60006020820190508181036000830152614db1816147ca565b9050919050565b60006020820190508181036000830152614dd1816147ed565b9050919050565b60006020820190508181036000830152614df181614810565b9050919050565b60006020820190508181036000830152614e1181614833565b9050919050565b60006020820190508181036000830152614e3181614856565b9050919050565b60006020820190508181036000830152614e5181614879565b9050919050565b60006020820190508181036000830152614e718161489c565b9050919050565b60006020820190508181036000830152614e91816148bf565b9050919050565b60006020820190508181036000830152614eb1816148e2565b9050919050565b60006020820190508181036000830152614ed181614905565b9050919050565b60006020820190508181036000830152614ef181614928565b9050919050565b60006020820190508181036000830152614f118161494b565b9050919050565b60006020820190508181036000830152614f318161496e565b9050919050565b60006020820190508181036000830152614f5181614991565b9050919050565b60006020820190508181036000830152614f71816149b4565b9050919050565b60006020820190508181036000830152614f91816149d7565b9050919050565b60006020820190508181036000830152614fb1816149fa565b9050919050565b60006020820190508181036000830152614fd181614a1d565b9050919050565b60006020820190508181036000830152614ff181614a40565b9050919050565b6000602082019050818103600083015261501181614a63565b9050919050565b6000602082019050818103600083015261503181614a86565b9050919050565b6000602082019050818103600083015261505181614aa9565b9050919050565b6000602082019050818103600083015261507181614acc565b9050919050565b6000602082019050818103600083015261509181614aef565b9050919050565b60006020820190506150ad6000830184614b12565b92915050565b60006040820190506150c86000830185614b12565b6150d56020830184614b12565b9392505050565b60006060820190506150f16000830186614b21565b6150fe602083018561455e565b61510b604083018461455e565b949350505050565b600061511d61512e565b9050615129828261549c565b919050565b6000604051905090565b600067ffffffffffffffff821115615153576151526155d2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561517f5761517e6155d2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151ab576151aa6155d2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151d7576151d66155d2565b5b6151e08261561a565b9050602081019050919050565b600067ffffffffffffffff821115615208576152076155d2565b5b6152118261561a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061528182615411565b915061528c83615411565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152c1576152c0615516565b5b828201905092915050565b60006152d782615411565b91506152e283615411565b9250826152f2576152f1615545565b5b828204905092915050565b600061530882615411565b915061531383615411565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561534c5761534b615516565b5b828202905092915050565b600061536282615411565b915061536d83615411565b9250828210156153805761537f615516565b5b828203905092915050565b6000615396826153f1565b9050919050565b60006153a8826153f1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561545557808201518184015260208101905061543a565b83811115615464576000848401525b50505050565b6000600282049050600182168061548257607f821691505b6020821081141561549657615495615574565b5b50919050565b6154a58261561a565b810181811067ffffffffffffffff821117156154c4576154c36155d2565b5b80604052505050565b60006154d882615411565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561550b5761550a615516565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d7574746e696b732061726520736f6c64206f75742100000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f436f6e7472616374206973206c6f636b656420616e64207065726d616e656e7460008201527f6c7920646563656e7472616c697a656400000000000000000000000000000000602082015250565b7f496e636f72726563742076616c75652073656e74000000000000000000000000600082015250565b7f4d657461646174612069732066726f7a656e20616e6420756e6368616e67656160008201527f626c650000000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206e6f7420776f7274682074686174206d7563682060008201527f7965740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e74726163742069732070617573656420666f72206d696e74696e670000600082015250565b7f506172616d65746572732073656e7420696e636f72726563746c790000000000600082015250565b7f596f75206861766520616c72656164792072656465656d65642074686973204d60008201527f7574746e696b0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f54686973205374617220616c7265616479206578697374730000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973207065726d616e656e746c7920646563656e74726160008201527f6c697a6564000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f72726563742076616c75652073656e743a2053686f756c642062652060008201527f68616c66206f66206d696e740000000000000000000000000000000000000000602082015250565b7f436f6e7472616374207065726d616e656e746c7920646563656e7472616c697a60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420656e7469746c656420746f206d696e742053746160008201527f7220796574000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e6572206f66207468697320313060008201527f3120466f756e646174696f6e20746f6b656e0000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e6572206f662074686973204d7560008201527f74746e696b20746f6b656e000000000000000000000000000000000000000000602082015250565b7f546f6b656e55524920717565727920666f72206e6f6e6578697374656e74207460008201527f6f6b656e00000000000000000000000000000000000000000000000000000000602082015250565b7f556e61757468656e7469666963617465642073656e6465720000000000000000600082015250565b615ee78161538b565b8114615ef257600080fd5b50565b615efe8161539d565b8114615f0957600080fd5b50565b615f15816153af565b8114615f2057600080fd5b50565b615f2c816153bb565b8114615f3757600080fd5b50565b615f43816153c5565b8114615f4e57600080fd5b50565b615f5a81615411565b8114615f6557600080fd5b5056fea26469706673582212208e84f8002edbb02c7cff2da19758f8aced97444b9e2d8f97edfa778d75bb247c64736f6c634300080700330000000000000000000000008c1826eba8111e31f0e0ad0f440ce2137bb33dcd000000000000000000000000ca61ad7aae3afbc15c2ba618612ffa2c2265c821000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000045374617200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f636f736d6963706177732e6d7970696e6174612e636c6f75642f697066732f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80638da5cb5b11610144578063ca0d0f78116100b6578063ebcfbc3f1161007a578063ebcfbc3f146108ea578063f287f1d014610901578063f2fde38b1461092a578063fb3cc6c214610953578063fd11e6d21461097e578063fef7dfdf146109a95761025c565b8063ca0d0f7814610816578063de93c6d414610841578063e0b6bb6714610858578063e985e9c51461086f578063eb73900b146108ac5761025c565b8063a7bb580311610108578063a7bb5803146106f4578063b1af472214610733578063b88d4fde1461075c578063bdb4b84814610785578063c0c617d6146107b0578063c87b56dd146107d95761025c565b80638da5cb5b146105fb57806395d89b411461062657806397aba7f9146106515780639c14bda91461068e578063a22cb465146106cb5761025c565b806334918dfd116101dd5780634bf365df116101a15780634bf365df146104eb5780635c975abb146105165780636352211e1461054157806370a082311461057e578063715018a6146105bb578063868b7267146105d25761025c565b806334918dfd1461043d578063356629211461045457806339a7919f1461047d57806342842e0e146104a657806342b82ad6146104cf5761025c565b8063095ea7b311610224578063095ea7b31461036c5780630e62463414610395578063235ba341146103ac57806323b872dd146103e95780632d7ecd11146104125761025c565b806301ffc9a71461026157806303163d551461029e5780630419207f146102db57806306fdde0314610304578063081812fc1461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906142b5565b6109e6565b6040516102959190614bf6565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906144ed565b610ac8565b6040516102d29190614bf6565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190614358565b610c38565b005b34801561031057600080fd5b50610319610d1e565b6040516103269190614c56565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906144c0565b610db0565b6040516103639190614b8f565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906140b1565b610e35565b005b3480156103a157600080fd5b506103aa610f4d565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190614358565b610ff5565b6040516103e09190614bf6565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613f9b565b61102a565b005b34801561041e57600080fd5b5061042761108a565b6040516104349190614bf6565b60405180910390f35b34801561044957600080fd5b5061045261109d565b005b34801561046057600080fd5b5061047b60048036038101906104769190614198565b611145565b005b34801561048957600080fd5b506104a4600480360381019061049f91906144c0565b6113b1565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190613f9b565b611486565b005b6104e960048036038101906104e49190614419565b6114a6565b005b3480156104f757600080fd5b506105006121a1565b60405161050d9190614bf6565b60405180910390f35b34801561052257600080fd5b5061052b6121b4565b6040516105389190614bf6565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906144c0565b6121c7565b6040516105759190614b8f565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613f01565b612279565b6040516105b29190615098565b60405180910390f35b3480156105c757600080fd5b506105d0612331565b005b3480156105de57600080fd5b506105f960048036038101906105f49190613f01565b6123b9565b005b34801561060757600080fd5b50610610612479565b60405161061d9190614b8f565b60405180910390f35b34801561063257600080fd5b5061063b6124a2565b6040516106489190614c56565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190614259565b612534565b6040516106859190614b8f565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b091906143a1565b6125a9565b6040516106c29190614b8f565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190614071565b6125eb565b005b34801561070057600080fd5b5061071b6004803603810190610716919061430f565b61276c565b60405161072a939291906150dc565b60405180910390f35b34801561073f57600080fd5b5061075a600480360381019061075591906141e1565b6127af565b005b34801561076857600080fd5b50610783600480360381019061077e9190613fee565b61295d565b005b34801561079157600080fd5b5061079a6129bf565b6040516107a79190615098565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906140f1565b6129c5565b005b3480156107e557600080fd5b5061080060048036038101906107fb91906144c0565b612b77565b60405161080d9190614c56565b60405180910390f35b34801561082257600080fd5b5061082b612bfd565b6040516108389190615098565b60405180910390f35b34801561084d57600080fd5b50610856612c09565b005b34801561086457600080fd5b5061086d612cb1565b005b34801561087b57600080fd5b5061089660048036038101906108919190613f5b565b612d4a565b6040516108a39190614bf6565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190613f01565b612dde565b6040516108e19291906150b3565b60405180910390f35b3480156108f657600080fd5b506108ff612e02565b005b34801561090d57600080fd5b50610928600480360381019061092391906144c0565b612e9b565b005b34801561093657600080fd5b50610951600480360381019061094c9190613f01565b612f21565b005b34801561095f57600080fd5b50610968613019565b6040516109759190614bf6565b60405180910390f35b34801561098a57600080fd5b5061099361302c565b6040516109a09190614bf6565b60405180910390f35b3480156109b557600080fd5b506109d060048036038101906109cb91906144c0565b61303f565b6040516109dd9190614bf6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac15750610ac08261305f565b5b9050919050565b6000610ad26130c9565b73ffffffffffffffffffffffffffffffffffffffff16610af0612479565b73ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90614f78565b60405180910390fd5b600115158315151415610ba3578173ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b99573d6000803e3d6000fd5b5060019050610c31565b478410610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90614d98565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050158015610c2b573d6000803e3d6000fd5b50600190505b9392505050565b610c406130c9565b73ffffffffffffffffffffffffffffffffffffffff16610c5e612479565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90614f78565b60405180910390fd5b600a60189054906101000a900460ff1615610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90614d78565b60405180910390fd5b80600b9080519060200190610d1a929190613ade565b5050565b606060018054610d2d9061546a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d599061546a565b8015610da65780601f10610d7b57610100808354040283529160200191610da6565b820191906000526020600020905b815481529060010190602001808311610d8957829003601f168201915b5050505050905090565b6000610dbb826130d1565b610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614f38565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e40826121c7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614fb8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ed06130c9565b73ffffffffffffffffffffffffffffffffffffffff161480610eff5750610efe81610ef96130c9565b612d4a565b5b610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590614e38565b60405180910390fd5b610f48838361313d565b505050565b610f556130c9565b73ffffffffffffffffffffffffffffffffffffffff16610f73612479565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090614f78565b60405180910390fd5b600a60169054906101000a900460ff1615600a60166101000a81548160ff021916908315150217905550565b60006010826040516110079190614b30565b908152602001604051809103902060009054906101000a900460ff169050919050565b61103b6110356130c9565b826131f6565b61107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190614ff8565b60405180910390fd5b6110858383836132d4565b505050565b600a60149054906101000a900460ff1681565b6110a56130c9565b73ffffffffffffffffffffffffffffffffffffffff166110c3612479565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614f78565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b61114d6130c9565b73ffffffffffffffffffffffffffffffffffffffff1661116b612479565b73ffffffffffffffffffffffffffffffffffffffff16146111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890614f78565b60405180910390fd5b600a60179054906101000a900460ff16611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790614d38565b60405180910390fd5b600954815161121f6007613530565b6112299190615276565b111561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190614c98565b60405180910390fd5b60005b81518110156113ad5760001515601083838151811061128f5761128e6155a3565b5b60200260200101516040516112a49190614b30565b908152602001604051809103902060009054906101000a900460ff16151514611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990614e58565b60405180910390fd5b600061130e6007613530565b905061131a338261353e565b61133e81848481518110611331576113306155a3565b5b602002602001015161355c565b61134860076135d0565b6001601084848151811061135f5761135e6155a3565b5b60200260200101516040516113749190614b30565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505080806113a5906154cd565b91505061126d565b5050565b6113b96130c9565b73ffffffffffffffffffffffffffffffffffffffff166113d7612479565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490614f78565b60405180910390fd5b600a60179054906101000a900460ff1661147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390614ef8565b60405180910390fd5b8060098190555050565b6114a18383836040518060200160405280600081525061295d565b505050565b600a60179054906101000a900460ff166114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90614eb8565b60405180910390fd5b6009546115026007613530565b10611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990614c98565b60405180910390fd5b600a60169054906101000a900460ff1615611748576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411806117085750600081511180156116a457503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e83600081518110611618576116176155a3565b5b60200260200101516040518263ffffffff1660e01b815260040161163c9190615098565b60206040518083038186803b15801561165457600080fd5b505afa158015611668573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168c9190613f2e565b73ffffffffffffffffffffffffffffffffffffffff16145b80156116ef57506000151560116000836000815181106116c7576116c66155a3565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515145b80156117075750600a60149054906101000a900460ff165b5b611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90614fd8565b60405180910390fd5b5b600a60159054906101000a900460ff1615611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90614dd8565b60405180910390fd5b6001815111156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614df8565b60405180910390fd5b6117e783836125a9565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90615078565b60405180910390fd5b6000151560108460405161188a9190614b30565b908152602001604051809103902060009054906101000a900460ff161515146118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90614e58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561195157503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b61195a57600080fd5b60006119666007613530565b9050600a60149054906101000a900460ff1615611f9157600182511415611f905760648260008151811061199d5761199c6155a3565b5b6020026020010151111580156119cf57506000826000815181106119c4576119c36155a3565b5b602002602001015110155b15611c8a57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e83600081518110611a2657611a256155a3565b5b60200260200101516040518263ffffffff1660e01b8152600401611a4a9190615098565b60206040518083038186803b158015611a6257600080fd5b505afa158015611a76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9a9190613f2e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90615018565b60405180910390fd5b600015156011600084600081518110611b2357611b226155a3565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8090614e18565b60405180910390fd5b60016011600084600081518110611ba357611ba26155a3565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550611bfc600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261353e565b611c39600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383604051806020016040528060008152506135e6565b611c43818561355c565b611c4d60076135d0565b6001601085604051611c5f9190614b30565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505061219c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e83600081518110611cdc57611cdb6155a3565b5b60200260200101516040518263ffffffff1660e01b8152600401611d009190615098565b60206040518083038186803b158015611d1857600080fd5b505afa158015611d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d509190613f2e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490615038565b60405180910390fd5b6002600c54611dcc91906152cc565b3414611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490614ed8565b60405180910390fd5b600015156011600084600081518110611e2957611e286155a3565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514611e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8690614e18565b60405180910390fd5b60016011600084600081518110611ea957611ea86155a3565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550611f02600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261353e565b611f3f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383604051806020016040528060008152506135e6565b611f49818561355c565b611f5360076135d0565b6001601085604051611f659190614b30565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505061219c565b5b600a60169054906101000a900460ff16156120a057662386f26fc10000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154611ffb91906152fd565b341461200657600080fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546120559190615357565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506120e6565b600c543410156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614d58565b60405180910390fd5b5b612112600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261353e565b61214f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163383604051806020016040528060008152506135e6565b612159818561355c565b61216360076135d0565b60016010856040516121759190614b30565b908152602001604051809103902060006101000a81548160ff021916908315150217905550505b505050565b600a60179054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614e98565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e190614e78565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6123396130c9565b73ffffffffffffffffffffffffffffffffffffffff16612357612479565b73ffffffffffffffffffffffffffffffffffffffff16146123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614f78565b60405180910390fd5b6123b76000613642565b565b6123c16130c9565b73ffffffffffffffffffffffffffffffffffffffff166123df612479565b73ffffffffffffffffffffffffffffffffffffffff1614612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c90614f78565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546124b19061546a565b80601f01602080910402602001604051908101604052809291908181526020018280546124dd9061546a565b801561252a5780601f106124ff5761010080835404028352916020019161252a565b820191906000526020600020905b81548152906001019060200180831161250d57829003601f168201915b5050505050905090565b6000806000806125438561276c565b809350819450829550505050600186848484604051600081526020016040526040516125729493929190614c11565b6020604051602081039080840390855afa158015612594573d6000803e3d6000fd5b50505060206040510351935050505092915050565b60008083600e6040516020016125c0929190614b47565b6040516020818303038152906040528051906020012090506125e28184612534565b91505092915050565b6125f36130c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265890614d18565b60405180910390fd5b806006600061266e6130c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661271b6130c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127609190614bf6565b60405180910390a35050565b6000806000604184511461277f57600080fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b6127b76130c9565b73ffffffffffffffffffffffffffffffffffffffff166127d5612479565b73ffffffffffffffffffffffffffffffffffffffff161461282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614f78565b60405180910390fd5b600a60189054906101000a900460ff161561287b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287290614d78565b60405180910390fd5b60005b8251811015612958576128aa83828151811061289d5761289c6155a3565b5b60200260200101516130d1565b6128e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e090614f58565b60405180910390fd5b8181815181106128fc576128fb6155a3565b5b6020026020010151600f600085848151811061291b5761291a6155a3565b5b602002602001015181526020019081526020016000209080519060200190612944929190613ade565b508080612950906154cd565b91505061287e565b505050565b61296e6129686130c9565b836131f6565b6129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490614ff8565b60405180910390fd5b6129b9848484846135e6565b50505050565b600c5481565b6129cd6130c9565b73ffffffffffffffffffffffffffffffffffffffff166129eb612479565b73ffffffffffffffffffffffffffffffffffffffff1614612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890614f78565b60405180910390fd5b81518351148015612a53575080518251145b612a5c57600080fd5b60005b8251811015612b7157828181518110612a7b57612a7a6155a3565b5b602002602001015160126000868481518110612a9a57612a996155a3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550818181518110612af657612af56155a3565b5b602002602001015160126000868481518110612b1557612b146155a3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508080612b69906154cd565b915050612a5f565b50505050565b6060612b82826130d1565b612bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb890615058565b60405180910390fd5b600b600f6000848152602001908152602001600020604051602001612be7929190614b6b565b6040516020818303038152906040529050919050565b60078060000154905081565b612c116130c9565b73ffffffffffffffffffffffffffffffffffffffff16612c2f612479565b73ffffffffffffffffffffffffffffffffffffffff1614612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90614f78565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b612cb96130c9565b73ffffffffffffffffffffffffffffffffffffffff16612cd7612479565b73ffffffffffffffffffffffffffffffffffffffff1614612d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2490614f78565b60405180910390fd5b6000600a60176101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60126020528060005260406000206000915090508060000154908060010154905082565b612e0a6130c9565b73ffffffffffffffffffffffffffffffffffffffff16612e28612479565b73ffffffffffffffffffffffffffffffffffffffff1614612e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7590614f78565b60405180910390fd5b6001600a60186101000a81548160ff021916908315150217905550565b612ea36130c9565b73ffffffffffffffffffffffffffffffffffffffff16612ec1612479565b73ffffffffffffffffffffffffffffffffffffffff1614612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e90614f78565b60405180910390fd5b80600c8190555050565b612f296130c9565b73ffffffffffffffffffffffffffffffffffffffff16612f47612479565b73ffffffffffffffffffffffffffffffffffffffff1614612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9490614f78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561300d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300490614cb8565b60405180910390fd5b61301681613642565b50565b600a60189054906101000a900460ff1681565b600a60169054906101000a900460ff1681565b60116020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166131b0836121c7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613201826130d1565b613240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323790614db8565b60405180910390fd5b600061324b836121c7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806132ba57508373ffffffffffffffffffffffffffffffffffffffff166132a284610db0565b73ffffffffffffffffffffffffffffffffffffffff16145b806132cb57506132ca8185612d4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166132f4826121c7565b73ffffffffffffffffffffffffffffffffffffffff161461334a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334190614f98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b190614cf8565b60405180910390fd5b6133c5838383613706565b6133d060008261313d565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134209190615357565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134779190615276565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b61355882826040518060200160405280600081525061370b565b5050565b613565826130d1565b6135a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359b90614f58565b60405180910390fd5b80600f600084815260200190815260200160002090805190602001906135cb929190613ade565b505050565b6001816000016000828254019250508190555050565b6135f18484846132d4565b6135fd84848484613766565b61363c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363390614c78565b60405180910390fd5b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b61371583836138fd565b6137226000848484613766565b613761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375890614c78565b60405180910390fd5b505050565b60006137878473ffffffffffffffffffffffffffffffffffffffff16613acb565b156138f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137b06130c9565b8786866040518563ffffffff1660e01b81526004016137d29493929190614baa565b602060405180830381600087803b1580156137ec57600080fd5b505af192505050801561381d57506040513d601f19601f8201168201806040525081019061381a91906142e2565b60015b6138a0573d806000811461384d576040519150601f19603f3d011682016040523d82523d6000602084013e613852565b606091505b50600081511415613898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388f90614c78565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138f5565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561396d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396490614f18565b60405180910390fd5b613976816130d1565b156139b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ad90614cd8565b60405180910390fd5b6139c260008383613706565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a129190615276565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613aea9061546a565b90600052602060002090601f016020900481019282613b0c5760008555613b53565b82601f10613b2557805160ff1916838001178555613b53565b82800160010185558215613b53579182015b82811115613b52578251825591602001919060010190613b37565b5b509050613b609190613b64565b5090565b5b80821115613b7d576000816000905550600101613b65565b5090565b6000613b94613b8f84615138565b615113565b90508083825260208201905082856020860282011115613bb757613bb6615606565b5b60005b85811015613be75781613bcd8882613d73565b845260208401935060208301925050600181019050613bba565b5050509392505050565b6000613c04613bff84615164565b615113565b90508083825260208201905082856020860282011115613c2757613c26615606565b5b60005b85811015613c7557813567ffffffffffffffff811115613c4d57613c4c615601565b5b808601613c5a8982613ebe565b85526020850194506020840193505050600181019050613c2a565b5050509392505050565b6000613c92613c8d84615190565b615113565b90508083825260208201905082856020860282011115613cb557613cb4615606565b5b60005b85811015613ce55781613ccb8882613eec565b845260208401935060208301925050600181019050613cb8565b5050509392505050565b6000613d02613cfd846151bc565b615113565b905082815260208101848484011115613d1e57613d1d61560b565b5b613d29848285615428565b509392505050565b6000613d44613d3f846151ed565b615113565b905082815260208101848484011115613d6057613d5f61560b565b5b613d6b848285615428565b509392505050565b600081359050613d8281615ede565b92915050565b600081519050613d9781615ede565b92915050565b600081359050613dac81615ef5565b92915050565b600082601f830112613dc757613dc6615601565b5b8135613dd7848260208601613b81565b91505092915050565b600082601f830112613df557613df4615601565b5b8135613e05848260208601613bf1565b91505092915050565b600082601f830112613e2357613e22615601565b5b8135613e33848260208601613c7f565b91505092915050565b600081359050613e4b81615f0c565b92915050565b600081359050613e6081615f23565b92915050565b600081359050613e7581615f3a565b92915050565b600081519050613e8a81615f3a565b92915050565b600082601f830112613ea557613ea4615601565b5b8135613eb5848260208601613cef565b91505092915050565b600082601f830112613ed357613ed2615601565b5b8135613ee3848260208601613d31565b91505092915050565b600081359050613efb81615f51565b92915050565b600060208284031215613f1757613f16615615565b5b6000613f2584828501613d73565b91505092915050565b600060208284031215613f4457613f43615615565b5b6000613f5284828501613d88565b91505092915050565b60008060408385031215613f7257613f71615615565b5b6000613f8085828601613d73565b9250506020613f9185828601613d73565b9150509250929050565b600080600060608486031215613fb457613fb3615615565b5b6000613fc286828701613d73565b9350506020613fd386828701613d73565b9250506040613fe486828701613eec565b9150509250925092565b6000806000806080858703121561400857614007615615565b5b600061401687828801613d73565b945050602061402787828801613d73565b935050604061403887828801613eec565b925050606085013567ffffffffffffffff81111561405957614058615610565b5b61406587828801613e90565b91505092959194509250565b6000806040838503121561408857614087615615565b5b600061409685828601613d73565b92505060206140a785828601613e3c565b9150509250929050565b600080604083850312156140c8576140c7615615565b5b60006140d685828601613d73565b92505060206140e785828601613eec565b9150509250929050565b60008060006060848603121561410a57614109615615565b5b600084013567ffffffffffffffff81111561412857614127615610565b5b61413486828701613db2565b935050602084013567ffffffffffffffff81111561415557614154615610565b5b61416186828701613e0e565b925050604084013567ffffffffffffffff81111561418257614181615610565b5b61418e86828701613e0e565b9150509250925092565b6000602082840312156141ae576141ad615615565b5b600082013567ffffffffffffffff8111156141cc576141cb615610565b5b6141d884828501613de0565b91505092915050565b600080604083850312156141f8576141f7615615565b5b600083013567ffffffffffffffff81111561421657614215615610565b5b61422285828601613e0e565b925050602083013567ffffffffffffffff81111561424357614242615610565b5b61424f85828601613de0565b9150509250929050565b600080604083850312156142705761426f615615565b5b600061427e85828601613e51565b925050602083013567ffffffffffffffff81111561429f5761429e615610565b5b6142ab85828601613e90565b9150509250929050565b6000602082840312156142cb576142ca615615565b5b60006142d984828501613e66565b91505092915050565b6000602082840312156142f8576142f7615615565b5b600061430684828501613e7b565b91505092915050565b60006020828403121561432557614324615615565b5b600082013567ffffffffffffffff81111561434357614342615610565b5b61434f84828501613e90565b91505092915050565b60006020828403121561436e5761436d615615565b5b600082013567ffffffffffffffff81111561438c5761438b615610565b5b61439884828501613ebe565b91505092915050565b600080604083850312156143b8576143b7615615565b5b600083013567ffffffffffffffff8111156143d6576143d5615610565b5b6143e285828601613ebe565b925050602083013567ffffffffffffffff81111561440357614402615610565b5b61440f85828601613e90565b9150509250929050565b60008060006060848603121561443257614431615615565b5b600084013567ffffffffffffffff8111156144505761444f615610565b5b61445c86828701613ebe565b935050602084013567ffffffffffffffff81111561447d5761447c615610565b5b61448986828701613e90565b925050604084013567ffffffffffffffff8111156144aa576144a9615610565b5b6144b686828701613e0e565b9150509250925092565b6000602082840312156144d6576144d5615615565b5b60006144e484828501613eec565b91505092915050565b60008060006060848603121561450657614505615615565b5b600061451486828701613eec565b935050602061452586828701613e3c565b925050604061453686828701613d9d565b9150509250925092565b6145498161538b565b82525050565b614558816153af565b82525050565b614567816153bb565b82525050565b600061457882615233565b6145828185615249565b9350614592818560208601615437565b61459b8161561a565b840191505092915050565b60006145b18261523e565b6145bb818561525a565b93506145cb818560208601615437565b6145d48161561a565b840191505092915050565b60006145ea8261523e565b6145f4818561526b565b9350614604818560208601615437565b80840191505092915050565b6000815461461d8161546a565b614627818661526b565b94506001821660008114614642576001811461465357614686565b60ff19831686528186019350614686565b61465c8561521e565b60005b8381101561467e5781548189015260018201915060208101905061465f565b838801955050505b50505092915050565b600061469c60328361525a565b91506146a78261562b565b604082019050919050565b60006146bf60168361525a565b91506146ca8261567a565b602082019050919050565b60006146e260268361525a565b91506146ed826156a3565b604082019050919050565b6000614705601c8361525a565b9150614710826156f2565b602082019050919050565b600061472860248361525a565b91506147338261571b565b604082019050919050565b600061474b60198361525a565b91506147568261576a565b602082019050919050565b600061476e60308361525a565b915061477982615793565b604082019050919050565b600061479160148361525a565b915061479c826157e2565b602082019050919050565b60006147b460238361525a565b91506147bf8261580b565b604082019050919050565b60006147d760238361525a565b91506147e28261585a565b604082019050919050565b60006147fa602c8361525a565b9150614805826158a9565b604082019050919050565b600061481d601e8361525a565b9150614828826158f8565b602082019050919050565b6000614840601b8361525a565b915061484b82615921565b602082019050919050565b600061486360268361525a565b915061486e8261594a565b604082019050919050565b600061488660388361525a565b915061489182615999565b604082019050919050565b60006148a960188361525a565b91506148b4826159e8565b602082019050919050565b60006148cc602a8361525a565b91506148d782615a11565b604082019050919050565b60006148ef60298361525a565b91506148fa82615a60565b604082019050919050565b600061491260258361525a565b915061491d82615aaf565b604082019050919050565b6000614935602c8361525a565b915061494082615afe565b604082019050919050565b600061495860228361525a565b915061496382615b4d565b604082019050919050565b600061497b60208361525a565b915061498682615b9c565b602082019050919050565b600061499e602c8361525a565b91506149a982615bc5565b604082019050919050565b60006149c1602c8361525a565b91506149cc82615c14565b604082019050919050565b60006149e460208361525a565b91506149ef82615c63565b602082019050919050565b6000614a0760298361525a565b9150614a1282615c8c565b604082019050919050565b6000614a2a60218361525a565b9150614a3582615cdb565b604082019050919050565b6000614a4d60258361525a565b9150614a5882615d2a565b604082019050919050565b6000614a7060318361525a565b9150614a7b82615d79565b604082019050919050565b6000614a9360328361525a565b9150614a9e82615dc8565b604082019050919050565b6000614ab6602b8361525a565b9150614ac182615e17565b604082019050919050565b6000614ad960248361525a565b9150614ae482615e66565b604082019050919050565b6000614afc60188361525a565b9150614b0782615eb5565b602082019050919050565b614b1b81615411565b82525050565b614b2a8161541b565b82525050565b6000614b3c82846145df565b915081905092915050565b6000614b5382856145df565b9150614b5f8284614610565b91508190509392505050565b6000614b778285614610565b9150614b838284614610565b91508190509392505050565b6000602082019050614ba46000830184614540565b92915050565b6000608082019050614bbf6000830187614540565b614bcc6020830186614540565b614bd96040830185614b12565b8181036060830152614beb818461456d565b905095945050505050565b6000602082019050614c0b600083018461454f565b92915050565b6000608082019050614c26600083018761455e565b614c336020830186614b21565b614c40604083018561455e565b614c4d606083018461455e565b95945050505050565b60006020820190508181036000830152614c7081846145a6565b905092915050565b60006020820190508181036000830152614c918161468f565b9050919050565b60006020820190508181036000830152614cb1816146b2565b9050919050565b60006020820190508181036000830152614cd1816146d5565b9050919050565b60006020820190508181036000830152614cf1816146f8565b9050919050565b60006020820190508181036000830152614d118161471b565b9050919050565b60006020820190508181036000830152614d318161473e565b9050919050565b60006020820190508181036000830152614d5181614761565b9050919050565b60006020820190508181036000830152614d7181614784565b9050919050565b60006020820190508181036000830152614d91816147a7565b9050919050565b60006020820190508181036000830152614db1816147ca565b9050919050565b60006020820190508181036000830152614dd1816147ed565b9050919050565b60006020820190508181036000830152614df181614810565b9050919050565b60006020820190508181036000830152614e1181614833565b9050919050565b60006020820190508181036000830152614e3181614856565b9050919050565b60006020820190508181036000830152614e5181614879565b9050919050565b60006020820190508181036000830152614e718161489c565b9050919050565b60006020820190508181036000830152614e91816148bf565b9050919050565b60006020820190508181036000830152614eb1816148e2565b9050919050565b60006020820190508181036000830152614ed181614905565b9050919050565b60006020820190508181036000830152614ef181614928565b9050919050565b60006020820190508181036000830152614f118161494b565b9050919050565b60006020820190508181036000830152614f318161496e565b9050919050565b60006020820190508181036000830152614f5181614991565b9050919050565b60006020820190508181036000830152614f71816149b4565b9050919050565b60006020820190508181036000830152614f91816149d7565b9050919050565b60006020820190508181036000830152614fb1816149fa565b9050919050565b60006020820190508181036000830152614fd181614a1d565b9050919050565b60006020820190508181036000830152614ff181614a40565b9050919050565b6000602082019050818103600083015261501181614a63565b9050919050565b6000602082019050818103600083015261503181614a86565b9050919050565b6000602082019050818103600083015261505181614aa9565b9050919050565b6000602082019050818103600083015261507181614acc565b9050919050565b6000602082019050818103600083015261509181614aef565b9050919050565b60006020820190506150ad6000830184614b12565b92915050565b60006040820190506150c86000830185614b12565b6150d56020830184614b12565b9392505050565b60006060820190506150f16000830186614b21565b6150fe602083018561455e565b61510b604083018461455e565b949350505050565b600061511d61512e565b9050615129828261549c565b919050565b6000604051905090565b600067ffffffffffffffff821115615153576151526155d2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561517f5761517e6155d2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151ab576151aa6155d2565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151d7576151d66155d2565b5b6151e08261561a565b9050602081019050919050565b600067ffffffffffffffff821115615208576152076155d2565b5b6152118261561a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061528182615411565b915061528c83615411565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152c1576152c0615516565b5b828201905092915050565b60006152d782615411565b91506152e283615411565b9250826152f2576152f1615545565b5b828204905092915050565b600061530882615411565b915061531383615411565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561534c5761534b615516565b5b828202905092915050565b600061536282615411565b915061536d83615411565b9250828210156153805761537f615516565b5b828203905092915050565b6000615396826153f1565b9050919050565b60006153a8826153f1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561545557808201518184015260208101905061543a565b83811115615464576000848401525b50505050565b6000600282049050600182168061548257607f821691505b6020821081141561549657615495615574565b5b50919050565b6154a58261561a565b810181811067ffffffffffffffff821117156154c4576154c36155d2565b5b80604052505050565b60006154d882615411565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561550b5761550a615516565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d7574746e696b732061726520736f6c64206f75742100000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f436f6e7472616374206973206c6f636b656420616e64207065726d616e656e7460008201527f6c7920646563656e7472616c697a656400000000000000000000000000000000602082015250565b7f496e636f72726563742076616c75652073656e74000000000000000000000000600082015250565b7f4d657461646174612069732066726f7a656e20616e6420756e6368616e67656160008201527f626c650000000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206e6f7420776f7274682074686174206d7563682060008201527f7965740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e74726163742069732070617573656420666f72206d696e74696e670000600082015250565b7f506172616d65746572732073656e7420696e636f72726563746c790000000000600082015250565b7f596f75206861766520616c72656164792072656465656d65642074686973204d60008201527f7574746e696b0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f54686973205374617220616c7265616479206578697374730000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973207065726d616e656e746c7920646563656e74726160008201527f6c697a6564000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f72726563742076616c75652073656e743a2053686f756c642062652060008201527f68616c66206f66206d696e740000000000000000000000000000000000000000602082015250565b7f436f6e7472616374207065726d616e656e746c7920646563656e7472616c697a60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420656e7469746c656420746f206d696e742053746160008201527f7220796574000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e6572206f66207468697320313060008201527f3120466f756e646174696f6e20746f6b656e0000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e6572206f662074686973204d7560008201527f74746e696b20746f6b656e000000000000000000000000000000000000000000602082015250565b7f546f6b656e55524920717565727920666f72206e6f6e6578697374656e74207460008201527f6f6b656e00000000000000000000000000000000000000000000000000000000602082015250565b7f556e61757468656e7469666963617465642073656e6465720000000000000000600082015250565b615ee78161538b565b8114615ef257600080fd5b50565b615efe8161539d565b8114615f0957600080fd5b50565b615f15816153af565b8114615f2057600080fd5b50565b615f2c816153bb565b8114615f3757600080fd5b50565b615f43816153c5565b8114615f4e57600080fd5b50565b615f5a81615411565b8114615f6557600080fd5b5056fea26469706673582212208e84f8002edbb02c7cff2da19758f8aced97444b9e2d8f97edfa778d75bb247c64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008c1826eba8111e31f0e0ad0f440ce2137bb33dcd000000000000000000000000ca61ad7aae3afbc15c2ba618612ffa2c2265c821000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000045374617200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f636f736d6963706177732e6d7970696e6174612e636c6f75642f697066732f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : verificationaccount (address): 0x8c1826Eba8111e31F0E0ad0F440CE2137bb33Dcd
Arg [1] : adrMuttContract (address): 0xCa61AD7AaE3afBC15c2ba618612FfA2c2265C821
Arg [2] : _identifier (string): Star
Arg [3] : _gateway (string): https://cosmicpaws.mypinata.cloud/ipfs/
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000008c1826eba8111e31f0e0ad0f440ce2137bb33dcd
Arg [1] : 000000000000000000000000ca61ad7aae3afbc15c2ba618612ffa2c2265c821
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5374617200000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [7] : 68747470733a2f2f636f736d6963706177732e6d7970696e6174612e636c6f75
Arg [8] : 642f697066732f00000000000000000000000000000000000000000000000000
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.