ERC-1155
NFT
Overview
Max Total Supply
0 BACC
Holders
278
Market
Volume (24H)
11.42 ETH
Min Price (24H)
$6,375.48 @ 1.870000 ETH
Max Price (24H)
$6,648.23 @ 1.950000 ETH
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoredApeChemistryClub
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // |||||\ |||||\ |||||\ |||||\ // ||||| | ||||| | ||||| | ||||| | // \__|||||\ |||||\___\| \__|||||\ |||||\___\| // ||||| | ||||| | ||||| | ||||| | // \__|||||\___\| Y u g a \__|||||\___\| // ||||| | L a b s ||||| | // |||||\___\| |||||\___\| // ||||| | ||||| | // \__|||||||||||\ \__|||||||||||\ // ||||||||||| | ||||||||||| | // \_________\| \_________\| contract BoredApeChemistryClub is ERC1155, Ownable { using Strings for uint256; address private mutationContract; string private baseURI; mapping(uint256 => bool) public validSerumTypes; string public constant M___ = ".-----."; string public constant _A__ = "|~~~~~|"; string public constant __Y_ = "|mayo |"; string public constant ___O = "|_____|"; event SetBaseURI(string indexed _baseURI); constructor(string memory _baseURI) ERC1155(_baseURI) { baseURI = _baseURI; validSerumTypes[0] = true; validSerumTypes[1] = true; validSerumTypes[69] = true; emit SetBaseURI(baseURI); } function mintBatch(uint256[] memory ids, uint256[] memory amounts) external onlyOwner { _mintBatch(owner(), ids, amounts, ""); } function setMutationContractAddress(address mutationContractAddress) external onlyOwner { mutationContract = mutationContractAddress; } function burnSerumForAddress(uint256 typeId, address burnTokenAddress) external { require(msg.sender == mutationContract, "Invalid burner address"); _burn(burnTokenAddress, typeId, 1); } // DM NoSass in discord, tell him you're ready for your foot massage function updateBaseUri(string memory _baseURI) external onlyOwner { baseURI = _baseURI; emit SetBaseURI(baseURI); } function uri(uint256 typeId) public view override returns (string memory) { require( validSerumTypes[typeId], "URI requested for invalid serum type" ); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, typeId.toString())) : baseURI; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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 { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, 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 account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @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(to).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(to).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 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 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. 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. 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 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "evmVersion": "berlin", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"_baseURI","type":"string"}],"name":"SetBaseURI","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":"M___","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_A__","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__Y_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"___O","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"typeId","type":"uint256"},{"internalType":"address","name":"burnTokenAddress","type":"address"}],"name":"burnSerumForAddress","outputs":[],"stateMutability":"nonpayable","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":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":[{"internalType":"address","name":"mutationContractAddress","type":"address"}],"name":"setMutationContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"validSerumTypes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620042633803806200426383398181016040528101906200003791906200036d565b8062000049816200015560201b60201c565b506200006a6200005e6200017160201b60201c565b6200017960201b60201c565b8060059080519060200190620000829291906200023f565b5060016006600080815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660006001815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660006045815260200190815260200160002060006101000a81548160ff02191690831515021790555060056040516200011a919062000449565b60405180910390207f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa60405160405180910390a25062000606565b80600290805190602001906200016d9291906200023f565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024d9062000517565b90600052602060002090601f016020900481019282620002715760008555620002bd565b82601f106200028c57805160ff1916838001178555620002bd565b82800160010185558215620002bd579182015b82811115620002bc5782518255916020019190600101906200029f565b5b509050620002cc9190620002d0565b5090565b5b80821115620002eb576000816000905550600101620002d1565b5090565b60006200030662000300846200048b565b62000462565b905082815260208101848484011115620003255762000324620005e6565b5b62000332848285620004e1565b509392505050565b600082601f830112620003525762000351620005e1565b5b815162000364848260208601620002ef565b91505092915050565b600060208284031215620003865762000385620005f0565b5b600082015167ffffffffffffffff811115620003a757620003a6620005eb565b5b620003b5848285016200033a565b91505092915050565b60008154620003cd8162000517565b620003d98186620004d6565b94506001821660008114620003f75760018114620004095762000440565b60ff1983168652818601935062000440565b6200041485620004c1565b60005b83811015620004385781548189015260018201915060208101905062000417565b838801955050505b50505092915050565b6000620004578284620003be565b915081905092915050565b60006200046e62000481565b90506200047c82826200054d565b919050565b6000604051905090565b600067ffffffffffffffff821115620004a957620004a8620005b2565b5b620004b482620005f5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081905092915050565b60005b8381101562000501578082015181840152602081019050620004e4565b8381111562000511576000848401525b50505050565b600060028204905060018216806200053057607f821691505b6020821081141562000547576200054662000583565b5b50919050565b6200055882620005f5565b810181811067ffffffffffffffff821117156200057a5762000579620005b2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613c4d80620006166000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c806384ec1fc4116100ad578063aa267b7311610071578063aa267b731461031c578063d351cfdc1461034c578063e985e9c514610368578063f242432a14610398578063f2fde38b146103b45761012b565b806384ec1fc414610288578063850a0bc2146102a65780638da5cb5b146102c45780639b719ce5146102e2578063a22cb465146103005761012b565b80633177902e116100f45780633177902e146101f857806339f7e37f146102165780634e1273f41461023257806370ff9ea314610262578063715018a61461027e5761012b565b8062fdd58e1461013057806301ffc9a7146101605780630e89341c146101905780631f5bfd11146101c05780632eb2c2d6146101dc575b600080fd5b61014a600480360381019061014591906126b7565b6103d0565b60405161015791906130ec565b60405180910390f35b61017a600480360381019061017591906127e7565b610499565b6040516101879190612e8f565b60405180910390f35b6101aa60048036038101906101a5919061288a565b61057b565b6040516101b79190612eaa565b60405180910390f35b6101da60048036038101906101d591906124a4565b6106b6565b005b6101f660048036038101906101f19190612511565b610776565b005b610200610817565b60405161020d9190612eaa565b60405180910390f35b610230600480360381019061022b9190612841565b610850565b005b61024c600480360381019061024791906126f7565b610929565b6040516102599190612e36565b60405180910390f35b61027c600480360381019061027791906128b7565b610a42565b005b610286610ae2565b005b610290610b6a565b60405161029d9190612eaa565b60405180910390f35b6102ae610ba3565b6040516102bb9190612eaa565b60405180910390f35b6102cc610bdc565b6040516102d99190612d59565b60405180910390f35b6102ea610c06565b6040516102f79190612eaa565b60405180910390f35b61031a60048036038101906103159190612677565b610c3f565b005b6103366004803603810190610331919061288a565b610dc0565b6040516103439190612e8f565b60405180910390f35b6103666004803603810190610361919061276f565b610de0565b005b610382600480360381019061037d91906124d1565b610e82565b60405161038f9190612e8f565b60405180910390f35b6103b260048036038101906103ad91906125e0565b610f16565b005b6103ce60048036038101906103c991906124a4565b610fb7565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043890612f2c565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105745750610573826110af565b5b9050919050565b60606006600083815260200190815260200160002060009054906101000a900460ff166105dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d490612f0c565b60405180910390fd5b6000600580546105ec90613411565b905011610683576005805461060090613411565b80601f016020809104026020016040519081016040528092919081815260200182805461062c90613411565b80156106795780601f1061064e57610100808354040283529160200191610679565b820191906000526020600020905b81548152906001019060200180831161065c57829003601f168201915b50505050506106af565b600561068e83611119565b60405160200161069f929190612d35565b6040516020818303038152906040525b9050919050565b6106be61127a565b73ffffffffffffffffffffffffffffffffffffffff166106dc610bdc565b73ffffffffffffffffffffffffffffffffffffffff1614610732576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107299061302c565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61077e61127a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107c457506107c3856107be61127a565b610e82565b5b610803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fa90612fcc565b60405180910390fd5b6108108585858585611282565b5050505050565b6040518060400160405280600781526020017f2e2d2d2d2d2d2e0000000000000000000000000000000000000000000000000081525081565b61085861127a565b73ffffffffffffffffffffffffffffffffffffffff16610876610bdc565b73ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c39061302c565b60405180910390fd5b80600590805190602001906108e292919061217c565b5060056040516108f29190612d1e565b60405180910390207f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa60405160405180910390a250565b6060815183511461096f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109669061306c565b60405180910390fd5b6000835167ffffffffffffffff81111561098c5761098b6135aa565b5b6040519080825280602002602001820160405280156109ba5781602001602082028036833780820191505090505b50905060005b8451811015610a3757610a078582815181106109df576109de61357b565b5b60200260200101518583815181106109fa576109f961357b565b5b60200260200101516103d0565b828281518110610a1a57610a1961357b565b5b60200260200101818152505080610a3090613474565b90506109c0565b508091505092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac99061308c565b60405180910390fd5b610ade81836001611596565b5050565b610aea61127a565b73ffffffffffffffffffffffffffffffffffffffff16610b08610bdc565b73ffffffffffffffffffffffffffffffffffffffff1614610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b559061302c565b60405180910390fd5b610b6860006117b3565b565b6040518060400160405280600781526020017f7c7e7e7e7e7e7c0000000000000000000000000000000000000000000000000081525081565b6040518060400160405280600781526020017f7c6d61796f207c0000000000000000000000000000000000000000000000000081525081565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600781526020017f7c5f5f5f5f5f7c0000000000000000000000000000000000000000000000000081525081565b8173ffffffffffffffffffffffffffffffffffffffff16610c5e61127a565b73ffffffffffffffffffffffffffffffffffffffff161415610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac9061304c565b60405180910390fd5b8060016000610cc261127a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d6f61127a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610db49190612e8f565b60405180910390a35050565b60066020528060005260406000206000915054906101000a900460ff1681565b610de861127a565b73ffffffffffffffffffffffffffffffffffffffff16610e06610bdc565b73ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e539061302c565b60405180910390fd5b610e7e610e67610bdc565b838360405180602001604052806000815250611879565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f1e61127a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f645750610f6385610f5e61127a565b610e82565b5b610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90612f8c565b60405180910390fd5b610fb08585858585611a97565b5050505050565b610fbf61127a565b73ffffffffffffffffffffffffffffffffffffffff16610fdd610bdc565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a9061302c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90612f4c565b60405180910390fd5b6110ac816117b3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415611161576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611275565b600082905060005b6000821461119357808061117c90613474565b915050600a8261118c91906132f6565b9150611169565b60008167ffffffffffffffff8111156111af576111ae6135aa565b5b6040519080825280601f01601f1916602001820160405280156111e15781602001600182028036833780820191505090505b5090505b6000851461126e576001826111fa9190613327565b9150600a8561120991906134bd565b603061121591906132a0565b60f81b81838151811061122b5761122a61357b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561126791906132f6565b94506111e5565b8093505050505b919050565b600033905090565b81518351146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd906130ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90612fac565b60405180910390fd5b600061134061127a565b9050611350818787878787611d19565b60005b84518110156115015760008582815181106113715761137061357b565b5b6020026020010151905060008583815181106113905761138f61357b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114289061300c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e691906132a0565b92505081905550505050806114fa90613474565b9050611353565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611578929190612e58565b60405180910390a461158e818787878787611d21565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90612fec565b60405180910390fd5b600061161061127a565b90506116408185600061162287611f08565b61162b87611f08565b60405180602001604052806000815250611d19565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90612f6c565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516117a4929190613107565b60405180910390a45050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906130cc565b60405180910390fd5b815183511461192d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611924906130ac565b60405180910390fd5b600061193761127a565b905061194881600087878787611d19565b60005b8451811015611a01578381815181106119675761196661357b565b5b60200260200101516000808784815181106119855761198461357b565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e791906132a0565b9250508190555080806119f990613474565b91505061194b565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a79929190612e58565b60405180910390a4611a9081600087878787611d21565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90612fac565b60405180910390fd5b6000611b1161127a565b9050611b31818787611b2288611f08565b611b2b88611f08565b87611d19565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf9061300c565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7d91906132a0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611cfa929190613107565b60405180910390a4611d10828888888888611f82565b50505050505050565b505050505050565b611d408473ffffffffffffffffffffffffffffffffffffffff16612169565b15611f00578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611d86959493929190612d74565b602060405180830381600087803b158015611da057600080fd5b505af1925050508015611dd157506040513d601f19601f82011682018060405250810190611dce9190612814565b60015b611e7757611ddd6135d9565b806308c379a01415611e3a5750611df2613b25565b80611dfd5750611e3c565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e319190612eaa565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90612ecc565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590612eec565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611f2757611f266135aa565b5b604051908082528060200260200182016040528015611f555781602001602082028036833780820191505090505b5090508281600081518110611f6d57611f6c61357b565b5b60200260200101818152505080915050919050565b611fa18473ffffffffffffffffffffffffffffffffffffffff16612169565b15612161578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611fe7959493929190612ddc565b602060405180830381600087803b15801561200157600080fd5b505af192505050801561203257506040513d601f19601f8201168201806040525081019061202f9190612814565b60015b6120d85761203e6135d9565b806308c379a0141561209b5750612053613b25565b8061205e575061209d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120929190612eaa565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90612ecc565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215690612eec565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805461218890613411565b90600052602060002090601f0160209004810192826121aa57600085556121f1565b82601f106121c357805160ff19168380011785556121f1565b828001600101855582156121f1579182015b828111156121f05782518255916020019190600101906121d5565b5b5090506121fe9190612202565b5090565b5b8082111561221b576000816000905550600101612203565b5090565b600061223261222d84613155565b613130565b9050808382526020820190508285602086028201111561225557612254613600565b5b60005b85811015612285578161226b8882612383565b845260208401935060208301925050600181019050612258565b5050509392505050565b60006122a261229d84613181565b613130565b905080838252602082019050828560208602820111156122c5576122c4613600565b5b60005b858110156122f557816122db888261248f565b8452602084019350602083019250506001810190506122c8565b5050509392505050565b600061231261230d846131ad565b613130565b90508281526020810184848401111561232e5761232d613605565b5b6123398482856133cf565b509392505050565b600061235461234f846131de565b613130565b9050828152602081018484840111156123705761236f613605565b5b61237b8482856133cf565b509392505050565b60008135905061239281613bbb565b92915050565b600082601f8301126123ad576123ac6135fb565b5b81356123bd84826020860161221f565b91505092915050565b600082601f8301126123db576123da6135fb565b5b81356123eb84826020860161228f565b91505092915050565b60008135905061240381613bd2565b92915050565b60008135905061241881613be9565b92915050565b60008151905061242d81613be9565b92915050565b600082601f830112612448576124476135fb565b5b81356124588482602086016122ff565b91505092915050565b600082601f830112612476576124756135fb565b5b8135612486848260208601612341565b91505092915050565b60008135905061249e81613c00565b92915050565b6000602082840312156124ba576124b961360f565b5b60006124c884828501612383565b91505092915050565b600080604083850312156124e8576124e761360f565b5b60006124f685828601612383565b925050602061250785828601612383565b9150509250929050565b600080600080600060a0868803121561252d5761252c61360f565b5b600061253b88828901612383565b955050602061254c88828901612383565b945050604086013567ffffffffffffffff81111561256d5761256c61360a565b5b612579888289016123c6565b935050606086013567ffffffffffffffff81111561259a5761259961360a565b5b6125a6888289016123c6565b925050608086013567ffffffffffffffff8111156125c7576125c661360a565b5b6125d388828901612433565b9150509295509295909350565b600080600080600060a086880312156125fc576125fb61360f565b5b600061260a88828901612383565b955050602061261b88828901612383565b945050604061262c8882890161248f565b935050606061263d8882890161248f565b925050608086013567ffffffffffffffff81111561265e5761265d61360a565b5b61266a88828901612433565b9150509295509295909350565b6000806040838503121561268e5761268d61360f565b5b600061269c85828601612383565b92505060206126ad858286016123f4565b9150509250929050565b600080604083850312156126ce576126cd61360f565b5b60006126dc85828601612383565b92505060206126ed8582860161248f565b9150509250929050565b6000806040838503121561270e5761270d61360f565b5b600083013567ffffffffffffffff81111561272c5761272b61360a565b5b61273885828601612398565b925050602083013567ffffffffffffffff8111156127595761275861360a565b5b612765858286016123c6565b9150509250929050565b600080604083850312156127865761278561360f565b5b600083013567ffffffffffffffff8111156127a4576127a361360a565b5b6127b0858286016123c6565b925050602083013567ffffffffffffffff8111156127d1576127d061360a565b5b6127dd858286016123c6565b9150509250929050565b6000602082840312156127fd576127fc61360f565b5b600061280b84828501612409565b91505092915050565b60006020828403121561282a5761282961360f565b5b60006128388482850161241e565b91505092915050565b6000602082840312156128575761285661360f565b5b600082013567ffffffffffffffff8111156128755761287461360a565b5b61288184828501612461565b91505092915050565b6000602082840312156128a05761289f61360f565b5b60006128ae8482850161248f565b91505092915050565b600080604083850312156128ce576128cd61360f565b5b60006128dc8582860161248f565b92505060206128ed85828601612383565b9150509250929050565b60006129038383612d00565b60208301905092915050565b6129188161335b565b82525050565b600061292982613234565b6129338185613262565b935061293e8361320f565b8060005b8381101561296f57815161295688826128f7565b975061296183613255565b925050600181019050612942565b5085935050505092915050565b6129858161336d565b82525050565b60006129968261323f565b6129a08185613273565b93506129b08185602086016133de565b6129b981613614565b840191505092915050565b60006129cf8261324a565b6129d98185613284565b93506129e98185602086016133de565b6129f281613614565b840191505092915050565b6000612a088261324a565b612a128185613295565b9350612a228185602086016133de565b80840191505092915050565b60008154612a3b81613411565b612a458186613295565b94506001821660008114612a605760018114612a7157612aa4565b60ff19831686528186019350612aa4565b612a7a8561321f565b60005b83811015612a9c57815481890152600182019150602081019050612a7d565b838801955050505b50505092915050565b6000612aba603483613284565b9150612ac582613632565b604082019050919050565b6000612add602883613284565b9150612ae882613681565b604082019050919050565b6000612b00602483613284565b9150612b0b826136d0565b604082019050919050565b6000612b23602b83613284565b9150612b2e8261371f565b604082019050919050565b6000612b46602683613284565b9150612b518261376e565b604082019050919050565b6000612b69602483613284565b9150612b74826137bd565b604082019050919050565b6000612b8c602983613284565b9150612b978261380c565b604082019050919050565b6000612baf602583613284565b9150612bba8261385b565b604082019050919050565b6000612bd2603283613284565b9150612bdd826138aa565b604082019050919050565b6000612bf5602383613284565b9150612c00826138f9565b604082019050919050565b6000612c18602a83613284565b9150612c2382613948565b604082019050919050565b6000612c3b602083613284565b9150612c4682613997565b602082019050919050565b6000612c5e602983613284565b9150612c69826139c0565b604082019050919050565b6000612c81602983613284565b9150612c8c82613a0f565b604082019050919050565b6000612ca4601683613284565b9150612caf82613a5e565b602082019050919050565b6000612cc7602883613284565b9150612cd282613a87565b604082019050919050565b6000612cea602183613284565b9150612cf582613ad6565b604082019050919050565b612d09816133c5565b82525050565b612d18816133c5565b82525050565b6000612d2a8284612a2e565b915081905092915050565b6000612d418285612a2e565b9150612d4d82846129fd565b91508190509392505050565b6000602082019050612d6e600083018461290f565b92915050565b600060a082019050612d89600083018861290f565b612d96602083018761290f565b8181036040830152612da8818661291e565b90508181036060830152612dbc818561291e565b90508181036080830152612dd0818461298b565b90509695505050505050565b600060a082019050612df1600083018861290f565b612dfe602083018761290f565b612e0b6040830186612d0f565b612e186060830185612d0f565b8181036080830152612e2a818461298b565b90509695505050505050565b60006020820190508181036000830152612e50818461291e565b905092915050565b60006040820190508181036000830152612e72818561291e565b90508181036020830152612e86818461291e565b90509392505050565b6000602082019050612ea4600083018461297c565b92915050565b60006020820190508181036000830152612ec481846129c4565b905092915050565b60006020820190508181036000830152612ee581612aad565b9050919050565b60006020820190508181036000830152612f0581612ad0565b9050919050565b60006020820190508181036000830152612f2581612af3565b9050919050565b60006020820190508181036000830152612f4581612b16565b9050919050565b60006020820190508181036000830152612f6581612b39565b9050919050565b60006020820190508181036000830152612f8581612b5c565b9050919050565b60006020820190508181036000830152612fa581612b7f565b9050919050565b60006020820190508181036000830152612fc581612ba2565b9050919050565b60006020820190508181036000830152612fe581612bc5565b9050919050565b6000602082019050818103600083015261300581612be8565b9050919050565b6000602082019050818103600083015261302581612c0b565b9050919050565b6000602082019050818103600083015261304581612c2e565b9050919050565b6000602082019050818103600083015261306581612c51565b9050919050565b6000602082019050818103600083015261308581612c74565b9050919050565b600060208201905081810360008301526130a581612c97565b9050919050565b600060208201905081810360008301526130c581612cba565b9050919050565b600060208201905081810360008301526130e581612cdd565b9050919050565b60006020820190506131016000830184612d0f565b92915050565b600060408201905061311c6000830185612d0f565b6131296020830184612d0f565b9392505050565b600061313a61314b565b90506131468282613443565b919050565b6000604051905090565b600067ffffffffffffffff8211156131705761316f6135aa565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561319c5761319b6135aa565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156131c8576131c76135aa565b5b6131d182613614565b9050602081019050919050565b600067ffffffffffffffff8211156131f9576131f86135aa565b5b61320282613614565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132ab826133c5565b91506132b6836133c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132eb576132ea6134ee565b5b828201905092915050565b6000613301826133c5565b915061330c836133c5565b92508261331c5761331b61351d565b5b828204905092915050565b6000613332826133c5565b915061333d836133c5565b9250828210156133505761334f6134ee565b5b828203905092915050565b6000613366826133a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133fc5780820151818401526020810190506133e1565b8381111561340b576000848401525b50505050565b6000600282049050600182168061342957607f821691505b6020821081141561343d5761343c61354c565b5b50919050565b61344c82613614565b810181811067ffffffffffffffff8211171561346b5761346a6135aa565b5b80604052505050565b600061347f826133c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134b2576134b16134ee565b5b600182019050919050565b60006134c8826133c5565b91506134d3836133c5565b9250826134e3576134e261351d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156135f85760046000803e6135f5600051613625565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5552492072657175657374656420666f7220696e76616c696420736572756d2060008201527f7479706500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206275726e6572206164647265737300000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613b3557613bb8565b613b3d61314b565b60043d036004823e80513d602482011167ffffffffffffffff82111715613b65575050613bb8565b808201805167ffffffffffffffff811115613b835750505050613bb8565b80602083010160043d038501811115613ba0575050505050613bb8565b613baf82602001850186613443565b82955050505050505b90565b613bc48161335b565b8114613bcf57600080fd5b50565b613bdb8161336d565b8114613be657600080fd5b50565b613bf281613379565b8114613bfd57600080fd5b50565b613c09816133c5565b8114613c1457600080fd5b5056fea2646970667358221220ad4e8b25b25cc1577e49f5737e2d84999c5f26ac8361332aea0943f28f6d940964736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d647441524c5550516571587256634e7a5175527172395543466f46766e37365839636454637a7434767166772f00000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012b5760003560e01c806384ec1fc4116100ad578063aa267b7311610071578063aa267b731461031c578063d351cfdc1461034c578063e985e9c514610368578063f242432a14610398578063f2fde38b146103b45761012b565b806384ec1fc414610288578063850a0bc2146102a65780638da5cb5b146102c45780639b719ce5146102e2578063a22cb465146103005761012b565b80633177902e116100f45780633177902e146101f857806339f7e37f146102165780634e1273f41461023257806370ff9ea314610262578063715018a61461027e5761012b565b8062fdd58e1461013057806301ffc9a7146101605780630e89341c146101905780631f5bfd11146101c05780632eb2c2d6146101dc575b600080fd5b61014a600480360381019061014591906126b7565b6103d0565b60405161015791906130ec565b60405180910390f35b61017a600480360381019061017591906127e7565b610499565b6040516101879190612e8f565b60405180910390f35b6101aa60048036038101906101a5919061288a565b61057b565b6040516101b79190612eaa565b60405180910390f35b6101da60048036038101906101d591906124a4565b6106b6565b005b6101f660048036038101906101f19190612511565b610776565b005b610200610817565b60405161020d9190612eaa565b60405180910390f35b610230600480360381019061022b9190612841565b610850565b005b61024c600480360381019061024791906126f7565b610929565b6040516102599190612e36565b60405180910390f35b61027c600480360381019061027791906128b7565b610a42565b005b610286610ae2565b005b610290610b6a565b60405161029d9190612eaa565b60405180910390f35b6102ae610ba3565b6040516102bb9190612eaa565b60405180910390f35b6102cc610bdc565b6040516102d99190612d59565b60405180910390f35b6102ea610c06565b6040516102f79190612eaa565b60405180910390f35b61031a60048036038101906103159190612677565b610c3f565b005b6103366004803603810190610331919061288a565b610dc0565b6040516103439190612e8f565b60405180910390f35b6103666004803603810190610361919061276f565b610de0565b005b610382600480360381019061037d91906124d1565b610e82565b60405161038f9190612e8f565b60405180910390f35b6103b260048036038101906103ad91906125e0565b610f16565b005b6103ce60048036038101906103c991906124a4565b610fb7565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043890612f2c565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105745750610573826110af565b5b9050919050565b60606006600083815260200190815260200160002060009054906101000a900460ff166105dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d490612f0c565b60405180910390fd5b6000600580546105ec90613411565b905011610683576005805461060090613411565b80601f016020809104026020016040519081016040528092919081815260200182805461062c90613411565b80156106795780601f1061064e57610100808354040283529160200191610679565b820191906000526020600020905b81548152906001019060200180831161065c57829003601f168201915b50505050506106af565b600561068e83611119565b60405160200161069f929190612d35565b6040516020818303038152906040525b9050919050565b6106be61127a565b73ffffffffffffffffffffffffffffffffffffffff166106dc610bdc565b73ffffffffffffffffffffffffffffffffffffffff1614610732576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107299061302c565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61077e61127a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107c457506107c3856107be61127a565b610e82565b5b610803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fa90612fcc565b60405180910390fd5b6108108585858585611282565b5050505050565b6040518060400160405280600781526020017f2e2d2d2d2d2d2e0000000000000000000000000000000000000000000000000081525081565b61085861127a565b73ffffffffffffffffffffffffffffffffffffffff16610876610bdc565b73ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c39061302c565b60405180910390fd5b80600590805190602001906108e292919061217c565b5060056040516108f29190612d1e565b60405180910390207f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa60405160405180910390a250565b6060815183511461096f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109669061306c565b60405180910390fd5b6000835167ffffffffffffffff81111561098c5761098b6135aa565b5b6040519080825280602002602001820160405280156109ba5781602001602082028036833780820191505090505b50905060005b8451811015610a3757610a078582815181106109df576109de61357b565b5b60200260200101518583815181106109fa576109f961357b565b5b60200260200101516103d0565b828281518110610a1a57610a1961357b565b5b60200260200101818152505080610a3090613474565b90506109c0565b508091505092915050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac99061308c565b60405180910390fd5b610ade81836001611596565b5050565b610aea61127a565b73ffffffffffffffffffffffffffffffffffffffff16610b08610bdc565b73ffffffffffffffffffffffffffffffffffffffff1614610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b559061302c565b60405180910390fd5b610b6860006117b3565b565b6040518060400160405280600781526020017f7c7e7e7e7e7e7c0000000000000000000000000000000000000000000000000081525081565b6040518060400160405280600781526020017f7c6d61796f207c0000000000000000000000000000000000000000000000000081525081565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600781526020017f7c5f5f5f5f5f7c0000000000000000000000000000000000000000000000000081525081565b8173ffffffffffffffffffffffffffffffffffffffff16610c5e61127a565b73ffffffffffffffffffffffffffffffffffffffff161415610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac9061304c565b60405180910390fd5b8060016000610cc261127a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d6f61127a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610db49190612e8f565b60405180910390a35050565b60066020528060005260406000206000915054906101000a900460ff1681565b610de861127a565b73ffffffffffffffffffffffffffffffffffffffff16610e06610bdc565b73ffffffffffffffffffffffffffffffffffffffff1614610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e539061302c565b60405180910390fd5b610e7e610e67610bdc565b838360405180602001604052806000815250611879565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f1e61127a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610f645750610f6385610f5e61127a565b610e82565b5b610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90612f8c565b60405180910390fd5b610fb08585858585611a97565b5050505050565b610fbf61127a565b73ffffffffffffffffffffffffffffffffffffffff16610fdd610bdc565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a9061302c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90612f4c565b60405180910390fd5b6110ac816117b3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415611161576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611275565b600082905060005b6000821461119357808061117c90613474565b915050600a8261118c91906132f6565b9150611169565b60008167ffffffffffffffff8111156111af576111ae6135aa565b5b6040519080825280601f01601f1916602001820160405280156111e15781602001600182028036833780820191505090505b5090505b6000851461126e576001826111fa9190613327565b9150600a8561120991906134bd565b603061121591906132a0565b60f81b81838151811061122b5761122a61357b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561126791906132f6565b94506111e5565b8093505050505b919050565b600033905090565b81518351146112c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bd906130ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90612fac565b60405180910390fd5b600061134061127a565b9050611350818787878787611d19565b60005b84518110156115015760008582815181106113715761137061357b565b5b6020026020010151905060008583815181106113905761138f61357b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114289061300c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e691906132a0565b92505081905550505050806114fa90613474565b9050611353565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611578929190612e58565b60405180910390a461158e818787878787611d21565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90612fec565b60405180910390fd5b600061161061127a565b90506116408185600061162287611f08565b61162b87611f08565b60405180602001604052806000815250611d19565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90612f6c565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516117a4929190613107565b60405180910390a45050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906130cc565b60405180910390fd5b815183511461192d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611924906130ac565b60405180910390fd5b600061193761127a565b905061194881600087878787611d19565b60005b8451811015611a01578381815181106119675761196661357b565b5b60200260200101516000808784815181106119855761198461357b565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e791906132a0565b9250508190555080806119f990613474565b91505061194b565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a79929190612e58565b60405180910390a4611a9081600087878787611d21565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90612fac565b60405180910390fd5b6000611b1161127a565b9050611b31818787611b2288611f08565b611b2b88611f08565b87611d19565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf9061300c565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7d91906132a0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611cfa929190613107565b60405180910390a4611d10828888888888611f82565b50505050505050565b505050505050565b611d408473ffffffffffffffffffffffffffffffffffffffff16612169565b15611f00578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611d86959493929190612d74565b602060405180830381600087803b158015611da057600080fd5b505af1925050508015611dd157506040513d601f19601f82011682018060405250810190611dce9190612814565b60015b611e7757611ddd6135d9565b806308c379a01415611e3a5750611df2613b25565b80611dfd5750611e3c565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e319190612eaa565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90612ecc565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590612eec565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611f2757611f266135aa565b5b604051908082528060200260200182016040528015611f555781602001602082028036833780820191505090505b5090508281600081518110611f6d57611f6c61357b565b5b60200260200101818152505080915050919050565b611fa18473ffffffffffffffffffffffffffffffffffffffff16612169565b15612161578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611fe7959493929190612ddc565b602060405180830381600087803b15801561200157600080fd5b505af192505050801561203257506040513d601f19601f8201168201806040525081019061202f9190612814565b60015b6120d85761203e6135d9565b806308c379a0141561209b5750612053613b25565b8061205e575061209d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120929190612eaa565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90612ecc565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215690612eec565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805461218890613411565b90600052602060002090601f0160209004810192826121aa57600085556121f1565b82601f106121c357805160ff19168380011785556121f1565b828001600101855582156121f1579182015b828111156121f05782518255916020019190600101906121d5565b5b5090506121fe9190612202565b5090565b5b8082111561221b576000816000905550600101612203565b5090565b600061223261222d84613155565b613130565b9050808382526020820190508285602086028201111561225557612254613600565b5b60005b85811015612285578161226b8882612383565b845260208401935060208301925050600181019050612258565b5050509392505050565b60006122a261229d84613181565b613130565b905080838252602082019050828560208602820111156122c5576122c4613600565b5b60005b858110156122f557816122db888261248f565b8452602084019350602083019250506001810190506122c8565b5050509392505050565b600061231261230d846131ad565b613130565b90508281526020810184848401111561232e5761232d613605565b5b6123398482856133cf565b509392505050565b600061235461234f846131de565b613130565b9050828152602081018484840111156123705761236f613605565b5b61237b8482856133cf565b509392505050565b60008135905061239281613bbb565b92915050565b600082601f8301126123ad576123ac6135fb565b5b81356123bd84826020860161221f565b91505092915050565b600082601f8301126123db576123da6135fb565b5b81356123eb84826020860161228f565b91505092915050565b60008135905061240381613bd2565b92915050565b60008135905061241881613be9565b92915050565b60008151905061242d81613be9565b92915050565b600082601f830112612448576124476135fb565b5b81356124588482602086016122ff565b91505092915050565b600082601f830112612476576124756135fb565b5b8135612486848260208601612341565b91505092915050565b60008135905061249e81613c00565b92915050565b6000602082840312156124ba576124b961360f565b5b60006124c884828501612383565b91505092915050565b600080604083850312156124e8576124e761360f565b5b60006124f685828601612383565b925050602061250785828601612383565b9150509250929050565b600080600080600060a0868803121561252d5761252c61360f565b5b600061253b88828901612383565b955050602061254c88828901612383565b945050604086013567ffffffffffffffff81111561256d5761256c61360a565b5b612579888289016123c6565b935050606086013567ffffffffffffffff81111561259a5761259961360a565b5b6125a6888289016123c6565b925050608086013567ffffffffffffffff8111156125c7576125c661360a565b5b6125d388828901612433565b9150509295509295909350565b600080600080600060a086880312156125fc576125fb61360f565b5b600061260a88828901612383565b955050602061261b88828901612383565b945050604061262c8882890161248f565b935050606061263d8882890161248f565b925050608086013567ffffffffffffffff81111561265e5761265d61360a565b5b61266a88828901612433565b9150509295509295909350565b6000806040838503121561268e5761268d61360f565b5b600061269c85828601612383565b92505060206126ad858286016123f4565b9150509250929050565b600080604083850312156126ce576126cd61360f565b5b60006126dc85828601612383565b92505060206126ed8582860161248f565b9150509250929050565b6000806040838503121561270e5761270d61360f565b5b600083013567ffffffffffffffff81111561272c5761272b61360a565b5b61273885828601612398565b925050602083013567ffffffffffffffff8111156127595761275861360a565b5b612765858286016123c6565b9150509250929050565b600080604083850312156127865761278561360f565b5b600083013567ffffffffffffffff8111156127a4576127a361360a565b5b6127b0858286016123c6565b925050602083013567ffffffffffffffff8111156127d1576127d061360a565b5b6127dd858286016123c6565b9150509250929050565b6000602082840312156127fd576127fc61360f565b5b600061280b84828501612409565b91505092915050565b60006020828403121561282a5761282961360f565b5b60006128388482850161241e565b91505092915050565b6000602082840312156128575761285661360f565b5b600082013567ffffffffffffffff8111156128755761287461360a565b5b61288184828501612461565b91505092915050565b6000602082840312156128a05761289f61360f565b5b60006128ae8482850161248f565b91505092915050565b600080604083850312156128ce576128cd61360f565b5b60006128dc8582860161248f565b92505060206128ed85828601612383565b9150509250929050565b60006129038383612d00565b60208301905092915050565b6129188161335b565b82525050565b600061292982613234565b6129338185613262565b935061293e8361320f565b8060005b8381101561296f57815161295688826128f7565b975061296183613255565b925050600181019050612942565b5085935050505092915050565b6129858161336d565b82525050565b60006129968261323f565b6129a08185613273565b93506129b08185602086016133de565b6129b981613614565b840191505092915050565b60006129cf8261324a565b6129d98185613284565b93506129e98185602086016133de565b6129f281613614565b840191505092915050565b6000612a088261324a565b612a128185613295565b9350612a228185602086016133de565b80840191505092915050565b60008154612a3b81613411565b612a458186613295565b94506001821660008114612a605760018114612a7157612aa4565b60ff19831686528186019350612aa4565b612a7a8561321f565b60005b83811015612a9c57815481890152600182019150602081019050612a7d565b838801955050505b50505092915050565b6000612aba603483613284565b9150612ac582613632565b604082019050919050565b6000612add602883613284565b9150612ae882613681565b604082019050919050565b6000612b00602483613284565b9150612b0b826136d0565b604082019050919050565b6000612b23602b83613284565b9150612b2e8261371f565b604082019050919050565b6000612b46602683613284565b9150612b518261376e565b604082019050919050565b6000612b69602483613284565b9150612b74826137bd565b604082019050919050565b6000612b8c602983613284565b9150612b978261380c565b604082019050919050565b6000612baf602583613284565b9150612bba8261385b565b604082019050919050565b6000612bd2603283613284565b9150612bdd826138aa565b604082019050919050565b6000612bf5602383613284565b9150612c00826138f9565b604082019050919050565b6000612c18602a83613284565b9150612c2382613948565b604082019050919050565b6000612c3b602083613284565b9150612c4682613997565b602082019050919050565b6000612c5e602983613284565b9150612c69826139c0565b604082019050919050565b6000612c81602983613284565b9150612c8c82613a0f565b604082019050919050565b6000612ca4601683613284565b9150612caf82613a5e565b602082019050919050565b6000612cc7602883613284565b9150612cd282613a87565b604082019050919050565b6000612cea602183613284565b9150612cf582613ad6565b604082019050919050565b612d09816133c5565b82525050565b612d18816133c5565b82525050565b6000612d2a8284612a2e565b915081905092915050565b6000612d418285612a2e565b9150612d4d82846129fd565b91508190509392505050565b6000602082019050612d6e600083018461290f565b92915050565b600060a082019050612d89600083018861290f565b612d96602083018761290f565b8181036040830152612da8818661291e565b90508181036060830152612dbc818561291e565b90508181036080830152612dd0818461298b565b90509695505050505050565b600060a082019050612df1600083018861290f565b612dfe602083018761290f565b612e0b6040830186612d0f565b612e186060830185612d0f565b8181036080830152612e2a818461298b565b90509695505050505050565b60006020820190508181036000830152612e50818461291e565b905092915050565b60006040820190508181036000830152612e72818561291e565b90508181036020830152612e86818461291e565b90509392505050565b6000602082019050612ea4600083018461297c565b92915050565b60006020820190508181036000830152612ec481846129c4565b905092915050565b60006020820190508181036000830152612ee581612aad565b9050919050565b60006020820190508181036000830152612f0581612ad0565b9050919050565b60006020820190508181036000830152612f2581612af3565b9050919050565b60006020820190508181036000830152612f4581612b16565b9050919050565b60006020820190508181036000830152612f6581612b39565b9050919050565b60006020820190508181036000830152612f8581612b5c565b9050919050565b60006020820190508181036000830152612fa581612b7f565b9050919050565b60006020820190508181036000830152612fc581612ba2565b9050919050565b60006020820190508181036000830152612fe581612bc5565b9050919050565b6000602082019050818103600083015261300581612be8565b9050919050565b6000602082019050818103600083015261302581612c0b565b9050919050565b6000602082019050818103600083015261304581612c2e565b9050919050565b6000602082019050818103600083015261306581612c51565b9050919050565b6000602082019050818103600083015261308581612c74565b9050919050565b600060208201905081810360008301526130a581612c97565b9050919050565b600060208201905081810360008301526130c581612cba565b9050919050565b600060208201905081810360008301526130e581612cdd565b9050919050565b60006020820190506131016000830184612d0f565b92915050565b600060408201905061311c6000830185612d0f565b6131296020830184612d0f565b9392505050565b600061313a61314b565b90506131468282613443565b919050565b6000604051905090565b600067ffffffffffffffff8211156131705761316f6135aa565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561319c5761319b6135aa565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156131c8576131c76135aa565b5b6131d182613614565b9050602081019050919050565b600067ffffffffffffffff8211156131f9576131f86135aa565b5b61320282613614565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132ab826133c5565b91506132b6836133c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132eb576132ea6134ee565b5b828201905092915050565b6000613301826133c5565b915061330c836133c5565b92508261331c5761331b61351d565b5b828204905092915050565b6000613332826133c5565b915061333d836133c5565b9250828210156133505761334f6134ee565b5b828203905092915050565b6000613366826133a5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133fc5780820151818401526020810190506133e1565b8381111561340b576000848401525b50505050565b6000600282049050600182168061342957607f821691505b6020821081141561343d5761343c61354c565b5b50919050565b61344c82613614565b810181811067ffffffffffffffff8211171561346b5761346a6135aa565b5b80604052505050565b600061347f826133c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134b2576134b16134ee565b5b600182019050919050565b60006134c8826133c5565b91506134d3836133c5565b9250826134e3576134e261351d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156135f85760046000803e6135f5600051613625565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5552492072657175657374656420666f7220696e76616c696420736572756d2060008201527f7479706500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206275726e6572206164647265737300000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613b3557613bb8565b613b3d61314b565b60043d036004823e80513d602482011167ffffffffffffffff82111715613b65575050613bb8565b808201805167ffffffffffffffff811115613b835750505050613bb8565b80602083010160043d038501811115613ba0575050505050613bb8565b613baf82602001850186613443565b82955050505050505b90565b613bc48161335b565b8114613bcf57600080fd5b50565b613bdb8161336d565b8114613be657600080fd5b50565b613bf281613379565b8114613bfd57600080fd5b50565b613c09816133c5565b8114613c1457600080fd5b5056fea2646970667358221220ad4e8b25b25cc1577e49f5737e2d84999c5f26ac8361332aea0943f28f6d940964736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d647441524c5550516571587256634e7a5175527172395543466f46766e37365839636454637a7434767166772f00000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmdtARLUPQeqXrVcNzQuRqr9UCFoFvn76X9cdTczt4vqfw/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d647441524c5550516571587256634e7a51755271723955
Arg [3] : 43466f46766e37365839636454637a7434767166772f00000000000000000000
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.