Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 189 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21027309 | 98 days ago | IN | 0 ETH | 0.00024608 | ||||
Set Approval For... | 20480035 | 174 days ago | IN | 0 ETH | 0.00002485 | ||||
Set Approval For... | 18991890 | 383 days ago | IN | 0 ETH | 0.0027808 | ||||
Set Approval For... | 17901966 | 535 days ago | IN | 0 ETH | 0.00031464 | ||||
Set Approval For... | 17685219 | 566 days ago | IN | 0 ETH | 0.00118184 | ||||
Set Approval For... | 17549426 | 585 days ago | IN | 0 ETH | 0.00063653 | ||||
Set Approval For... | 17455936 | 598 days ago | IN | 0 ETH | 0.00042441 | ||||
Set Approval For... | 17421493 | 603 days ago | IN | 0 ETH | 0.0012458 | ||||
Safe Transfer Fr... | 16154616 | 781 days ago | IN | 0 ETH | 0.00096508 | ||||
Set Approval For... | 16054270 | 795 days ago | IN | 0 ETH | 0.00043813 | ||||
Safe Transfer Fr... | 16039772 | 797 days ago | IN | 0 ETH | 0.00080317 | ||||
Safe Transfer Fr... | 15836701 | 825 days ago | IN | 0 ETH | 0.00063459 | ||||
Set Approval For... | 15319089 | 902 days ago | IN | 0 ETH | 0.00040598 | ||||
Set Approval For... | 15319089 | 902 days ago | IN | 0 ETH | 0.00070761 | ||||
Set Approval For... | 15235005 | 915 days ago | IN | 0 ETH | 0.00062343 | ||||
Set Approval For... | 15110457 | 934 days ago | IN | 0 ETH | 0.00103243 | ||||
Transfer From | 15069448 | 941 days ago | IN | 0 ETH | 0.00094057 | ||||
Set Approval For... | 15040247 | 946 days ago | IN | 0 ETH | 0.00243305 | ||||
Set Approval For... | 15037502 | 946 days ago | IN | 0 ETH | 0.0022183 | ||||
Set Approval For... | 15022546 | 949 days ago | IN | 0 ETH | 0.0009044 | ||||
Set Approval For... | 15018597 | 950 days ago | IN | 0 ETH | 0.00228938 | ||||
Set Approval For... | 14745660 | 995 days ago | IN | 0 ETH | 0.00435242 | ||||
Set Approval For... | 14739042 | 996 days ago | IN | 0 ETH | 0.00034974 | ||||
Safe Transfer Fr... | 14738982 | 996 days ago | IN | 0 ETH | 0.00080154 | ||||
Set Approval For... | 14738931 | 996 days ago | IN | 0 ETH | 0.00052822 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PinkBoxPresent
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: NONE pragma solidity >=0.8.10 <=0.8.10; import "./OpenzeppelinERC721.sol"; contract PinkBoxPresent is ERC721URIStorage { address public owner; uint256 public nftid = 1; bool revealed = false; bool minton = true; string pinkBox = "ipfs://QmdWLdQZpwe51MEovVU9u8BuRdruVzomeTAXANqhpAkTef"; string cap = "ipfs://QmVZ5AuMWLVa91d7R3oBSUC2WiccwfVpkftu8ei83VYMkz"; string sweatshirt = "ipfs://QmVMnaw1eYdPkn4HxremsmSSuDwdxpZ3tXrvcJgKtwUsKd"; function mintOff() public{ require( _msgSender() == owner ); minton = false; } function reveal() public{ require( _msgSender() == owner ); revealed = true; } function multiMint(uint qty) public { require( minton ); require( _msgSender() == owner ); uint target = nftid - 1 + qty; for (uint i = nftid; i <= target; i++ ){ _safeMint( owner , nftid); nftid++; } } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721URIStorage) { super._burn(tokenId); } function burn(uint256 _id) public { require( _msgSender() == ownerOf(_id)); _burn(_id); } function tokenURI(uint256 tokenId) public view override(ERC721URIStorage) returns (string memory) { if(revealed){ if( tokenId%2 == 0 ){ return cap; } else { return sweatshirt; } } else { return pinkBox; } } function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) { return super.supportsInterface(interfaceId); } constructor() ERC721("Pink Box Present" , "imma" ) { owner = _msgSender(); } }
// 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); } /** * @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; } /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @dev 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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; } } /** * @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}. 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"_id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"multiMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","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":"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"}]
Contract Creation Code
608060405260016008556000600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff02191690831515021790555060405180606001604052806035815260200162002dd260359139600a908051906020019062000070929190620001e1565b5060405180606001604052806035815260200162002e0760359139600b9080519060200190620000a2929190620001e1565b5060405180606001604052806035815260200162002d9d60359139600c9080519060200190620000d4929190620001e1565b50348015620000e257600080fd5b506040518060400160405280601081526020017f50696e6b20426f782050726573656e74000000000000000000000000000000008152506040518060400160405280600481526020017f696d6d6100000000000000000000000000000000000000000000000000000000815250816000908051906020019062000167929190620001e1565b50806001908051906020019062000180929190620001e1565b50505062000193620001d960201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002f6565b600033905090565b828054620001ef90620002c0565b90600052602060002090601f0160209004810192826200021357600085556200025f565b82601f106200022e57805160ff19168380011785556200025f565b828001600101855582156200025f579182015b828111156200025e57825182559160200191906001019062000241565b5b5090506200026e919062000272565b5090565b5b808211156200028d57600081600090555060010162000273565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d957607f821691505b60208210811415620002f057620002ef62000291565b5b50919050565b612a9780620003066000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80636fd976bc116100ad578063a475b5dd11610071578063a475b5dd146102f4578063ab00492f146102fe578063b88d4fde1461031a578063c87b56dd14610336578063e985e9c51461036657610121565b80636fd976bc1461024e57806370a082311461026c5780638da5cb5b1461029c57806395d89b41146102ba578063a22cb465146102d857610121565b806323b872dd116100f457806323b872dd146101c057806342842e0e146101dc57806342966c68146101f85780636352211e146102145780636876a8461461024457610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b9190611b6c565b610396565b60405161014d9190611bb4565b60405180910390f35b61015e6103a8565b60405161016b9190611c68565b60405180910390f35b61018e60048036038101906101899190611cc0565b61043a565b60405161019b9190611d2e565b60405180910390f35b6101be60048036038101906101b99190611d75565b6104bf565b005b6101da60048036038101906101d59190611db5565b6105d7565b005b6101f660048036038101906101f19190611db5565b610637565b005b610212600480360381019061020d9190611cc0565b610657565b005b61022e60048036038101906102299190611cc0565b6106aa565b60405161023b9190611d2e565b60405180910390f35b61024c61075c565b005b6102566107da565b6040516102639190611e17565b60405180910390f35b61028660048036038101906102819190611e32565b6107e0565b6040516102939190611e17565b60405180910390f35b6102a4610898565b6040516102b19190611d2e565b60405180910390f35b6102c26108be565b6040516102cf9190611c68565b60405180910390f35b6102f260048036038101906102ed9190611e8b565b610950565b005b6102fc610ad1565b005b61031860048036038101906103139190611cc0565b610b4f565b005b610334600480360381019061032f9190612000565b610c54565b005b610350600480360381019061034b9190611cc0565b610cb6565b60405161035d9190611c68565b60405180910390f35b610380600480360381019061037b9190612083565b610e99565b60405161038d9190611bb4565b60405180910390f35b60006103a182610f2d565b9050919050565b6060600080546103b7906120f2565b80601f01602080910402602001604051908101604052809291908181526020018280546103e3906120f2565b80156104305780601f1061040557610100808354040283529160200191610430565b820191906000526020600020905b81548152906001019060200180831161041357829003601f168201915b5050505050905090565b60006104458261100f565b610484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047b90612196565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104ca826106aa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561053b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053290612228565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661055a61107b565b73ffffffffffffffffffffffffffffffffffffffff16148061058957506105888161058361107b565b610e99565b5b6105c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bf906122ba565b60405180910390fd5b6105d28383611083565b505050565b6105e86105e261107b565b8261113c565b610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061e9061234c565b60405180910390fd5b61063283838361121a565b505050565b61065283838360405180602001604052806000815250610c54565b505050565b610660816106aa565b73ffffffffffffffffffffffffffffffffffffffff1661067e61107b565b73ffffffffffffffffffffffffffffffffffffffff161461069e57600080fd5b6106a781611476565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074a906123de565b60405180910390fd5b80915050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661079d61107b565b73ffffffffffffffffffffffffffffffffffffffff16146107bd57600080fd5b6000600960016101000a81548160ff021916908315150217905550565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890612470565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546108cd906120f2565b80601f01602080910402602001604051908101604052809291908181526020018280546108f9906120f2565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b61095861107b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd906124dc565b60405180910390fd5b80600560006109d361107b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610a8061107b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ac59190611bb4565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b1261107b565b73ffffffffffffffffffffffffffffffffffffffff1614610b3257600080fd5b6001600960006101000a81548160ff021916908315150217905550565b600960019054906101000a900460ff16610b6857600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ba961107b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b6000816001600854610bdb919061252b565b610be5919061255f565b9050600060085490505b818111610c4f57610c24600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600854611482565b60086000815480929190610c37906125b5565b91905055508080610c47906125b5565b915050610bef565b505050565b610c65610c5f61107b565b8361113c565b610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b9061234c565b60405180910390fd5b610cb0848484846114a0565b50505050565b6060600960009054906101000a900460ff1615610e06576000600283610cdc919061262d565b1415610d7457600b8054610cef906120f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1b906120f2565b8015610d685780601f10610d3d57610100808354040283529160200191610d68565b820191906000526020600020905b815481529060010190602001808311610d4b57829003601f168201915b50505050509050610e94565b600c8054610d81906120f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad906120f2565b8015610dfa5780601f10610dcf57610100808354040283529160200191610dfa565b820191906000526020600020905b815481529060010190602001808311610ddd57829003601f168201915b50505050509050610e94565b600a8054610e13906120f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f906120f2565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b505050505090505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ff857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110085750611007826114fc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110f6836106aa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111478261100f565b611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906126d0565b60405180910390fd5b6000611191836106aa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061120057508373ffffffffffffffffffffffffffffffffffffffff166111e88461043a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061121157506112108185610e99565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661123a826106aa565b73ffffffffffffffffffffffffffffffffffffffff1614611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790612762565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906127f4565b60405180910390fd5b61130b838383611566565b611316600082611083565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611366919061252b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113bd919061255f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61147f81611576565b50565b61149c8282604051806020016040528060008152506115c9565b5050565b6114ab84848461121a565b6114b784848484611624565b6114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90612886565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6115718383836117ac565b505050565b61157f816117b1565b600060066000838152602001908152602001600020805461159f906120f2565b9050146115c6576006600082815260200190815260200160002060006115c59190611aa3565b5b50565b6115d383836118c2565b6115e06000848484611624565b61161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690612886565b60405180910390fd5b505050565b60006116458473ffffffffffffffffffffffffffffffffffffffff16611a90565b1561179f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261166e61107b565b8786866040518563ffffffff1660e01b815260040161169094939291906128fb565b6020604051808303816000875af19250505080156116cc57506040513d601f19601f820116820180604052508101906116c9919061295c565b60015b61174f573d80600081146116fc576040519150601f19603f3d011682016040523d82523d6000602084013e611701565b606091505b50600081511415611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90612886565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506117a4565b600190505b949350505050565b505050565b60006117bc826106aa565b90506117ca81600084611566565b6117d5600083611083565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611825919061252b565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611929906129d5565b60405180910390fd5b61193b8161100f565b1561197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290612a41565b60405180910390fd5b61198760008383611566565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119d7919061255f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b508054611aaf906120f2565b6000825580601f10611ac15750611ae0565b601f016020900490600052602060002090810190611adf9190611ae3565b5b50565b5b80821115611afc576000816000905550600101611ae4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b4981611b14565b8114611b5457600080fd5b50565b600081359050611b6681611b40565b92915050565b600060208284031215611b8257611b81611b0a565b5b6000611b9084828501611b57565b91505092915050565b60008115159050919050565b611bae81611b99565b82525050565b6000602082019050611bc96000830184611ba5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c09578082015181840152602081019050611bee565b83811115611c18576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c3a82611bcf565b611c448185611bda565b9350611c54818560208601611beb565b611c5d81611c1e565b840191505092915050565b60006020820190508181036000830152611c828184611c2f565b905092915050565b6000819050919050565b611c9d81611c8a565b8114611ca857600080fd5b50565b600081359050611cba81611c94565b92915050565b600060208284031215611cd657611cd5611b0a565b5b6000611ce484828501611cab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d1882611ced565b9050919050565b611d2881611d0d565b82525050565b6000602082019050611d436000830184611d1f565b92915050565b611d5281611d0d565b8114611d5d57600080fd5b50565b600081359050611d6f81611d49565b92915050565b60008060408385031215611d8c57611d8b611b0a565b5b6000611d9a85828601611d60565b9250506020611dab85828601611cab565b9150509250929050565b600080600060608486031215611dce57611dcd611b0a565b5b6000611ddc86828701611d60565b9350506020611ded86828701611d60565b9250506040611dfe86828701611cab565b9150509250925092565b611e1181611c8a565b82525050565b6000602082019050611e2c6000830184611e08565b92915050565b600060208284031215611e4857611e47611b0a565b5b6000611e5684828501611d60565b91505092915050565b611e6881611b99565b8114611e7357600080fd5b50565b600081359050611e8581611e5f565b92915050565b60008060408385031215611ea257611ea1611b0a565b5b6000611eb085828601611d60565b9250506020611ec185828601611e76565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611f0d82611c1e565b810181811067ffffffffffffffff82111715611f2c57611f2b611ed5565b5b80604052505050565b6000611f3f611b00565b9050611f4b8282611f04565b919050565b600067ffffffffffffffff821115611f6b57611f6a611ed5565b5b611f7482611c1e565b9050602081019050919050565b82818337600083830152505050565b6000611fa3611f9e84611f50565b611f35565b905082815260208101848484011115611fbf57611fbe611ed0565b5b611fca848285611f81565b509392505050565b600082601f830112611fe757611fe6611ecb565b5b8135611ff7848260208601611f90565b91505092915050565b6000806000806080858703121561201a57612019611b0a565b5b600061202887828801611d60565b945050602061203987828801611d60565b935050604061204a87828801611cab565b925050606085013567ffffffffffffffff81111561206b5761206a611b0f565b5b61207787828801611fd2565b91505092959194509250565b6000806040838503121561209a57612099611b0a565b5b60006120a885828601611d60565b92505060206120b985828601611d60565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061210a57607f821691505b6020821081141561211e5761211d6120c3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612180602c83611bda565b915061218b82612124565b604082019050919050565b600060208201905081810360008301526121af81612173565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612212602183611bda565b915061221d826121b6565b604082019050919050565b6000602082019050818103600083015261224181612205565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006122a4603883611bda565b91506122af82612248565b604082019050919050565b600060208201905081810360008301526122d381612297565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612336603183611bda565b9150612341826122da565b604082019050919050565b6000602082019050818103600083015261236581612329565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006123c8602983611bda565b91506123d38261236c565b604082019050919050565b600060208201905081810360008301526123f7816123bb565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061245a602a83611bda565b9150612465826123fe565b604082019050919050565b600060208201905081810360008301526124898161244d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006124c6601983611bda565b91506124d182612490565b602082019050919050565b600060208201905081810360008301526124f5816124b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061253682611c8a565b915061254183611c8a565b925082821015612554576125536124fc565b5b828203905092915050565b600061256a82611c8a565b915061257583611c8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125aa576125a96124fc565b5b828201905092915050565b60006125c082611c8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125f3576125f26124fc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061263882611c8a565b915061264383611c8a565b925082612653576126526125fe565b5b828206905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006126ba602c83611bda565b91506126c58261265e565b604082019050919050565b600060208201905081810360008301526126e9816126ad565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061274c602983611bda565b9150612757826126f0565b604082019050919050565b6000602082019050818103600083015261277b8161273f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127de602483611bda565b91506127e982612782565b604082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612870603283611bda565b915061287b82612814565b604082019050919050565b6000602082019050818103600083015261289f81612863565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006128cd826128a6565b6128d781856128b1565b93506128e7818560208601611beb565b6128f081611c1e565b840191505092915050565b60006080820190506129106000830187611d1f565b61291d6020830186611d1f565b61292a6040830185611e08565b818103606083015261293c81846128c2565b905095945050505050565b60008151905061295681611b40565b92915050565b60006020828403121561297257612971611b0a565b5b600061298084828501612947565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006129bf602083611bda565b91506129ca82612989565b602082019050919050565b600060208201905081810360008301526129ee816129b2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612a2b601c83611bda565b9150612a36826129f5565b602082019050919050565b60006020820190508181036000830152612a5a81612a1e565b905091905056fea2646970667358221220bc3342a06f78c5edc239dae6ee8f25072d1bad5cc55dbe4da16315868a50073d64736f6c634300080a0033697066733a2f2f516d564d6e617731655964506b6e34487872656d736d53537544776478705a3374587276634a674b747755734b64697066733a2f2f516d64574c64515a70776535314d456f765655397538427552647275567a6f6d65544158414e716870416b546566697066733a2f2f516d565a3541754d574c56613931643752336f425355433257696363776656706b667475386569383356594d6b7a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c80636fd976bc116100ad578063a475b5dd11610071578063a475b5dd146102f4578063ab00492f146102fe578063b88d4fde1461031a578063c87b56dd14610336578063e985e9c51461036657610121565b80636fd976bc1461024e57806370a082311461026c5780638da5cb5b1461029c57806395d89b41146102ba578063a22cb465146102d857610121565b806323b872dd116100f457806323b872dd146101c057806342842e0e146101dc57806342966c68146101f85780636352211e146102145780636876a8461461024457610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b9190611b6c565b610396565b60405161014d9190611bb4565b60405180910390f35b61015e6103a8565b60405161016b9190611c68565b60405180910390f35b61018e60048036038101906101899190611cc0565b61043a565b60405161019b9190611d2e565b60405180910390f35b6101be60048036038101906101b99190611d75565b6104bf565b005b6101da60048036038101906101d59190611db5565b6105d7565b005b6101f660048036038101906101f19190611db5565b610637565b005b610212600480360381019061020d9190611cc0565b610657565b005b61022e60048036038101906102299190611cc0565b6106aa565b60405161023b9190611d2e565b60405180910390f35b61024c61075c565b005b6102566107da565b6040516102639190611e17565b60405180910390f35b61028660048036038101906102819190611e32565b6107e0565b6040516102939190611e17565b60405180910390f35b6102a4610898565b6040516102b19190611d2e565b60405180910390f35b6102c26108be565b6040516102cf9190611c68565b60405180910390f35b6102f260048036038101906102ed9190611e8b565b610950565b005b6102fc610ad1565b005b61031860048036038101906103139190611cc0565b610b4f565b005b610334600480360381019061032f9190612000565b610c54565b005b610350600480360381019061034b9190611cc0565b610cb6565b60405161035d9190611c68565b60405180910390f35b610380600480360381019061037b9190612083565b610e99565b60405161038d9190611bb4565b60405180910390f35b60006103a182610f2d565b9050919050565b6060600080546103b7906120f2565b80601f01602080910402602001604051908101604052809291908181526020018280546103e3906120f2565b80156104305780601f1061040557610100808354040283529160200191610430565b820191906000526020600020905b81548152906001019060200180831161041357829003601f168201915b5050505050905090565b60006104458261100f565b610484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047b90612196565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104ca826106aa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561053b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053290612228565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661055a61107b565b73ffffffffffffffffffffffffffffffffffffffff16148061058957506105888161058361107b565b610e99565b5b6105c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bf906122ba565b60405180910390fd5b6105d28383611083565b505050565b6105e86105e261107b565b8261113c565b610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061e9061234c565b60405180910390fd5b61063283838361121a565b505050565b61065283838360405180602001604052806000815250610c54565b505050565b610660816106aa565b73ffffffffffffffffffffffffffffffffffffffff1661067e61107b565b73ffffffffffffffffffffffffffffffffffffffff161461069e57600080fd5b6106a781611476565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074a906123de565b60405180910390fd5b80915050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661079d61107b565b73ffffffffffffffffffffffffffffffffffffffff16146107bd57600080fd5b6000600960016101000a81548160ff021916908315150217905550565b60085481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890612470565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546108cd906120f2565b80601f01602080910402602001604051908101604052809291908181526020018280546108f9906120f2565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b61095861107b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd906124dc565b60405180910390fd5b80600560006109d361107b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610a8061107b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ac59190611bb4565b60405180910390a35050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b1261107b565b73ffffffffffffffffffffffffffffffffffffffff1614610b3257600080fd5b6001600960006101000a81548160ff021916908315150217905550565b600960019054906101000a900460ff16610b6857600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ba961107b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b6000816001600854610bdb919061252b565b610be5919061255f565b9050600060085490505b818111610c4f57610c24600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600854611482565b60086000815480929190610c37906125b5565b91905055508080610c47906125b5565b915050610bef565b505050565b610c65610c5f61107b565b8361113c565b610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b9061234c565b60405180910390fd5b610cb0848484846114a0565b50505050565b6060600960009054906101000a900460ff1615610e06576000600283610cdc919061262d565b1415610d7457600b8054610cef906120f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1b906120f2565b8015610d685780601f10610d3d57610100808354040283529160200191610d68565b820191906000526020600020905b815481529060010190602001808311610d4b57829003601f168201915b50505050509050610e94565b600c8054610d81906120f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad906120f2565b8015610dfa5780601f10610dcf57610100808354040283529160200191610dfa565b820191906000526020600020905b815481529060010190602001808311610ddd57829003601f168201915b50505050509050610e94565b600a8054610e13906120f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3f906120f2565b8015610e8c5780601f10610e6157610100808354040283529160200191610e8c565b820191906000526020600020905b815481529060010190602001808311610e6f57829003601f168201915b505050505090505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ff857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806110085750611007826114fc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110f6836106aa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111478261100f565b611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906126d0565b60405180910390fd5b6000611191836106aa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061120057508373ffffffffffffffffffffffffffffffffffffffff166111e88461043a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061121157506112108185610e99565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661123a826106aa565b73ffffffffffffffffffffffffffffffffffffffff1614611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790612762565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906127f4565b60405180910390fd5b61130b838383611566565b611316600082611083565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611366919061252b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113bd919061255f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61147f81611576565b50565b61149c8282604051806020016040528060008152506115c9565b5050565b6114ab84848461121a565b6114b784848484611624565b6114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90612886565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6115718383836117ac565b505050565b61157f816117b1565b600060066000838152602001908152602001600020805461159f906120f2565b9050146115c6576006600082815260200190815260200160002060006115c59190611aa3565b5b50565b6115d383836118c2565b6115e06000848484611624565b61161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690612886565b60405180910390fd5b505050565b60006116458473ffffffffffffffffffffffffffffffffffffffff16611a90565b1561179f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261166e61107b565b8786866040518563ffffffff1660e01b815260040161169094939291906128fb565b6020604051808303816000875af19250505080156116cc57506040513d601f19601f820116820180604052508101906116c9919061295c565b60015b61174f573d80600081146116fc576040519150601f19603f3d011682016040523d82523d6000602084013e611701565b606091505b50600081511415611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90612886565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506117a4565b600190505b949350505050565b505050565b60006117bc826106aa565b90506117ca81600084611566565b6117d5600083611083565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611825919061252b565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611929906129d5565b60405180910390fd5b61193b8161100f565b1561197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290612a41565b60405180910390fd5b61198760008383611566565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119d7919061255f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b508054611aaf906120f2565b6000825580601f10611ac15750611ae0565b601f016020900490600052602060002090810190611adf9190611ae3565b5b50565b5b80821115611afc576000816000905550600101611ae4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b4981611b14565b8114611b5457600080fd5b50565b600081359050611b6681611b40565b92915050565b600060208284031215611b8257611b81611b0a565b5b6000611b9084828501611b57565b91505092915050565b60008115159050919050565b611bae81611b99565b82525050565b6000602082019050611bc96000830184611ba5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c09578082015181840152602081019050611bee565b83811115611c18576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c3a82611bcf565b611c448185611bda565b9350611c54818560208601611beb565b611c5d81611c1e565b840191505092915050565b60006020820190508181036000830152611c828184611c2f565b905092915050565b6000819050919050565b611c9d81611c8a565b8114611ca857600080fd5b50565b600081359050611cba81611c94565b92915050565b600060208284031215611cd657611cd5611b0a565b5b6000611ce484828501611cab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d1882611ced565b9050919050565b611d2881611d0d565b82525050565b6000602082019050611d436000830184611d1f565b92915050565b611d5281611d0d565b8114611d5d57600080fd5b50565b600081359050611d6f81611d49565b92915050565b60008060408385031215611d8c57611d8b611b0a565b5b6000611d9a85828601611d60565b9250506020611dab85828601611cab565b9150509250929050565b600080600060608486031215611dce57611dcd611b0a565b5b6000611ddc86828701611d60565b9350506020611ded86828701611d60565b9250506040611dfe86828701611cab565b9150509250925092565b611e1181611c8a565b82525050565b6000602082019050611e2c6000830184611e08565b92915050565b600060208284031215611e4857611e47611b0a565b5b6000611e5684828501611d60565b91505092915050565b611e6881611b99565b8114611e7357600080fd5b50565b600081359050611e8581611e5f565b92915050565b60008060408385031215611ea257611ea1611b0a565b5b6000611eb085828601611d60565b9250506020611ec185828601611e76565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611f0d82611c1e565b810181811067ffffffffffffffff82111715611f2c57611f2b611ed5565b5b80604052505050565b6000611f3f611b00565b9050611f4b8282611f04565b919050565b600067ffffffffffffffff821115611f6b57611f6a611ed5565b5b611f7482611c1e565b9050602081019050919050565b82818337600083830152505050565b6000611fa3611f9e84611f50565b611f35565b905082815260208101848484011115611fbf57611fbe611ed0565b5b611fca848285611f81565b509392505050565b600082601f830112611fe757611fe6611ecb565b5b8135611ff7848260208601611f90565b91505092915050565b6000806000806080858703121561201a57612019611b0a565b5b600061202887828801611d60565b945050602061203987828801611d60565b935050604061204a87828801611cab565b925050606085013567ffffffffffffffff81111561206b5761206a611b0f565b5b61207787828801611fd2565b91505092959194509250565b6000806040838503121561209a57612099611b0a565b5b60006120a885828601611d60565b92505060206120b985828601611d60565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061210a57607f821691505b6020821081141561211e5761211d6120c3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612180602c83611bda565b915061218b82612124565b604082019050919050565b600060208201905081810360008301526121af81612173565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612212602183611bda565b915061221d826121b6565b604082019050919050565b6000602082019050818103600083015261224181612205565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006122a4603883611bda565b91506122af82612248565b604082019050919050565b600060208201905081810360008301526122d381612297565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612336603183611bda565b9150612341826122da565b604082019050919050565b6000602082019050818103600083015261236581612329565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006123c8602983611bda565b91506123d38261236c565b604082019050919050565b600060208201905081810360008301526123f7816123bb565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061245a602a83611bda565b9150612465826123fe565b604082019050919050565b600060208201905081810360008301526124898161244d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006124c6601983611bda565b91506124d182612490565b602082019050919050565b600060208201905081810360008301526124f5816124b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061253682611c8a565b915061254183611c8a565b925082821015612554576125536124fc565b5b828203905092915050565b600061256a82611c8a565b915061257583611c8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125aa576125a96124fc565b5b828201905092915050565b60006125c082611c8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125f3576125f26124fc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061263882611c8a565b915061264383611c8a565b925082612653576126526125fe565b5b828206905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006126ba602c83611bda565b91506126c58261265e565b604082019050919050565b600060208201905081810360008301526126e9816126ad565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061274c602983611bda565b9150612757826126f0565b604082019050919050565b6000602082019050818103600083015261277b8161273f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127de602483611bda565b91506127e982612782565b604082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612870603283611bda565b915061287b82612814565b604082019050919050565b6000602082019050818103600083015261289f81612863565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006128cd826128a6565b6128d781856128b1565b93506128e7818560208601611beb565b6128f081611c1e565b840191505092915050565b60006080820190506129106000830187611d1f565b61291d6020830186611d1f565b61292a6040830185611e08565b818103606083015261293c81846128c2565b905095945050505050565b60008151905061295681611b40565b92915050565b60006020828403121561297257612971611b0a565b5b600061298084828501612947565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006129bf602083611bda565b91506129ca82612989565b602082019050919050565b600060208201905081810360008301526129ee816129b2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612a2b601c83611bda565b9150612a36826129f5565b602082019050919050565b60006020820190508181036000830152612a5a81612a1e565b905091905056fea2646970667358221220bc3342a06f78c5edc239dae6ee8f25072d1bad5cc55dbe4da16315868a50073d64736f6c634300080a0033
Deployed Bytecode Sourcemap
112:2015:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1827:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20770:100:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22230:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21767:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23120:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23496:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1332:112:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20464:239:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;515:101:1;;;:::i;:::-;;193:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20194:208:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;166:20:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20939:104:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22523:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;624:101:1;;;:::i;:::-;;733:278;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23718:285:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1452:365:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22889:164:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1827:194:1;1948:4;1977:36;2001:11;1977:23;:36::i;:::-;1970:43;;1827:194;;;:::o;20770:100:0:-;20824:13;20857:5;20850:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20770:100;:::o;22230:221::-;22306:7;22334:16;22342:7;22334;:16::i;:::-;22326:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22419:15;:24;22435:7;22419:24;;;;;;;;;;;;;;;;;;;;;22412:31;;22230:221;;;:::o;21767:397::-;21848:13;21864:23;21879:7;21864:14;:23::i;:::-;21848:39;;21912:5;21906:11;;:2;:11;;;;21898:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21992:5;21976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22001:37;22018:5;22025:12;:10;:12::i;:::-;22001:16;:37::i;:::-;21976:62;21968:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22135:21;22144:2;22148:7;22135:8;:21::i;:::-;21837:327;21767:397;;:::o;23120:305::-;23281:41;23300:12;:10;:12::i;:::-;23314:7;23281:18;:41::i;:::-;23273:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23389:28;23399:4;23405:2;23409:7;23389:9;:28::i;:::-;23120:305;;;:::o;23496:151::-;23600:39;23617:4;23623:2;23627:7;23600:39;;;;;;;;;;;;:16;:39::i;:::-;23496:151;;;:::o;1332:112:1:-;1402:12;1410:3;1402:7;:12::i;:::-;1386:28;;:12;:10;:12::i;:::-;:28;;;1377:38;;;;;;1426:10;1432:3;1426:5;:10::i;:::-;1332:112;:::o;20464:239:0:-;20536:7;20556:13;20572:7;:16;20580:7;20572:16;;;;;;;;;;;;;;;;;;;;;20556:32;;20624:1;20607:19;;:5;:19;;;;20599:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20690:5;20683:12;;;20464:239;;;:::o;515:101:1:-;576:5;;;;;;;;;;;560:21;;:12;:10;:12::i;:::-;:21;;;551:32;;;;;;603:5;594:6;;:14;;;;;;;;;;;;;;;;;;515:101::o;193:24::-;;;;:::o;20194:208:0:-;20266:7;20311:1;20294:19;;:5;:19;;;;20286:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20378:9;:16;20388:5;20378:16;;;;;;;;;;;;;;;;20371:23;;20194:208;;;:::o;166:20:1:-;;;;;;;;;;;;;:::o;20939:104:0:-;20995:13;21028:7;21021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20939:104;:::o;22523:295::-;22638:12;:10;:12::i;:::-;22626:24;;:8;:24;;;;22618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22738:8;22693:18;:32;22712:12;:10;:12::i;:::-;22693:32;;;;;;;;;;;;;;;:42;22726:8;22693:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22791:8;22762:48;;22777:12;:10;:12::i;:::-;22762:48;;;22801:8;22762:48;;;;;;:::i;:::-;;;;;;;;22523:295;;:::o;624:101:1:-;684:5;;;;;;;;;;;668:21;;:12;:10;:12::i;:::-;:21;;;659:32;;;;;;713:4;702:8;;:15;;;;;;;;;;;;;;;;;;624:101::o;733:278::-;789:6;;;;;;;;;;;780:17;;;;;;833:5;;;;;;;;;;;817:21;;:12;:10;:12::i;:::-;:21;;;808:32;;;;;;851:11;877:3;873:1;865:5;;:9;;;;:::i;:::-;:15;;;;:::i;:::-;851:29;;896:6;905:5;;896:14;;891:113;917:6;912:1;:11;891:113;;945:25;956:5;;;;;;;;;;;964;;945:9;:25::i;:::-;985:5;;:7;;;;;;;;;:::i;:::-;;;;;;925:3;;;;;:::i;:::-;;;;891:113;;;;769:242;733:278;:::o;23718:285:0:-;23850:41;23869:12;:10;:12::i;:::-;23883:7;23850:18;:41::i;:::-;23842:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23956:39;23970:4;23976:2;23980:7;23989:5;23956:13;:39::i;:::-;23718:285;;;;:::o;1452:365:1:-;1571:13;1605:8;;;;;;;;;;;1602:208;;;1646:1;1641;1633:7;:9;;;;:::i;:::-;:14;1629:123;;;1675:3;1668:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1629:123;1726:10;1719:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1602:208;1791:7;1784:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1452:365;;;;:::o;22889:164:0:-;22986:4;23010:18;:25;23029:5;23010:25;;;;;;;;;;;;;;;:35;23036:8;23010:35;;;;;;;;;;;;;;;;;;;;;;;;;23003:42;;22889:164;;;;:::o;19838:292::-;19940:4;19979:25;19964:40;;;:11;:40;;;;:105;;;;20036:33;20021:48;;;:11;:48;;;;19964:105;:158;;;;20086:36;20110:11;20086:23;:36::i;:::-;19964:158;19957:165;;19838:292;;;:::o;25470:127::-;25535:4;25587:1;25559:30;;:7;:16;25567:7;25559:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25552:37;;25470:127;;;:::o;17379:98::-;17432:7;17459:10;17452:17;;17379:98;:::o;29347:174::-;29449:2;29422:15;:24;29438:7;29422:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29505:7;29501:2;29467:46;;29476:23;29491:7;29476:14;:23::i;:::-;29467:46;;;;;;;;;;;;29347:174;;:::o;25764:348::-;25857:4;25882:16;25890:7;25882;:16::i;:::-;25874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25958:13;25974:23;25989:7;25974:14;:23::i;:::-;25958:39;;26027:5;26016:16;;:7;:16;;;:51;;;;26060:7;26036:31;;:20;26048:7;26036:11;:20::i;:::-;:31;;;26016:51;:87;;;;26071:32;26088:5;26095:7;26071:16;:32::i;:::-;26016:87;26008:96;;;25764:348;;;;:::o;28685:544::-;28810:4;28783:31;;:23;28798:7;28783:14;:23::i;:::-;:31;;;28775:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28893:1;28879:16;;:2;:16;;;;28871:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28949:39;28970:4;28976:2;28980:7;28949:20;:39::i;:::-;29053:29;29070:1;29074:7;29053:8;:29::i;:::-;29114:1;29095:9;:15;29105:4;29095:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29143:1;29126:9;:13;29136:2;29126:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29174:2;29155:7;:16;29163:7;29155:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29213:7;29209:2;29194:27;;29203:4;29194:27;;;;;;;;;;;;28685:544;;;:::o;1217:107:1:-;1296:20;1308:7;1296:11;:20::i;:::-;1217:107;:::o;26454:110:0:-;26530:26;26540:2;26544:7;26530:26;;;;;;;;;;;;:9;:26::i;:::-;26454:110;;:::o;24885:272::-;24999:28;25009:4;25015:2;25019:7;24999:9;:28::i;:::-;25046:48;25069:4;25075:2;25079:7;25088:5;25046:22;:48::i;:::-;25038:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24885:272;;;;:::o;18439:157::-;18524:4;18563:25;18548:40;;;:11;:40;;;;18541:47;;18439:157;;;:::o;1021:186:1:-;1154:45;1181:4;1187:2;1191:7;1154:26;:45::i;:::-;1021:186;;;:::o;41101:206:0:-;41170:20;41182:7;41170:11;:20::i;:::-;41244:1;41213:10;:19;41224:7;41213:19;;;;;;;;;;;41207:33;;;;;:::i;:::-;;;:38;41203:97;;41269:10;:19;41280:7;41269:19;;;;;;;;;;;;41262:26;;;;:::i;:::-;41203:97;41101:206;:::o;26791:250::-;26887:18;26893:2;26897:7;26887:5;:18::i;:::-;26924:54;26955:1;26959:2;26963:7;26972:5;26924:22;:54::i;:::-;26916:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26791:250;;;:::o;30086:843::-;30207:4;30233:15;:2;:13;;;:15::i;:::-;30229:693;;;30285:2;30269:36;;;30306:12;:10;:12::i;:::-;30320:4;30326:7;30335:5;30269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30265:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30532:1;30515:6;:13;:18;30511:341;;;30558:60;;;;;;;;;;:::i;:::-;;;;;;;;30511:341;30802:6;30796:13;30787:6;30783:2;30779:15;30772:38;30265:602;30402:45;;;30392:55;;;:6;:55;;;;30385:62;;;;;30229:693;30906:4;30899:11;;30086:843;;;;;;;:::o;31542:93::-;;;;:::o;27988:360::-;28048:13;28064:23;28079:7;28064:14;:23::i;:::-;28048:39;;28100:48;28121:5;28136:1;28140:7;28100:20;:48::i;:::-;28189:29;28206:1;28210:7;28189:8;:29::i;:::-;28251:1;28231:9;:16;28241:5;28231:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;28270:7;:16;28278:7;28270:16;;;;;;;;;;;;28263:23;;;;;;;;;;;28332:7;28328:1;28304:36;;28313:5;28304:36;;;;;;;;;;;;28037:311;27988:360;:::o;27377:382::-;27471:1;27457:16;;:2;:16;;;;27449:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27530:16;27538:7;27530;:16::i;:::-;27529:17;27521:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27592:45;27621:1;27625:2;27629:7;27592:20;:45::i;:::-;27667:1;27650:9;:13;27660:2;27650:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27698:2;27679:7;:16;27687:7;27679:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27743:7;27739:2;27718:33;;27735:1;27718:33;;;;;;;;;;;;27377:382;;:::o;9573:422::-;9633:4;9841:12;9952:7;9940:20;9932:28;;9986:1;9979:4;:8;9972:15;;;9573:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:2:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:118::-;5650:24;5668:5;5650:24;:::i;:::-;5645:3;5638:37;5563:118;;:::o;5687:222::-;5780:4;5818:2;5807:9;5803:18;5795:26;;5831:71;5899:1;5888:9;5884:17;5875:6;5831:71;:::i;:::-;5687:222;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:231::-;11166:34;11162:1;11154:6;11150:14;11143:58;11235:14;11230:2;11222:6;11218:15;11211:39;11026:231;:::o;11263:366::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11263:366;;;:::o;11635:419::-;11801:4;11839:2;11828:9;11824:18;11816:26;;11888:9;11882:4;11878:20;11874:1;11863:9;11859:17;11852:47;11916:131;12042:4;11916:131;:::i;:::-;11908:139;;11635:419;;;:::o;12060:220::-;12200:34;12196:1;12188:6;12184:14;12177:58;12269:3;12264:2;12256:6;12252:15;12245:28;12060:220;:::o;12286:366::-;12428:3;12449:67;12513:2;12508:3;12449:67;:::i;:::-;12442:74;;12525:93;12614:3;12525:93;:::i;:::-;12643:2;12638:3;12634:12;12627:19;;12286:366;;;:::o;12658:419::-;12824:4;12862:2;12851:9;12847:18;12839:26;;12911:9;12905:4;12901:20;12897:1;12886:9;12882:17;12875:47;12939:131;13065:4;12939:131;:::i;:::-;12931:139;;12658:419;;;:::o;13083:243::-;13223:34;13219:1;13211:6;13207:14;13200:58;13292:26;13287:2;13279:6;13275:15;13268:51;13083:243;:::o;13332:366::-;13474:3;13495:67;13559:2;13554:3;13495:67;:::i;:::-;13488:74;;13571:93;13660:3;13571:93;:::i;:::-;13689:2;13684:3;13680:12;13673:19;;13332:366;;;:::o;13704:419::-;13870:4;13908:2;13897:9;13893:18;13885:26;;13957:9;13951:4;13947:20;13943:1;13932:9;13928:17;13921:47;13985:131;14111:4;13985:131;:::i;:::-;13977:139;;13704:419;;;:::o;14129:236::-;14269:34;14265:1;14257:6;14253:14;14246:58;14338:19;14333:2;14325:6;14321:15;14314:44;14129:236;:::o;14371:366::-;14513:3;14534:67;14598:2;14593:3;14534:67;:::i;:::-;14527:74;;14610:93;14699:3;14610:93;:::i;:::-;14728:2;14723:3;14719:12;14712:19;;14371:366;;;:::o;14743:419::-;14909:4;14947:2;14936:9;14932:18;14924:26;;14996:9;14990:4;14986:20;14982:1;14971:9;14967:17;14960:47;15024:131;15150:4;15024:131;:::i;:::-;15016:139;;14743:419;;;:::o;15168:228::-;15308:34;15304:1;15296:6;15292:14;15285:58;15377:11;15372:2;15364:6;15360:15;15353:36;15168:228;:::o;15402:366::-;15544:3;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15641:93;15730:3;15641:93;:::i;:::-;15759:2;15754:3;15750:12;15743:19;;15402:366;;;:::o;15774:419::-;15940:4;15978:2;15967:9;15963:18;15955:26;;16027:9;16021:4;16017:20;16013:1;16002:9;15998:17;15991:47;16055:131;16181:4;16055:131;:::i;:::-;16047:139;;15774:419;;;:::o;16199:229::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:12;16403:2;16395:6;16391:15;16384:37;16199:229;:::o;16434:366::-;16576:3;16597:67;16661:2;16656:3;16597:67;:::i;:::-;16590:74;;16673:93;16762:3;16673:93;:::i;:::-;16791:2;16786:3;16782:12;16775:19;;16434:366;;;:::o;16806:419::-;16972:4;17010:2;16999:9;16995:18;16987:26;;17059:9;17053:4;17049:20;17045:1;17034:9;17030:17;17023:47;17087:131;17213:4;17087:131;:::i;:::-;17079:139;;16806:419;;;:::o;17231:175::-;17371:27;17367:1;17359:6;17355:14;17348:51;17231:175;:::o;17412:366::-;17554:3;17575:67;17639:2;17634:3;17575:67;:::i;:::-;17568:74;;17651:93;17740:3;17651:93;:::i;:::-;17769:2;17764:3;17760:12;17753:19;;17412:366;;;:::o;17784:419::-;17950:4;17988:2;17977:9;17973:18;17965:26;;18037:9;18031:4;18027:20;18023:1;18012:9;18008:17;18001:47;18065:131;18191:4;18065:131;:::i;:::-;18057:139;;17784:419;;;:::o;18209:180::-;18257:77;18254:1;18247:88;18354:4;18351:1;18344:15;18378:4;18375:1;18368:15;18395:191;18435:4;18455:20;18473:1;18455:20;:::i;:::-;18450:25;;18489:20;18507:1;18489:20;:::i;:::-;18484:25;;18528:1;18525;18522:8;18519:34;;;18533:18;;:::i;:::-;18519:34;18578:1;18575;18571:9;18563:17;;18395:191;;;;:::o;18592:305::-;18632:3;18651:20;18669:1;18651:20;:::i;:::-;18646:25;;18685:20;18703:1;18685:20;:::i;:::-;18680:25;;18839:1;18771:66;18767:74;18764:1;18761:81;18758:107;;;18845:18;;:::i;:::-;18758:107;18889:1;18886;18882:9;18875:16;;18592:305;;;;:::o;18903:233::-;18942:3;18965:24;18983:5;18965:24;:::i;:::-;18956:33;;19011:66;19004:5;19001:77;18998:103;;;19081:18;;:::i;:::-;18998:103;19128:1;19121:5;19117:13;19110:20;;18903:233;;;:::o;19142:180::-;19190:77;19187:1;19180:88;19287:4;19284:1;19277:15;19311:4;19308:1;19301:15;19328:176;19360:1;19377:20;19395:1;19377:20;:::i;:::-;19372:25;;19411:20;19429:1;19411:20;:::i;:::-;19406:25;;19450:1;19440:35;;19455:18;;:::i;:::-;19440:35;19496:1;19493;19489:9;19484:14;;19328:176;;;;:::o;19510:231::-;19650:34;19646:1;19638:6;19634:14;19627:58;19719:14;19714:2;19706:6;19702:15;19695:39;19510:231;:::o;19747:366::-;19889:3;19910:67;19974:2;19969:3;19910:67;:::i;:::-;19903:74;;19986:93;20075:3;19986:93;:::i;:::-;20104:2;20099:3;20095:12;20088:19;;19747:366;;;:::o;20119:419::-;20285:4;20323:2;20312:9;20308:18;20300:26;;20372:9;20366:4;20362:20;20358:1;20347:9;20343:17;20336:47;20400:131;20526:4;20400:131;:::i;:::-;20392:139;;20119:419;;;:::o;20544:228::-;20684:34;20680:1;20672:6;20668:14;20661:58;20753:11;20748:2;20740:6;20736:15;20729:36;20544:228;:::o;20778:366::-;20920:3;20941:67;21005:2;21000:3;20941:67;:::i;:::-;20934:74;;21017:93;21106:3;21017:93;:::i;:::-;21135:2;21130:3;21126:12;21119:19;;20778:366;;;:::o;21150:419::-;21316:4;21354:2;21343:9;21339:18;21331:26;;21403:9;21397:4;21393:20;21389:1;21378:9;21374:17;21367:47;21431:131;21557:4;21431:131;:::i;:::-;21423:139;;21150:419;;;:::o;21575:223::-;21715:34;21711:1;21703:6;21699:14;21692:58;21784:6;21779:2;21771:6;21767:15;21760:31;21575:223;:::o;21804:366::-;21946:3;21967:67;22031:2;22026:3;21967:67;:::i;:::-;21960:74;;22043:93;22132:3;22043:93;:::i;:::-;22161:2;22156:3;22152:12;22145:19;;21804:366;;;:::o;22176:419::-;22342:4;22380:2;22369:9;22365:18;22357:26;;22429:9;22423:4;22419:20;22415:1;22404:9;22400:17;22393:47;22457:131;22583:4;22457:131;:::i;:::-;22449:139;;22176:419;;;:::o;22601:237::-;22741:34;22737:1;22729:6;22725:14;22718:58;22810:20;22805:2;22797:6;22793:15;22786:45;22601:237;:::o;22844:366::-;22986:3;23007:67;23071:2;23066:3;23007:67;:::i;:::-;23000:74;;23083:93;23172:3;23083:93;:::i;:::-;23201:2;23196:3;23192:12;23185:19;;22844:366;;;:::o;23216:419::-;23382:4;23420:2;23409:9;23405:18;23397:26;;23469:9;23463:4;23459:20;23455:1;23444:9;23440:17;23433:47;23497:131;23623:4;23497:131;:::i;:::-;23489:139;;23216:419;;;:::o;23641:98::-;23692:6;23726:5;23720:12;23710:22;;23641:98;;;:::o;23745:168::-;23828:11;23862:6;23857:3;23850:19;23902:4;23897:3;23893:14;23878:29;;23745:168;;;;:::o;23919:360::-;24005:3;24033:38;24065:5;24033:38;:::i;:::-;24087:70;24150:6;24145:3;24087:70;:::i;:::-;24080:77;;24166:52;24211:6;24206:3;24199:4;24192:5;24188:16;24166:52;:::i;:::-;24243:29;24265:6;24243:29;:::i;:::-;24238:3;24234:39;24227:46;;24009:270;23919:360;;;;:::o;24285:640::-;24480:4;24518:3;24507:9;24503:19;24495:27;;24532:71;24600:1;24589:9;24585:17;24576:6;24532:71;:::i;:::-;24613:72;24681:2;24670:9;24666:18;24657:6;24613:72;:::i;:::-;24695;24763:2;24752:9;24748:18;24739:6;24695:72;:::i;:::-;24814:9;24808:4;24804:20;24799:2;24788:9;24784:18;24777:48;24842:76;24913:4;24904:6;24842:76;:::i;:::-;24834:84;;24285:640;;;;;;;:::o;24931:141::-;24987:5;25018:6;25012:13;25003:22;;25034:32;25060:5;25034:32;:::i;:::-;24931:141;;;;:::o;25078:349::-;25147:6;25196:2;25184:9;25175:7;25171:23;25167:32;25164:119;;;25202:79;;:::i;:::-;25164:119;25322:1;25347:63;25402:7;25393:6;25382:9;25378:22;25347:63;:::i;:::-;25337:73;;25293:127;25078:349;;;;:::o;25433:182::-;25573:34;25569:1;25561:6;25557:14;25550:58;25433:182;:::o;25621:366::-;25763:3;25784:67;25848:2;25843:3;25784:67;:::i;:::-;25777:74;;25860:93;25949:3;25860:93;:::i;:::-;25978:2;25973:3;25969:12;25962:19;;25621:366;;;:::o;25993:419::-;26159:4;26197:2;26186:9;26182:18;26174:26;;26246:9;26240:4;26236:20;26232:1;26221:9;26217:17;26210:47;26274:131;26400:4;26274:131;:::i;:::-;26266:139;;25993:419;;;:::o;26418:178::-;26558:30;26554:1;26546:6;26542:14;26535:54;26418:178;:::o;26602:366::-;26744:3;26765:67;26829:2;26824:3;26765:67;:::i;:::-;26758:74;;26841:93;26930:3;26841:93;:::i;:::-;26959:2;26954:3;26950:12;26943:19;;26602:366;;;:::o;26974:419::-;27140:4;27178:2;27167:9;27163:18;27155:26;;27227:9;27221:4;27217:20;27213:1;27202:9;27198:17;27191:47;27255:131;27381:4;27255:131;:::i;:::-;27247:139;;26974:419;;;:::o
Swarm Source
ipfs://bc3342a06f78c5edc239dae6ee8f25072d1bad5cc55dbe4da16315868a50073d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.