Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
625
Holders
18
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CelesteDAC
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol"; contract CelesteDAC is ERC1155 { uint256 public constant CelesteDAC1 = 0; uint256 public constant CelesteDAC2 = 1; uint256 public constant CelesteDAC3 = 2; uint256 public constant CelesteDAC4 = 3; uint256 public constant CelesteDAC5 = 4; uint256 public constant CelesteDAC6 = 5; uint256 public constant CelesteDAC7 = 6; uint256 public constant CelesteDAC8 = 7; uint256 public constant CelesteDAC9 = 8; uint256 public constant CelesteDAC10 = 9; uint256 public constant CelesteDAC11 = 10; uint256 public constant CelesteDAC12 = 11; uint256 public constant CelesteDAC13 = 12; uint256 public constant CelesteDAC14 = 13; uint256 public constant CelesteDAC15 = 14; uint256 public constant CelesteDAC16 = 15; uint256 public constant CelesteDAC17 = 16; uint256 public constant CelesteDAC18 = 17; uint256 public constant CelesteDAC19 = 18; uint256 public constant CelesteDAC20 = 19; uint256 public constant CelesteDAC21 = 20; uint256 public constant CelesteDAC22 = 21; uint256 public constant CelesteDAC23 = 22; uint256 public constant CelesteDAC24 = 23; uint256 public constant CelesteDAC25 = 24; address public admin; mapping (address => uint256) public buyBalance; mapping (uint256 => uint256) public IdSold; uint256 public sold; uint256 public id = 0; constructor() ERC1155("https://ipfs.io/ipfs/bafybeiahrr4hqmodlmb3e44cvovf2viqhazezqqnvvoesryrl254kpljli/{id}.json") { _mint(msg.sender , CelesteDAC1, 25, ""); _mint(msg.sender , CelesteDAC2, 25, ""); _mint(msg.sender , CelesteDAC3, 25, ""); _mint(msg.sender , CelesteDAC4, 25, ""); _mint(msg.sender , CelesteDAC5, 25, ""); _mint(msg.sender , CelesteDAC6, 25, ""); _mint(msg.sender , CelesteDAC7, 25, ""); _mint(msg.sender , CelesteDAC8, 25, ""); _mint(msg.sender , CelesteDAC9, 25, ""); _mint(msg.sender , CelesteDAC10, 25, ""); _mint(msg.sender , CelesteDAC11, 25, ""); _mint(msg.sender , CelesteDAC12, 25, ""); _mint(msg.sender , CelesteDAC13, 25, ""); _mint(msg.sender , CelesteDAC14, 25, ""); _mint(msg.sender , CelesteDAC15, 25, ""); _mint(msg.sender , CelesteDAC16, 25, ""); _mint(msg.sender , CelesteDAC17, 25, ""); _mint(msg.sender , CelesteDAC18, 25, ""); _mint(msg.sender , CelesteDAC19, 25, ""); _mint(msg.sender , CelesteDAC20, 25, ""); _mint(msg.sender , CelesteDAC21, 25, ""); _mint(msg.sender , CelesteDAC22, 25, ""); _mint(msg.sender , CelesteDAC23, 25, ""); _mint(msg.sender , CelesteDAC24, 25, ""); _mint(msg.sender , CelesteDAC25, 25, ""); admin = msg.sender; } function uri(uint256 _tokenId) override public pure returns (string memory) { return string( abi.encodePacked( "https://ipfs.io/ipfs/bafybeiahrr4hqmodlmb3e44cvovf2viqhazezqqnvvoesryrl254kpljli/", Strings.toString(_tokenId), ".json" ) ); } function buy(uint256 n) public returns (bool) { require(buyBalance[msg.sender] < 3 && n <= 3, "you can only buy 3 NFTs"); require(n <= 3 - buyBalance[msg.sender], "invalid n"); if(id < 25) { if(IdSold[id] <= 21) { if(21 - IdSold[id] >= n) { _safeTransferFrom( admin, msg.sender, id, n, "0x00"); buyBalance[msg.sender] += n; sold += n; if(21 - IdSold[id] == n) id++; IdSold[id] += n; } else { uint256 _n = 21 - IdSold[id]; _safeTransferFrom( admin, msg.sender, id, _n, "0x00"); buyBalance[msg.sender] += _n; sold += _n; IdSold[id] += _n; id++; _n = n - _n; _safeTransferFrom( admin, msg.sender, id, _n, "0x00"); buyBalance[msg.sender] += _n; sold += _n; IdSold[id] += _n; } } } return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"CelesteDAC1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC10","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC11","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC12","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC13","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC14","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC15","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC16","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC17","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC18","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC19","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC20","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC21","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC22","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC23","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC24","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC25","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC5","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC6","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC7","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC8","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CelesteDAC9","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"IdSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"buy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":[],"name":"sold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
608060405260006007553480156200001657600080fd5b506040518060800160405280605a81526020016200452a605a913962000042816200042760201b60201c565b50620000683360006019604051806020016040528060008152506200044360201b60201c565b6200008d3360016019604051806020016040528060008152506200044360201b60201c565b620000b23360026019604051806020016040528060008152506200044360201b60201c565b620000d73360036019604051806020016040528060008152506200044360201b60201c565b620000fc3360046019604051806020016040528060008152506200044360201b60201c565b620001213360056019604051806020016040528060008152506200044360201b60201c565b620001463360066019604051806020016040528060008152506200044360201b60201c565b6200016b3360076019604051806020016040528060008152506200044360201b60201c565b620001903360086019604051806020016040528060008152506200044360201b60201c565b620001b53360096019604051806020016040528060008152506200044360201b60201c565b620001da33600a6019604051806020016040528060008152506200044360201b60201c565b620001ff33600b6019604051806020016040528060008152506200044360201b60201c565b6200022433600c6019604051806020016040528060008152506200044360201b60201c565b6200024933600d6019604051806020016040528060008152506200044360201b60201c565b6200026e33600e6019604051806020016040528060008152506200044360201b60201c565b6200029333600f6019604051806020016040528060008152506200044360201b60201c565b620002b83360106019604051806020016040528060008152506200044360201b60201c565b620002dd3360116019604051806020016040528060008152506200044360201b60201c565b620003023360126019604051806020016040528060008152506200044360201b60201c565b620003273360136019604051806020016040528060008152506200044360201b60201c565b6200034c3360146019604051806020016040528060008152506200044360201b60201c565b620003713360156019604051806020016040528060008152506200044360201b60201c565b620003963360166019604051806020016040528060008152506200044360201b60201c565b620003bb3360176019604051806020016040528060008152506200044360201b60201c565b620003e03360186019604051806020016040528060008152506200044360201b60201c565b33600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200103b565b80600290805190602001906200043f929190620008b6565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620004b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ad90620009ed565b60405180910390fd5b6000620004c86200060860201b60201c565b90506200050181600087620004e3886200061060201b60201c565b620004f4886200061060201b60201c565b876200069160201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000562919062000a48565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051620005e292919062000ab6565b60405180910390a462000601816000878787876200069960201b60201c565b5050505050565b600033905090565b60606000600167ffffffffffffffff81111562000632576200063162000ae3565b5b604051908082528060200260200182016040528015620006615781602001602082028036833780820191505090505b50905082816000815181106200067c576200067b62000b12565b5b60200260200101818152505080915050919050565b505050505050565b620006c58473ffffffffffffffffffffffffffffffffffffffff166200089360201b6200122f1760201c565b156200088b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016200070e95949392919062000c2a565b6020604051808303816000875af19250505080156200074d57506040513d601f19601f820116820180604052508101906200074a919062000cfa565b60015b620007ff576200075c62000d39565b806308c379a01415620007c057506200077462000d94565b80620007815750620007c2565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b7919062000e82565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f69062000f1c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008809062000fb4565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620008c49062001005565b90600052602060002090601f016020900481019282620008e8576000855562000934565b82601f106200090357805160ff191683800117855562000934565b8280016001018555821562000934579182015b828111156200093357825182559160200191906001019062000916565b5b50905062000943919062000947565b5090565b5b808211156200096257600081600090555060010162000948565b5090565b600082825260208201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000620009d560218362000966565b9150620009e28262000977565b604082019050919050565b6000602082019050818103600083015262000a0881620009c6565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a558262000a0f565b915062000a628362000a0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a9a5762000a9962000a19565b5b828201905092915050565b62000ab08162000a0f565b82525050565b600060408201905062000acd600083018562000aa5565b62000adc602083018462000aa5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b6e8262000b41565b9050919050565b62000b808162000b61565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000bc257808201518184015260208101905062000ba5565b8381111562000bd2576000848401525b50505050565b6000601f19601f8301169050919050565b600062000bf68262000b86565b62000c02818562000b91565b935062000c1481856020860162000ba2565b62000c1f8162000bd8565b840191505092915050565b600060a08201905062000c41600083018862000b75565b62000c50602083018762000b75565b62000c5f604083018662000aa5565b62000c6e606083018562000aa5565b818103608083015262000c82818462000be9565b90509695505050505050565b6000604051905090565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000cd48162000c9d565b811462000ce057600080fd5b50565b60008151905062000cf48162000cc9565b92915050565b60006020828403121562000d135762000d1262000c98565b5b600062000d238482850162000ce3565b91505092915050565b60008160e01c9050919050565b600060033d111562000d5b5760046000803e62000d5860005162000d2c565b90505b90565b62000d698262000bd8565b810181811067ffffffffffffffff8211171562000d8b5762000d8a62000ae3565b5b80604052505050565b600060443d101562000da65762000e33565b62000db062000c8e565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dda57505062000e33565b808201805167ffffffffffffffff81111562000dfa575050505062000e33565b80602083010160043d03850181111562000e1957505050505062000e33565b62000e2a8260200185018662000d5e565b82955050505050505b90565b600081519050919050565b600062000e4e8262000e36565b62000e5a818562000966565b935062000e6c81856020860162000ba2565b62000e778162000bd8565b840191505092915050565b6000602082019050818103600083015262000e9e818462000e41565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600062000f0460348362000966565b915062000f118262000ea6565b604082019050919050565b6000602082019050818103600083015262000f378162000ef5565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600062000f9c60288362000966565b915062000fa98262000f3e565b604082019050919050565b6000602082019050818103600083015262000fcf8162000f8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200101e57607f821691505b6020821081141562001035576200103462000fd6565b5b50919050565b6134df806200104b6000396000f3fe608060405234801561001057600080fd5b506004361061023c5760003560e01c80636661d9041161013b578063b8afe810116100b8578063e7612dfd1161007c578063e7612dfd146106b7578063e985e9c5146106d5578063f242432a14610705578063f851a44014610721578063fefbe6cf1461073f5761023c565b8063b8afe8101461060f578063cd30f2b11461062d578063cd68da2c1461064b578063d261d69514610669578063d96a094a146106875761023c565b806388ac8597116100ff57806388ac85971461057b578063a071105f14610599578063a22cb465146105b7578063af640d0f146105d3578063b8961785146105f15761023c565b80636661d904146104d35780636c49efa2146104f15780636fd233c4146105215780637e540f521461053f57806382f7f0ea1461055d5761023c565b80632eb2c2d6116101c95780634e1273f41161018d5780634e1273f414610419578063507c9f521461044957806352c025f914610467578063576534db1461048557806357689832146104b55761023c565b80632eb2c2d6146103855780633577c9c0146103a157806335b969a8146103bf57806340f7eb3b146103dd57806349649ea3146103fb5761023c565b80630b024274116102105780630b024274146102dd5780630cad3b37146102fb5780630e89341c146103195780631b069d80146103495780632216fdae146103675761023c565b8062fdd58e1461024157806301ffc9a714610271578063020fac6e146102a157806302c7e7af146102bf575b600080fd5b61025b60048036038101906102569190612002565b61075d565b6040516102689190612051565b60405180910390f35b61028b600480360381019061028691906120c4565b610826565b604051610298919061210c565b60405180910390f35b6102a9610908565b6040516102b69190612051565b60405180910390f35b6102c761090d565b6040516102d49190612051565b60405180910390f35b6102e5610913565b6040516102f29190612051565b60405180910390f35b610303610918565b6040516103109190612051565b60405180910390f35b610333600480360381019061032e9190612127565b61091d565b60405161034091906121ed565b60405180910390f35b61035161094e565b60405161035e9190612051565b60405180910390f35b61036f610953565b60405161037c9190612051565b60405180910390f35b61039f600480360381019061039a919061240c565b610958565b005b6103a96109f9565b6040516103b69190612051565b60405180910390f35b6103c76109fe565b6040516103d49190612051565b60405180910390f35b6103e5610a03565b6040516103f29190612051565b60405180910390f35b610403610a08565b6040516104109190612051565b60405180910390f35b610433600480360381019061042e919061259e565b610a0d565b60405161044091906126d4565b60405180910390f35b610451610b26565b60405161045e9190612051565b60405180910390f35b61046f610b2b565b60405161047c9190612051565b60405180910390f35b61049f600480360381019061049a91906126f6565b610b30565b6040516104ac9190612051565b60405180910390f35b6104bd610b48565b6040516104ca9190612051565b60405180910390f35b6104db610b4d565b6040516104e89190612051565b60405180910390f35b61050b60048036038101906105069190612127565b610b52565b6040516105189190612051565b60405180910390f35b610529610b6a565b6040516105369190612051565b60405180910390f35b610547610b6f565b6040516105549190612051565b60405180910390f35b610565610b74565b6040516105729190612051565b60405180910390f35b610583610b79565b6040516105909190612051565b60405180910390f35b6105a1610b7e565b6040516105ae9190612051565b60405180910390f35b6105d160048036038101906105cc919061274f565b610b83565b005b6105db610b99565b6040516105e89190612051565b60405180910390f35b6105f9610b9f565b6040516106069190612051565b60405180910390f35b610617610ba4565b6040516106249190612051565b60405180910390f35b610635610ba9565b6040516106429190612051565b60405180910390f35b610653610bae565b6040516106609190612051565b60405180910390f35b610671610bb3565b60405161067e9190612051565b60405180910390f35b6106a1600480360381019061069c9190612127565b610bb8565b6040516106ae919061210c565b60405180910390f35b6106bf6110ca565b6040516106cc9190612051565b60405180910390f35b6106ef60048036038101906106ea919061278f565b6110cf565b6040516106fc919061210c565b60405180910390f35b61071f600480360381019061071a91906127cf565b611163565b005b610729611204565b6040516107369190612875565b60405180910390f35b61074761122a565b6040516107549190612051565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590612902565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610901575061090082611252565b5b9050919050565b601581565b60065481565b600081565b601281565b6060610928826112bc565b6040516020016109389190612a42565b6040516020818303038152906040529050919050565b600381565b600181565b61096061141d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109a657506109a5856109a061141d565b6110cf565b5b6109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90612ae1565b60405180910390fd5b6109f28585858585611425565b5050505050565b600d81565b600281565b600b81565b600481565b60608151835114610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90612b73565b60405180910390fd5b6000835167ffffffffffffffff811115610a7057610a6f612214565b5b604051908082528060200260200182016040528015610a9e5781602001602082028036833780820191505090505b50905060005b8451811015610b1b57610aeb858281518110610ac357610ac2612b93565b5b6020026020010151858381518110610ade57610add612b93565b5b602002602001015161075d565b828281518110610afe57610afd612b93565b5b60200260200101818152505080610b1490612bf1565b9050610aa4565b508091505092915050565b600a81565b600981565b60046020528060005260406000206000915090505481565b600681565b601381565b60056020528060005260406000206000915090505481565b600781565b600581565b601681565b600c81565b600e81565b610b95610b8e61141d565b8383611739565b5050565b60075481565b601181565b601781565b600881565b600f81565b601081565b60006003600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015610c0a575060038211155b610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612c86565b60405180910390fd5b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546003610c959190612ca6565b821115610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90612d26565b60405180910390fd5b601960075410156110c157601560056000600754815260200190815260200160002054116110c05781600560006007548152602001908152602001600020546015610d229190612ca6565b10610e6f57610d8d600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633600754856040518060400160405280600481526020017f30783030000000000000000000000000000000000000000000000000000000008152506118a6565b81600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ddc9190612d46565b925050819055508160066000828254610df59190612d46565b9250508190555081600560006007548152602001908152602001600020546015610e1f9190612ca6565b1415610e3e5760076000815480929190610e3890612bf1565b91905055505b816005600060075481526020019081526020016000206000828254610e639190612d46565b925050819055506110bf565b6000600560006007548152602001908152602001600020546015610e939190612ca6565b9050610efb600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633600754846040518060400160405280600481526020017f30783030000000000000000000000000000000000000000000000000000000008152506118a6565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f4a9190612d46565b925050819055508060066000828254610f639190612d46565b92505081905550806005600060075481526020019081526020016000206000828254610f8f9190612d46565b9250508190555060076000815480929190610fa990612bf1565b91905055508083610fba9190612ca6565b9050611022600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633600754846040518060400160405280600481526020017f30783030000000000000000000000000000000000000000000000000000000008152506118a6565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110719190612d46565b92505081905550806006600082825461108a9190612d46565b925050819055508060056000600754815260200190815260200160002060008282546110b69190612d46565b92505081905550505b5b5b60019050919050565b601481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61116b61141d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111b157506111b0856111ab61141d565b6110cf565b5b6111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790612e0e565b60405180910390fd5b6111fd85858585856118a6565b5050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601881565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415611304576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611418565b600082905060005b6000821461133657808061131f90612bf1565b915050600a8261132f9190612e5d565b915061130c565b60008167ffffffffffffffff81111561135257611351612214565b5b6040519080825280601f01601f1916602001820160405280156113845781602001600182028036833780820191505090505b5090505b600085146114115760018261139d9190612ca6565b9150600a856113ac9190612e8e565b60306113b89190612d46565b60f81b8183815181106113ce576113cd612b93565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561140a9190612e5d565b9450611388565b8093505050505b919050565b600033905090565b8151835114611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090612f31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090612fc3565b60405180910390fd5b60006114e361141d565b90506114f3818787878787611b28565b60005b84518110156116a457600085828151811061151457611513612b93565b5b60200260200101519050600085838151811061153357611532612b93565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613055565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116899190612d46565b925050819055505050508061169d90612bf1565b90506114f6565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161171b929190613075565b60405180910390a4611731818787878787611b30565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f9061311e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611899919061210c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d90612fc3565b60405180910390fd5b600061192061141d565b905061194081878761193188611d08565b61193a88611d08565b87611b28565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613055565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a8c9190612d46565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611b0992919061313e565b60405180910390a4611b1f828888888888611d82565b50505050505050565b505050505050565b611b4f8473ffffffffffffffffffffffffffffffffffffffff1661122f565b15611d00578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611b959594939291906131bc565b6020604051808303816000875af1925050508015611bd157506040513d601f19601f82011682018060405250810190611bce9190613239565b60015b611c7757611bdd613273565b806308c379a01415611c3a5750611bf2613295565b80611bfd5750611c3c565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3191906121ed565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e9061339d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf59061342f565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611d2757611d26612214565b5b604051908082528060200260200182016040528015611d555781602001602082028036833780820191505090505b5090508281600081518110611d6d57611d6c612b93565b5b60200260200101818152505080915050919050565b611da18473ffffffffffffffffffffffffffffffffffffffff1661122f565b15611f52578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611de795949392919061344f565b6020604051808303816000875af1925050508015611e2357506040513d601f19601f82011682018060405250810190611e209190613239565b60015b611ec957611e2f613273565b806308c379a01415611e8c5750611e44613295565b80611e4f5750611e8e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8391906121ed565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec09061339d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061342f565b60405180910390fd5b505b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f9982611f6e565b9050919050565b611fa981611f8e565b8114611fb457600080fd5b50565b600081359050611fc681611fa0565b92915050565b6000819050919050565b611fdf81611fcc565b8114611fea57600080fd5b50565b600081359050611ffc81611fd6565b92915050565b6000806040838503121561201957612018611f64565b5b600061202785828601611fb7565b925050602061203885828601611fed565b9150509250929050565b61204b81611fcc565b82525050565b60006020820190506120666000830184612042565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120a18161206c565b81146120ac57600080fd5b50565b6000813590506120be81612098565b92915050565b6000602082840312156120da576120d9611f64565b5b60006120e8848285016120af565b91505092915050565b60008115159050919050565b612106816120f1565b82525050565b600060208201905061212160008301846120fd565b92915050565b60006020828403121561213d5761213c611f64565b5b600061214b84828501611fed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561218e578082015181840152602081019050612173565b8381111561219d576000848401525b50505050565b6000601f19601f8301169050919050565b60006121bf82612154565b6121c9818561215f565b93506121d9818560208601612170565b6121e2816121a3565b840191505092915050565b6000602082019050818103600083015261220781846121b4565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61224c826121a3565b810181811067ffffffffffffffff8211171561226b5761226a612214565b5b80604052505050565b600061227e611f5a565b905061228a8282612243565b919050565b600067ffffffffffffffff8211156122aa576122a9612214565b5b602082029050602081019050919050565b600080fd5b60006122d36122ce8461228f565b612274565b905080838252602082019050602084028301858111156122f6576122f56122bb565b5b835b8181101561231f578061230b8882611fed565b8452602084019350506020810190506122f8565b5050509392505050565b600082601f83011261233e5761233d61220f565b5b813561234e8482602086016122c0565b91505092915050565b600080fd5b600067ffffffffffffffff82111561237757612376612214565b5b612380826121a3565b9050602081019050919050565b82818337600083830152505050565b60006123af6123aa8461235c565b612274565b9050828152602081018484840111156123cb576123ca612357565b5b6123d684828561238d565b509392505050565b600082601f8301126123f3576123f261220f565b5b813561240384826020860161239c565b91505092915050565b600080600080600060a0868803121561242857612427611f64565b5b600061243688828901611fb7565b955050602061244788828901611fb7565b945050604086013567ffffffffffffffff81111561246857612467611f69565b5b61247488828901612329565b935050606086013567ffffffffffffffff81111561249557612494611f69565b5b6124a188828901612329565b925050608086013567ffffffffffffffff8111156124c2576124c1611f69565b5b6124ce888289016123de565b9150509295509295909350565b600067ffffffffffffffff8211156124f6576124f5612214565b5b602082029050602081019050919050565b600061251a612515846124db565b612274565b9050808382526020820190506020840283018581111561253d5761253c6122bb565b5b835b8181101561256657806125528882611fb7565b84526020840193505060208101905061253f565b5050509392505050565b600082601f8301126125855761258461220f565b5b8135612595848260208601612507565b91505092915050565b600080604083850312156125b5576125b4611f64565b5b600083013567ffffffffffffffff8111156125d3576125d2611f69565b5b6125df85828601612570565b925050602083013567ffffffffffffffff811115612600576125ff611f69565b5b61260c85828601612329565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61264b81611fcc565b82525050565b600061265d8383612642565b60208301905092915050565b6000602082019050919050565b600061268182612616565b61268b8185612621565b935061269683612632565b8060005b838110156126c75781516126ae8882612651565b97506126b983612669565b92505060018101905061269a565b5085935050505092915050565b600060208201905081810360008301526126ee8184612676565b905092915050565b60006020828403121561270c5761270b611f64565b5b600061271a84828501611fb7565b91505092915050565b61272c816120f1565b811461273757600080fd5b50565b60008135905061274981612723565b92915050565b6000806040838503121561276657612765611f64565b5b600061277485828601611fb7565b92505060206127858582860161273a565b9150509250929050565b600080604083850312156127a6576127a5611f64565b5b60006127b485828601611fb7565b92505060206127c585828601611fb7565b9150509250929050565b600080600080600060a086880312156127eb576127ea611f64565b5b60006127f988828901611fb7565b955050602061280a88828901611fb7565b945050604061281b88828901611fed565b935050606061282c88828901611fed565b925050608086013567ffffffffffffffff81111561284d5761284c611f69565b5b612859888289016123de565b9150509295509295909350565b61286f81611f8e565b82525050565b600060208201905061288a6000830184612866565b92915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006128ec602b8361215f565b91506128f782612890565b604082019050919050565b6000602082019050818103600083015261291b816128df565b9050919050565b600081905092915050565b7f68747470733a2f2f697066732e696f2f697066732f626166796265696168727260008201527f3468716d6f646c6d623365343463766f76663276697168617a657a71716e767660208201527f6f65737279726c3235346b706c6a6c692f000000000000000000000000000000604082015250565b60006129af605183612922565b91506129ba8261292d565b605182019050919050565b60006129d082612154565b6129da8185612922565b93506129ea818560208601612170565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612a2c600583612922565b9150612a37826129f6565b600582019050919050565b6000612a4d826129a2565b9150612a5982846129c5565b9150612a6482612a1f565b915081905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612acb60328361215f565b9150612ad682612a6f565b604082019050919050565b60006020820190508181036000830152612afa81612abe565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612b5d60298361215f565b9150612b6882612b01565b604082019050919050565b60006020820190508181036000830152612b8c81612b50565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bfc82611fcc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c2f57612c2e612bc2565b5b600182019050919050565b7f796f752063616e206f6e6c79206275792033204e465473000000000000000000600082015250565b6000612c7060178361215f565b9150612c7b82612c3a565b602082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b6000612cb182611fcc565b9150612cbc83611fcc565b925082821015612ccf57612cce612bc2565b5b828203905092915050565b7f696e76616c6964206e0000000000000000000000000000000000000000000000600082015250565b6000612d1060098361215f565b9150612d1b82612cda565b602082019050919050565b60006020820190508181036000830152612d3f81612d03565b9050919050565b6000612d5182611fcc565b9150612d5c83611fcc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d9157612d90612bc2565b5b828201905092915050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000612df860298361215f565b9150612e0382612d9c565b604082019050919050565b60006020820190508181036000830152612e2781612deb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e6882611fcc565b9150612e7383611fcc565b925082612e8357612e82612e2e565b5b828204905092915050565b6000612e9982611fcc565b9150612ea483611fcc565b925082612eb457612eb3612e2e565b5b828206905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612f1b60288361215f565b9150612f2682612ebf565b604082019050919050565b60006020820190508181036000830152612f4a81612f0e565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612fad60258361215f565b9150612fb882612f51565b604082019050919050565b60006020820190508181036000830152612fdc81612fa0565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061303f602a8361215f565b915061304a82612fe3565b604082019050919050565b6000602082019050818103600083015261306e81613032565b9050919050565b6000604082019050818103600083015261308f8185612676565b905081810360208301526130a38184612676565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061310860298361215f565b9150613113826130ac565b604082019050919050565b60006020820190508181036000830152613137816130fb565b9050919050565b60006040820190506131536000830185612042565b6131606020830184612042565b9392505050565b600081519050919050565b600082825260208201905092915050565b600061318e82613167565b6131988185613172565b93506131a8818560208601612170565b6131b1816121a3565b840191505092915050565b600060a0820190506131d16000830188612866565b6131de6020830187612866565b81810360408301526131f08186612676565b905081810360608301526132048185612676565b905081810360808301526132188184613183565b90509695505050505050565b60008151905061323381612098565b92915050565b60006020828403121561324f5761324e611f64565b5b600061325d84828501613224565b91505092915050565b60008160e01c9050919050565b600060033d11156132925760046000803e61328f600051613266565b90505b90565b600060443d10156132a557613328565b6132ad611f5a565b60043d036004823e80513d602482011167ffffffffffffffff821117156132d5575050613328565b808201805167ffffffffffffffff8111156132f35750505050613328565b80602083010160043d038501811115613310575050505050613328565b61331f82602001850186612243565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061338760348361215f565b91506133928261332b565b604082019050919050565b600060208201905081810360008301526133b68161337a565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061341960288361215f565b9150613424826133bd565b604082019050919050565b600060208201905081810360008301526134488161340c565b9050919050565b600060a0820190506134646000830188612866565b6134716020830187612866565b61347e6040830186612042565b61348b6060830185612042565b818103608083015261349d8184613183565b9050969550505050505056fea26469706673582212205ecfbedc324ec3f78968c1ba8ea5b0d60c3cb35eba45d77b9f68af0aac6630b864736f6c634300080b003368747470733a2f2f697066732e696f2f697066732f62616679626569616872723468716d6f646c6d623365343463766f76663276697168617a657a71716e76766f65737279726c3235346b706c6a6c692f7b69647d2e6a736f6e
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061023c5760003560e01c80636661d9041161013b578063b8afe810116100b8578063e7612dfd1161007c578063e7612dfd146106b7578063e985e9c5146106d5578063f242432a14610705578063f851a44014610721578063fefbe6cf1461073f5761023c565b8063b8afe8101461060f578063cd30f2b11461062d578063cd68da2c1461064b578063d261d69514610669578063d96a094a146106875761023c565b806388ac8597116100ff57806388ac85971461057b578063a071105f14610599578063a22cb465146105b7578063af640d0f146105d3578063b8961785146105f15761023c565b80636661d904146104d35780636c49efa2146104f15780636fd233c4146105215780637e540f521461053f57806382f7f0ea1461055d5761023c565b80632eb2c2d6116101c95780634e1273f41161018d5780634e1273f414610419578063507c9f521461044957806352c025f914610467578063576534db1461048557806357689832146104b55761023c565b80632eb2c2d6146103855780633577c9c0146103a157806335b969a8146103bf57806340f7eb3b146103dd57806349649ea3146103fb5761023c565b80630b024274116102105780630b024274146102dd5780630cad3b37146102fb5780630e89341c146103195780631b069d80146103495780632216fdae146103675761023c565b8062fdd58e1461024157806301ffc9a714610271578063020fac6e146102a157806302c7e7af146102bf575b600080fd5b61025b60048036038101906102569190612002565b61075d565b6040516102689190612051565b60405180910390f35b61028b600480360381019061028691906120c4565b610826565b604051610298919061210c565b60405180910390f35b6102a9610908565b6040516102b69190612051565b60405180910390f35b6102c761090d565b6040516102d49190612051565b60405180910390f35b6102e5610913565b6040516102f29190612051565b60405180910390f35b610303610918565b6040516103109190612051565b60405180910390f35b610333600480360381019061032e9190612127565b61091d565b60405161034091906121ed565b60405180910390f35b61035161094e565b60405161035e9190612051565b60405180910390f35b61036f610953565b60405161037c9190612051565b60405180910390f35b61039f600480360381019061039a919061240c565b610958565b005b6103a96109f9565b6040516103b69190612051565b60405180910390f35b6103c76109fe565b6040516103d49190612051565b60405180910390f35b6103e5610a03565b6040516103f29190612051565b60405180910390f35b610403610a08565b6040516104109190612051565b60405180910390f35b610433600480360381019061042e919061259e565b610a0d565b60405161044091906126d4565b60405180910390f35b610451610b26565b60405161045e9190612051565b60405180910390f35b61046f610b2b565b60405161047c9190612051565b60405180910390f35b61049f600480360381019061049a91906126f6565b610b30565b6040516104ac9190612051565b60405180910390f35b6104bd610b48565b6040516104ca9190612051565b60405180910390f35b6104db610b4d565b6040516104e89190612051565b60405180910390f35b61050b60048036038101906105069190612127565b610b52565b6040516105189190612051565b60405180910390f35b610529610b6a565b6040516105369190612051565b60405180910390f35b610547610b6f565b6040516105549190612051565b60405180910390f35b610565610b74565b6040516105729190612051565b60405180910390f35b610583610b79565b6040516105909190612051565b60405180910390f35b6105a1610b7e565b6040516105ae9190612051565b60405180910390f35b6105d160048036038101906105cc919061274f565b610b83565b005b6105db610b99565b6040516105e89190612051565b60405180910390f35b6105f9610b9f565b6040516106069190612051565b60405180910390f35b610617610ba4565b6040516106249190612051565b60405180910390f35b610635610ba9565b6040516106429190612051565b60405180910390f35b610653610bae565b6040516106609190612051565b60405180910390f35b610671610bb3565b60405161067e9190612051565b60405180910390f35b6106a1600480360381019061069c9190612127565b610bb8565b6040516106ae919061210c565b60405180910390f35b6106bf6110ca565b6040516106cc9190612051565b60405180910390f35b6106ef60048036038101906106ea919061278f565b6110cf565b6040516106fc919061210c565b60405180910390f35b61071f600480360381019061071a91906127cf565b611163565b005b610729611204565b6040516107369190612875565b60405180910390f35b61074761122a565b6040516107549190612051565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590612902565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610901575061090082611252565b5b9050919050565b601581565b60065481565b600081565b601281565b6060610928826112bc565b6040516020016109389190612a42565b6040516020818303038152906040529050919050565b600381565b600181565b61096061141d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109a657506109a5856109a061141d565b6110cf565b5b6109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90612ae1565b60405180910390fd5b6109f28585858585611425565b5050505050565b600d81565b600281565b600b81565b600481565b60608151835114610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90612b73565b60405180910390fd5b6000835167ffffffffffffffff811115610a7057610a6f612214565b5b604051908082528060200260200182016040528015610a9e5781602001602082028036833780820191505090505b50905060005b8451811015610b1b57610aeb858281518110610ac357610ac2612b93565b5b6020026020010151858381518110610ade57610add612b93565b5b602002602001015161075d565b828281518110610afe57610afd612b93565b5b60200260200101818152505080610b1490612bf1565b9050610aa4565b508091505092915050565b600a81565b600981565b60046020528060005260406000206000915090505481565b600681565b601381565b60056020528060005260406000206000915090505481565b600781565b600581565b601681565b600c81565b600e81565b610b95610b8e61141d565b8383611739565b5050565b60075481565b601181565b601781565b600881565b600f81565b601081565b60006003600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015610c0a575060038211155b610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612c86565b60405180910390fd5b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546003610c959190612ca6565b821115610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90612d26565b60405180910390fd5b601960075410156110c157601560056000600754815260200190815260200160002054116110c05781600560006007548152602001908152602001600020546015610d229190612ca6565b10610e6f57610d8d600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633600754856040518060400160405280600481526020017f30783030000000000000000000000000000000000000000000000000000000008152506118a6565b81600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ddc9190612d46565b925050819055508160066000828254610df59190612d46565b9250508190555081600560006007548152602001908152602001600020546015610e1f9190612ca6565b1415610e3e5760076000815480929190610e3890612bf1565b91905055505b816005600060075481526020019081526020016000206000828254610e639190612d46565b925050819055506110bf565b6000600560006007548152602001908152602001600020546015610e939190612ca6565b9050610efb600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633600754846040518060400160405280600481526020017f30783030000000000000000000000000000000000000000000000000000000008152506118a6565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f4a9190612d46565b925050819055508060066000828254610f639190612d46565b92505081905550806005600060075481526020019081526020016000206000828254610f8f9190612d46565b9250508190555060076000815480929190610fa990612bf1565b91905055508083610fba9190612ca6565b9050611022600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633600754846040518060400160405280600481526020017f30783030000000000000000000000000000000000000000000000000000000008152506118a6565b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110719190612d46565b92505081905550806006600082825461108a9190612d46565b925050819055508060056000600754815260200190815260200160002060008282546110b69190612d46565b92505081905550505b5b5b60019050919050565b601481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61116b61141d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111b157506111b0856111ab61141d565b6110cf565b5b6111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790612e0e565b60405180910390fd5b6111fd85858585856118a6565b5050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601881565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415611304576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611418565b600082905060005b6000821461133657808061131f90612bf1565b915050600a8261132f9190612e5d565b915061130c565b60008167ffffffffffffffff81111561135257611351612214565b5b6040519080825280601f01601f1916602001820160405280156113845781602001600182028036833780820191505090505b5090505b600085146114115760018261139d9190612ca6565b9150600a856113ac9190612e8e565b60306113b89190612d46565b60f81b8183815181106113ce576113cd612b93565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561140a9190612e5d565b9450611388565b8093505050505b919050565b600033905090565b8151835114611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090612f31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d090612fc3565b60405180910390fd5b60006114e361141d565b90506114f3818787878787611b28565b60005b84518110156116a457600085828151811061151457611513612b93565b5b60200260200101519050600085838151811061153357611532612b93565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613055565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116899190612d46565b925050819055505050508061169d90612bf1565b90506114f6565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161171b929190613075565b60405180910390a4611731818787878787611b30565b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f9061311e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611899919061210c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190d90612fc3565b60405180910390fd5b600061192061141d565b905061194081878761193188611d08565b61193a88611d08565b87611b28565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613055565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a8c9190612d46565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611b0992919061313e565b60405180910390a4611b1f828888888888611d82565b50505050505050565b505050505050565b611b4f8473ffffffffffffffffffffffffffffffffffffffff1661122f565b15611d00578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611b959594939291906131bc565b6020604051808303816000875af1925050508015611bd157506040513d601f19601f82011682018060405250810190611bce9190613239565b60015b611c7757611bdd613273565b806308c379a01415611c3a5750611bf2613295565b80611bfd5750611c3c565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3191906121ed565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e9061339d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf59061342f565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611d2757611d26612214565b5b604051908082528060200260200182016040528015611d555781602001602082028036833780820191505090505b5090508281600081518110611d6d57611d6c612b93565b5b60200260200101818152505080915050919050565b611da18473ffffffffffffffffffffffffffffffffffffffff1661122f565b15611f52578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611de795949392919061344f565b6020604051808303816000875af1925050508015611e2357506040513d601f19601f82011682018060405250810190611e209190613239565b60015b611ec957611e2f613273565b806308c379a01415611e8c5750611e44613295565b80611e4f5750611e8e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8391906121ed565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec09061339d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f479061342f565b60405180910390fd5b505b505050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f9982611f6e565b9050919050565b611fa981611f8e565b8114611fb457600080fd5b50565b600081359050611fc681611fa0565b92915050565b6000819050919050565b611fdf81611fcc565b8114611fea57600080fd5b50565b600081359050611ffc81611fd6565b92915050565b6000806040838503121561201957612018611f64565b5b600061202785828601611fb7565b925050602061203885828601611fed565b9150509250929050565b61204b81611fcc565b82525050565b60006020820190506120666000830184612042565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120a18161206c565b81146120ac57600080fd5b50565b6000813590506120be81612098565b92915050565b6000602082840312156120da576120d9611f64565b5b60006120e8848285016120af565b91505092915050565b60008115159050919050565b612106816120f1565b82525050565b600060208201905061212160008301846120fd565b92915050565b60006020828403121561213d5761213c611f64565b5b600061214b84828501611fed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561218e578082015181840152602081019050612173565b8381111561219d576000848401525b50505050565b6000601f19601f8301169050919050565b60006121bf82612154565b6121c9818561215f565b93506121d9818560208601612170565b6121e2816121a3565b840191505092915050565b6000602082019050818103600083015261220781846121b4565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61224c826121a3565b810181811067ffffffffffffffff8211171561226b5761226a612214565b5b80604052505050565b600061227e611f5a565b905061228a8282612243565b919050565b600067ffffffffffffffff8211156122aa576122a9612214565b5b602082029050602081019050919050565b600080fd5b60006122d36122ce8461228f565b612274565b905080838252602082019050602084028301858111156122f6576122f56122bb565b5b835b8181101561231f578061230b8882611fed565b8452602084019350506020810190506122f8565b5050509392505050565b600082601f83011261233e5761233d61220f565b5b813561234e8482602086016122c0565b91505092915050565b600080fd5b600067ffffffffffffffff82111561237757612376612214565b5b612380826121a3565b9050602081019050919050565b82818337600083830152505050565b60006123af6123aa8461235c565b612274565b9050828152602081018484840111156123cb576123ca612357565b5b6123d684828561238d565b509392505050565b600082601f8301126123f3576123f261220f565b5b813561240384826020860161239c565b91505092915050565b600080600080600060a0868803121561242857612427611f64565b5b600061243688828901611fb7565b955050602061244788828901611fb7565b945050604086013567ffffffffffffffff81111561246857612467611f69565b5b61247488828901612329565b935050606086013567ffffffffffffffff81111561249557612494611f69565b5b6124a188828901612329565b925050608086013567ffffffffffffffff8111156124c2576124c1611f69565b5b6124ce888289016123de565b9150509295509295909350565b600067ffffffffffffffff8211156124f6576124f5612214565b5b602082029050602081019050919050565b600061251a612515846124db565b612274565b9050808382526020820190506020840283018581111561253d5761253c6122bb565b5b835b8181101561256657806125528882611fb7565b84526020840193505060208101905061253f565b5050509392505050565b600082601f8301126125855761258461220f565b5b8135612595848260208601612507565b91505092915050565b600080604083850312156125b5576125b4611f64565b5b600083013567ffffffffffffffff8111156125d3576125d2611f69565b5b6125df85828601612570565b925050602083013567ffffffffffffffff811115612600576125ff611f69565b5b61260c85828601612329565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61264b81611fcc565b82525050565b600061265d8383612642565b60208301905092915050565b6000602082019050919050565b600061268182612616565b61268b8185612621565b935061269683612632565b8060005b838110156126c75781516126ae8882612651565b97506126b983612669565b92505060018101905061269a565b5085935050505092915050565b600060208201905081810360008301526126ee8184612676565b905092915050565b60006020828403121561270c5761270b611f64565b5b600061271a84828501611fb7565b91505092915050565b61272c816120f1565b811461273757600080fd5b50565b60008135905061274981612723565b92915050565b6000806040838503121561276657612765611f64565b5b600061277485828601611fb7565b92505060206127858582860161273a565b9150509250929050565b600080604083850312156127a6576127a5611f64565b5b60006127b485828601611fb7565b92505060206127c585828601611fb7565b9150509250929050565b600080600080600060a086880312156127eb576127ea611f64565b5b60006127f988828901611fb7565b955050602061280a88828901611fb7565b945050604061281b88828901611fed565b935050606061282c88828901611fed565b925050608086013567ffffffffffffffff81111561284d5761284c611f69565b5b612859888289016123de565b9150509295509295909350565b61286f81611f8e565b82525050565b600060208201905061288a6000830184612866565b92915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006128ec602b8361215f565b91506128f782612890565b604082019050919050565b6000602082019050818103600083015261291b816128df565b9050919050565b600081905092915050565b7f68747470733a2f2f697066732e696f2f697066732f626166796265696168727260008201527f3468716d6f646c6d623365343463766f76663276697168617a657a71716e767660208201527f6f65737279726c3235346b706c6a6c692f000000000000000000000000000000604082015250565b60006129af605183612922565b91506129ba8261292d565b605182019050919050565b60006129d082612154565b6129da8185612922565b93506129ea818560208601612170565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612a2c600583612922565b9150612a37826129f6565b600582019050919050565b6000612a4d826129a2565b9150612a5982846129c5565b9150612a6482612a1f565b915081905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612acb60328361215f565b9150612ad682612a6f565b604082019050919050565b60006020820190508181036000830152612afa81612abe565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612b5d60298361215f565b9150612b6882612b01565b604082019050919050565b60006020820190508181036000830152612b8c81612b50565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bfc82611fcc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c2f57612c2e612bc2565b5b600182019050919050565b7f796f752063616e206f6e6c79206275792033204e465473000000000000000000600082015250565b6000612c7060178361215f565b9150612c7b82612c3a565b602082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b6000612cb182611fcc565b9150612cbc83611fcc565b925082821015612ccf57612cce612bc2565b5b828203905092915050565b7f696e76616c6964206e0000000000000000000000000000000000000000000000600082015250565b6000612d1060098361215f565b9150612d1b82612cda565b602082019050919050565b60006020820190508181036000830152612d3f81612d03565b9050919050565b6000612d5182611fcc565b9150612d5c83611fcc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d9157612d90612bc2565b5b828201905092915050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000612df860298361215f565b9150612e0382612d9c565b604082019050919050565b60006020820190508181036000830152612e2781612deb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e6882611fcc565b9150612e7383611fcc565b925082612e8357612e82612e2e565b5b828204905092915050565b6000612e9982611fcc565b9150612ea483611fcc565b925082612eb457612eb3612e2e565b5b828206905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612f1b60288361215f565b9150612f2682612ebf565b604082019050919050565b60006020820190508181036000830152612f4a81612f0e565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612fad60258361215f565b9150612fb882612f51565b604082019050919050565b60006020820190508181036000830152612fdc81612fa0565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061303f602a8361215f565b915061304a82612fe3565b604082019050919050565b6000602082019050818103600083015261306e81613032565b9050919050565b6000604082019050818103600083015261308f8185612676565b905081810360208301526130a38184612676565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061310860298361215f565b9150613113826130ac565b604082019050919050565b60006020820190508181036000830152613137816130fb565b9050919050565b60006040820190506131536000830185612042565b6131606020830184612042565b9392505050565b600081519050919050565b600082825260208201905092915050565b600061318e82613167565b6131988185613172565b93506131a8818560208601612170565b6131b1816121a3565b840191505092915050565b600060a0820190506131d16000830188612866565b6131de6020830187612866565b81810360408301526131f08186612676565b905081810360608301526132048185612676565b905081810360808301526132188184613183565b90509695505050505050565b60008151905061323381612098565b92915050565b60006020828403121561324f5761324e611f64565b5b600061325d84828501613224565b91505092915050565b60008160e01c9050919050565b600060033d11156132925760046000803e61328f600051613266565b90505b90565b600060443d10156132a557613328565b6132ad611f5a565b60043d036004823e80513d602482011167ffffffffffffffff821117156132d5575050613328565b808201805167ffffffffffffffff8111156132f35750505050613328565b80602083010160043d038501811115613310575050505050613328565b61331f82602001850186612243565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061338760348361215f565b91506133928261332b565b604082019050919050565b600060208201905081810360008301526133b68161337a565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061341960288361215f565b9150613424826133bd565b604082019050919050565b600060208201905081810360008301526134488161340c565b9050919050565b600060a0820190506134646000830188612866565b6134716020830187612866565b61347e6040830186612042565b61348b6060830185612042565b818103608083015261349d8184613183565b9050969550505050505056fea26469706673582212205ecfbedc324ec3f78968c1ba8ea5b0d60c3cb35eba45d77b9f68af0aac6630b864736f6c634300080b0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.