Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
Asset
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@imtbl/imx-contracts/contracts/Mintable.sol"; contract Asset is ERC721, Mintable { constructor( address _owner, string memory _name, string memory _symbol, address _imx ) ERC721(_name, _symbol) Mintable(_owner, _imx) {} function _mintFor( address user, uint256 id, bytes memory ) internal override { _safeMint(user, id); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IMintable { function mintFor( address to, uint256 id, bytes calldata blueprint ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IMintable.sol"; import "./utils/Minting.sol"; abstract contract Mintable is Ownable, IMintable { address public imx; mapping(uint256 => bytes) public blueprints; event AssetMinted(address to, uint256 id, bytes blueprint); constructor(address _owner, address _imx) { imx = _imx; require(_owner != address(0), "Owner must not be empty"); transferOwnership(_owner); } modifier onlyIMX() { require(msg.sender == imx, "Function can only be called by IMX"); _; } function mintFor( address user, uint256 quantity, bytes calldata mintingBlob ) external override onlyIMX { require(quantity == 1, "Mintable: invalid quantity"); (uint256 id, bytes memory blueprint) = Minting.split(mintingBlob); _mintFor(user, id, blueprint); blueprints[id] = blueprint; emit AssetMinted(user, id, blueprint); } function _mintFor( address to, uint256 id, bytes memory blueprint ) internal virtual; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; library Bytes { /** * @dev Converts a `uint256` to a `string`. * via OraclizeAPI - MIT licence * https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol */ function fromUint(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + (temp % 10))); temp /= 10; } return string(buffer); } bytes constant alphabet = "0123456789abcdef"; /** * Index Of * * Locates and returns the position of a character within a string starting * from a defined offset * * @param _base When being used for a data type this is the extended object * otherwise this is the string acting as the haystack to be * searched * @param _value The needle to search for, at present this is currently * limited to one character * @param _offset The starting point to start searching from which can start * from 0, but must not exceed the length of the string * @return int The position of the needle starting from 0 and returning -1 * in the case of no matches found */ function indexOf( bytes memory _base, string memory _value, uint256 _offset ) internal pure returns (int256) { bytes memory _valueBytes = bytes(_value); assert(_valueBytes.length == 1); for (uint256 i = _offset; i < _base.length; i++) { if (_base[i] == _valueBytes[0]) { return int256(i); } } return -1; } function substring( bytes memory strBytes, uint256 startIndex, uint256 endIndex ) internal pure returns (string memory) { bytes memory result = new bytes(endIndex - startIndex); for (uint256 i = startIndex; i < endIndex; i++) { result[i - startIndex] = strBytes[i]; } return string(result); } function toUint(bytes memory b) internal pure returns (uint256) { uint256 result = 0; for (uint256 i = 0; i < b.length; i++) { uint256 val = uint256(uint8(b[i])); if (val >= 48 && val <= 57) { result = result * 10 + (val - 48); } } return result; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./Bytes.sol"; library Minting { // Split the minting blob into token_id and blueprint portions // {token_id}:{blueprint} function split(bytes calldata blob) internal pure returns (uint256, bytes memory) { int256 index = Bytes.indexOf(blob, ":", 0); require(index >= 0, "Separator must exist"); // Trim the { and } from the parameters uint256 tokenID = Bytes.toUint(blob[1:uint256(index) - 1]); uint256 blueprintLength = blob.length - uint256(index) - 3; if (blueprintLength == 0) { return (tokenID, bytes("")); } bytes calldata blueprint = blob[uint256(index) + 2:blob.length - 1]; return (tokenID, blueprint); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_imx","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"blueprint","type":"bytes"}],"name":"AssetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blueprints","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imx","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"mintingBlob","type":"bytes"}],"name":"mintFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003def38038062003def8339818101604052810190620000379190620004a7565b838184848160009080519060200190620000539291906200036e565b5080600190805190602001906200006c9291906200036e565b5050506200008f620000836200016060201b60201c565b6200016860201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000143576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013a90620005dc565b60405180910390fd5b62000154826200022e60201b60201c565b50505050505062000890565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023e6200016060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002646200034460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b490620005fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000330576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032790620005ba565b60405180910390fd5b62000341816200016860201b60201c565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037c90620006fa565b90600052602060002090601f016020900481019282620003a05760008555620003ec565b82601f10620003bb57805160ff1916838001178555620003ec565b82800160010185558215620003ec579182015b82811115620003eb578251825591602001919060010190620003ce565b5b509050620003fb9190620003ff565b5090565b5b808211156200041a57600081600090555060010162000400565b5090565b6000620004356200042f8462000649565b62000620565b9050828152602081018484840111156200044e57600080fd5b6200045b848285620006c4565b509392505050565b600081519050620004748162000876565b92915050565b600082601f8301126200048c57600080fd5b81516200049e8482602086016200041e565b91505092915050565b60008060008060808587031215620004be57600080fd5b6000620004ce8782880162000463565b945050602085015167ffffffffffffffff811115620004ec57600080fd5b620004fa878288016200047a565b935050604085015167ffffffffffffffff8111156200051857600080fd5b62000526878288016200047a565b9250506060620005398782880162000463565b91505092959194509250565b6000620005546026836200067f565b91506200056182620007d5565b604082019050919050565b60006200057b6017836200067f565b9150620005888262000824565b602082019050919050565b6000620005a26020836200067f565b9150620005af826200084d565b602082019050919050565b60006020820190508181036000830152620005d58162000545565b9050919050565b60006020820190508181036000830152620005f7816200056c565b9050919050565b60006020820190508181036000830152620006198162000593565b9050919050565b60006200062c6200063f565b90506200063a828262000730565b919050565b6000604051905090565b600067ffffffffffffffff82111562000667576200066662000795565b5b6200067282620007c4565b9050602081019050919050565b600082825260208201905092915050565b60006200069d82620006a4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620006e4578082015181840152602081019050620006c7565b83811115620006f4576000848401525b50505050565b600060028204905060018216806200071357607f821691505b602082108114156200072a576200072962000766565b5b50919050565b6200073b82620007c4565b810181811067ffffffffffffffff821117156200075d576200075c62000795565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e6572206d757374206e6f7420626520656d707479000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620008818162000690565b81146200088d57600080fd5b50565b61354f80620008a06000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806366bf33be116100ad578063a22cb46511610071578063a22cb46514610308578063b88d4fde14610324578063c87b56dd14610340578063e985e9c514610370578063f2fde38b146103a057610121565b806366bf33be1461026257806370a0823114610292578063715018a6146102c25780638da5cb5b146102cc57806395d89b41146102ea57610121565b80630f08025f116100f45780630f08025f146101c057806319ee6e3f146101de57806323b872dd146101fa57806342842e0e146102165780636352211e1461023257610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b91906123fc565b6103bc565b60405161014d91906128a9565b60405180910390f35b61015e61049e565b60405161016b91906128e6565b60405180910390f35b61018e6004803603810190610189919061244e565b610530565b60405161019b9190612804565b60405180910390f35b6101be60048036038101906101b99190612354565b6105b5565b005b6101c86106cd565b6040516101d59190612804565b60405180910390f35b6101f860048036038101906101f39190612390565b6106f3565b005b610214600480360381019061020f919061224e565b61084d565b005b610230600480360381019061022b919061224e565b6108ad565b005b61024c6004803603810190610247919061244e565b6108cd565b6040516102599190612804565b60405180910390f35b61027c6004803603810190610277919061244e565b61097f565b60405161028991906128c4565b60405180910390f35b6102ac60048036038101906102a791906121e9565b610a1f565b6040516102b99190612b68565b60405180910390f35b6102ca610ad7565b005b6102d4610b5f565b6040516102e19190612804565b60405180910390f35b6102f2610b89565b6040516102ff91906128e6565b60405180910390f35b610322600480360381019061031d9190612318565b610c1b565b005b61033e6004803603810190610339919061229d565b610c31565b005b61035a6004803603810190610355919061244e565b610c93565b60405161036791906128e6565b60405180910390f35b61038a60048036038101906103859190612212565b610d3a565b60405161039791906128a9565b60405180910390f35b6103ba60048036038101906103b591906121e9565b610dce565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061048757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610497575061049682610ec6565b5b9050919050565b6060600080546104ad90612e1a565b80601f01602080910402602001604051908101604052809291908181526020018280546104d990612e1a565b80156105265780601f106104fb57610100808354040283529160200191610526565b820191906000526020600020905b81548152906001019060200180831161050957829003601f168201915b5050505050905090565b600061053b82610f30565b61057a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057190612a88565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105c0826108cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062890612b08565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610650610f9c565b73ffffffffffffffffffffffffffffffffffffffff16148061067f575061067e81610679610f9c565b610d3a565b5b6106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b590612a08565b60405180910390fd5b6106c88383610fa4565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90612908565b60405180910390fd5b600183146107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd906129c8565b60405180910390fd5b6000806107d3848461105d565b915091506107e2868383611272565b8060086000848152602001908152602001600020908051906020019061080992919061202b565b507f31e594f6b36b98ec520a91cbbba7b8724b1cec27393f86d8f0f6aa6084db0aaf86838360405161083d9392919061286b565b60405180910390a1505050505050565b61085e610858610f9c565b82611281565b61089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490612b48565b60405180910390fd5b6108a883838361135f565b505050565b6108c883838360405180602001604052806000815250610c31565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612a48565b60405180910390fd5b80915050919050565b6008602052806000526040600020600091509050805461099e90612e1a565b80601f01602080910402602001604051908101604052809291908181526020018280546109ca90612e1a565b8015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612a28565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610adf610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610afd610b5f565b73ffffffffffffffffffffffffffffffffffffffff1614610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90612aa8565b60405180910390fd5b610b5d60006115bb565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b9890612e1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc490612e1a565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b5050505050905090565b610c2d610c26610f9c565b8383611681565b5050565b610c42610c3c610f9c565b83611281565b610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890612b48565b60405180910390fd5b610c8d848484846117ee565b50505050565b6060610c9e82610f30565b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490612ae8565b60405180910390fd5b6000610ce761184a565b90506000815111610d075760405180602001604052806000815250610d32565b80610d1184611861565b604051602001610d229291906127e0565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610dd6610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610df4610b5f565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190612aa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612948565b60405180910390fd5b610ec3816115bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611017836108cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000606060006110e885858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506040518060400160405280600181526020017f3a000000000000000000000000000000000000000000000000000000000000008152506000611a0e565b9050600081121561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612b28565b60405180910390fd5b600061119a86866001906001866111459190612d30565b9261115293929190612c1c565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611b78565b90506000600383888890506111af9190612d30565b6111b99190612d30565b905060008114156111e15781604051806020016040528060008152509450945050505061126b565b36600088886002876111f39190612c4f565b9060018c8c90506112049190612d30565b9261121193929190612c1c565b9150915083828281818080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050905090509650965050505050505b9250929050565b61127c8383611c35565b505050565b600061128c82610f30565b6112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c2906129e8565b60405180910390fd5b60006112d6836108cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061134557508373ffffffffffffffffffffffffffffffffffffffff1661132d84610530565b73ffffffffffffffffffffffffffffffffffffffff16145b8061135657506113558185610d3a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661137f826108cd565b73ffffffffffffffffffffffffffffffffffffffff16146113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90612ac8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c90612988565b60405180910390fd5b611450838383611c53565b61145b600082610fa4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ab9190612d30565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115029190612c4f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906129a8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e191906128a9565b60405180910390a3505050565b6117f984848461135f565b61180584848484611c58565b611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90612928565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606060008214156118a9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a09565b600082905060005b600082146118db5780806118c490612e7d565b915050600a826118d49190612ca5565b91506118b1565b60008167ffffffffffffffff81111561191d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561194f5781602001600182028036833780820191505090505b5090505b60008514611a02576001826119689190612d30565b9150600a856119779190612ec6565b60306119839190612c4f565b60f81b8183815181106119bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119fb9190612ca5565b9450611953565b8093505050505b919050565b6000808390506001815114611a4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b60008390505b8551811015611b4b5781600081518110611a95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916868281518110611afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611b38578092505050611b71565b8080611b4390612e7d565b915050611a52565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9150505b9392505050565b6000806000905060005b8351811015611c2b576000848281518110611bc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16905060308110158015611beb575060398111155b15611c1757603081611bfd9190612d30565b600a84611c0a9190612cd6565b611c149190612c4f565b92505b508080611c2390612e7d565b915050611b82565b5080915050919050565b611c4f828260405180602001604052806000815250611def565b5050565b505050565b6000611c798473ffffffffffffffffffffffffffffffffffffffff16611e4a565b15611de2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ca2610f9c565b8786866040518563ffffffff1660e01b8152600401611cc4949392919061281f565b602060405180830381600087803b158015611cde57600080fd5b505af1925050508015611d0f57506040513d601f19601f82011682018060405250810190611d0c9190612425565b60015b611d92573d8060008114611d3f576040519150601f19603f3d011682016040523d82523d6000602084013e611d44565b606091505b50600081511415611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190612928565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611de7565b600190505b949350505050565b611df98383611e5d565b611e066000848484611c58565b611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c90612928565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490612a68565b60405180910390fd5b611ed681610f30565b15611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90612968565b60405180910390fd5b611f2260008383611c53565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f729190612c4f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461203790612e1a565b90600052602060002090601f01602090048101928261205957600085556120a0565b82601f1061207257805160ff19168380011785556120a0565b828001600101855582156120a0579182015b8281111561209f578251825591602001919060010190612084565b5b5090506120ad91906120b1565b5090565b5b808211156120ca5760008160009055506001016120b2565b5090565b60006120e16120dc84612ba8565b612b83565b9050828152602081018484840111156120f957600080fd5b612104848285612dd8565b509392505050565b60008135905061211b816134bd565b92915050565b600081359050612130816134d4565b92915050565b600081359050612145816134eb565b92915050565b60008151905061215a816134eb565b92915050565b60008083601f84011261217257600080fd5b8235905067ffffffffffffffff81111561218b57600080fd5b6020830191508360018202830111156121a357600080fd5b9250929050565b600082601f8301126121bb57600080fd5b81356121cb8482602086016120ce565b91505092915050565b6000813590506121e381613502565b92915050565b6000602082840312156121fb57600080fd5b60006122098482850161210c565b91505092915050565b6000806040838503121561222557600080fd5b60006122338582860161210c565b92505060206122448582860161210c565b9150509250929050565b60008060006060848603121561226357600080fd5b60006122718682870161210c565b93505060206122828682870161210c565b9250506040612293868287016121d4565b9150509250925092565b600080600080608085870312156122b357600080fd5b60006122c18782880161210c565b94505060206122d28782880161210c565b93505060406122e3878288016121d4565b925050606085013567ffffffffffffffff81111561230057600080fd5b61230c878288016121aa565b91505092959194509250565b6000806040838503121561232b57600080fd5b60006123398582860161210c565b925050602061234a85828601612121565b9150509250929050565b6000806040838503121561236757600080fd5b60006123758582860161210c565b9250506020612386858286016121d4565b9150509250929050565b600080600080606085870312156123a657600080fd5b60006123b48782880161210c565b94505060206123c5878288016121d4565b935050604085013567ffffffffffffffff8111156123e257600080fd5b6123ee87828801612160565b925092505092959194509250565b60006020828403121561240e57600080fd5b600061241c84828501612136565b91505092915050565b60006020828403121561243757600080fd5b60006124458482850161214b565b91505092915050565b60006020828403121561246057600080fd5b600061246e848285016121d4565b91505092915050565b61248081612d64565b82525050565b61248f81612d76565b82525050565b60006124a082612bd9565b6124aa8185612bef565b93506124ba818560208601612de7565b6124c381612fb3565b840191505092915050565b60006124d982612be4565b6124e38185612c00565b93506124f3818560208601612de7565b6124fc81612fb3565b840191505092915050565b600061251282612be4565b61251c8185612c11565b935061252c818560208601612de7565b80840191505092915050565b6000612545602283612c00565b915061255082612fc4565b604082019050919050565b6000612568603283612c00565b915061257382613013565b604082019050919050565b600061258b602683612c00565b915061259682613062565b604082019050919050565b60006125ae601c83612c00565b91506125b9826130b1565b602082019050919050565b60006125d1602483612c00565b91506125dc826130da565b604082019050919050565b60006125f4601983612c00565b91506125ff82613129565b602082019050919050565b6000612617601a83612c00565b915061262282613152565b602082019050919050565b600061263a602c83612c00565b91506126458261317b565b604082019050919050565b600061265d603883612c00565b9150612668826131ca565b604082019050919050565b6000612680602a83612c00565b915061268b82613219565b604082019050919050565b60006126a3602983612c00565b91506126ae82613268565b604082019050919050565b60006126c6602083612c00565b91506126d1826132b7565b602082019050919050565b60006126e9602c83612c00565b91506126f4826132e0565b604082019050919050565b600061270c602083612c00565b91506127178261332f565b602082019050919050565b600061272f602983612c00565b915061273a82613358565b604082019050919050565b6000612752602f83612c00565b915061275d826133a7565b604082019050919050565b6000612775602183612c00565b9150612780826133f6565b604082019050919050565b6000612798601483612c00565b91506127a382613445565b602082019050919050565b60006127bb603183612c00565b91506127c68261346e565b604082019050919050565b6127da81612dce565b82525050565b60006127ec8285612507565b91506127f88284612507565b91508190509392505050565b60006020820190506128196000830184612477565b92915050565b60006080820190506128346000830187612477565b6128416020830186612477565b61284e60408301856127d1565b81810360608301526128608184612495565b905095945050505050565b60006060820190506128806000830186612477565b61288d60208301856127d1565b818103604083015261289f8184612495565b9050949350505050565b60006020820190506128be6000830184612486565b92915050565b600060208201905081810360008301526128de8184612495565b905092915050565b6000602082019050818103600083015261290081846124ce565b905092915050565b6000602082019050818103600083015261292181612538565b9050919050565b600060208201905081810360008301526129418161255b565b9050919050565b600060208201905081810360008301526129618161257e565b9050919050565b60006020820190508181036000830152612981816125a1565b9050919050565b600060208201905081810360008301526129a1816125c4565b9050919050565b600060208201905081810360008301526129c1816125e7565b9050919050565b600060208201905081810360008301526129e18161260a565b9050919050565b60006020820190508181036000830152612a018161262d565b9050919050565b60006020820190508181036000830152612a2181612650565b9050919050565b60006020820190508181036000830152612a4181612673565b9050919050565b60006020820190508181036000830152612a6181612696565b9050919050565b60006020820190508181036000830152612a81816126b9565b9050919050565b60006020820190508181036000830152612aa1816126dc565b9050919050565b60006020820190508181036000830152612ac1816126ff565b9050919050565b60006020820190508181036000830152612ae181612722565b9050919050565b60006020820190508181036000830152612b0181612745565b9050919050565b60006020820190508181036000830152612b2181612768565b9050919050565b60006020820190508181036000830152612b418161278b565b9050919050565b60006020820190508181036000830152612b61816127ae565b9050919050565b6000602082019050612b7d60008301846127d1565b92915050565b6000612b8d612b9e565b9050612b998282612e4c565b919050565b6000604051905090565b600067ffffffffffffffff821115612bc357612bc2612f84565b5b612bcc82612fb3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60008085851115612c2c57600080fd5b83861115612c3957600080fd5b6001850283019150848603905094509492505050565b6000612c5a82612dce565b9150612c6583612dce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c9a57612c99612ef7565b5b828201905092915050565b6000612cb082612dce565b9150612cbb83612dce565b925082612ccb57612cca612f26565b5b828204905092915050565b6000612ce182612dce565b9150612cec83612dce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2557612d24612ef7565b5b828202905092915050565b6000612d3b82612dce565b9150612d4683612dce565b925082821015612d5957612d58612ef7565b5b828203905092915050565b6000612d6f82612dae565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e05578082015181840152602081019050612dea565b83811115612e14576000848401525b50505050565b60006002820490506001821680612e3257607f821691505b60208210811415612e4657612e45612f55565b5b50919050565b612e5582612fb3565b810181811067ffffffffffffffff82111715612e7457612e73612f84565b5b80604052505050565b6000612e8882612dce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ebb57612eba612ef7565b5b600182019050919050565b6000612ed182612dce565b9150612edc83612dce565b925082612eec57612eeb612f26565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f46756e6374696f6e2063616e206f6e6c792062652063616c6c6564206279204960008201527f4d58000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e7461626c653a20696e76616c6964207175616e74697479000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f536570617261746f72206d757374206578697374000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6134c681612d64565b81146134d157600080fd5b50565b6134dd81612d76565b81146134e857600080fd5b50565b6134f481612d82565b81146134ff57600080fd5b50565b61350b81612dce565b811461351657600080fd5b5056fea26469706673582212207f1aab38ff6f1872d47867fb04fa38a45d3362bf1180ed3fba16cd37c01ced3064736f6c63430008040033000000000000000000000000f197dfb50039577d4efdd3e4eb370e91e5083aef000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000005fdcca53617f4d2b9134b29090c87d01058e27e9000000000000000000000000000000000000000000000000000000000000000f494745204d79737465727920426f78000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054947456d62000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806366bf33be116100ad578063a22cb46511610071578063a22cb46514610308578063b88d4fde14610324578063c87b56dd14610340578063e985e9c514610370578063f2fde38b146103a057610121565b806366bf33be1461026257806370a0823114610292578063715018a6146102c25780638da5cb5b146102cc57806395d89b41146102ea57610121565b80630f08025f116100f45780630f08025f146101c057806319ee6e3f146101de57806323b872dd146101fa57806342842e0e146102165780636352211e1461023257610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b91906123fc565b6103bc565b60405161014d91906128a9565b60405180910390f35b61015e61049e565b60405161016b91906128e6565b60405180910390f35b61018e6004803603810190610189919061244e565b610530565b60405161019b9190612804565b60405180910390f35b6101be60048036038101906101b99190612354565b6105b5565b005b6101c86106cd565b6040516101d59190612804565b60405180910390f35b6101f860048036038101906101f39190612390565b6106f3565b005b610214600480360381019061020f919061224e565b61084d565b005b610230600480360381019061022b919061224e565b6108ad565b005b61024c6004803603810190610247919061244e565b6108cd565b6040516102599190612804565b60405180910390f35b61027c6004803603810190610277919061244e565b61097f565b60405161028991906128c4565b60405180910390f35b6102ac60048036038101906102a791906121e9565b610a1f565b6040516102b99190612b68565b60405180910390f35b6102ca610ad7565b005b6102d4610b5f565b6040516102e19190612804565b60405180910390f35b6102f2610b89565b6040516102ff91906128e6565b60405180910390f35b610322600480360381019061031d9190612318565b610c1b565b005b61033e6004803603810190610339919061229d565b610c31565b005b61035a6004803603810190610355919061244e565b610c93565b60405161036791906128e6565b60405180910390f35b61038a60048036038101906103859190612212565b610d3a565b60405161039791906128a9565b60405180910390f35b6103ba60048036038101906103b591906121e9565b610dce565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061048757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610497575061049682610ec6565b5b9050919050565b6060600080546104ad90612e1a565b80601f01602080910402602001604051908101604052809291908181526020018280546104d990612e1a565b80156105265780601f106104fb57610100808354040283529160200191610526565b820191906000526020600020905b81548152906001019060200180831161050957829003601f168201915b5050505050905090565b600061053b82610f30565b61057a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057190612a88565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105c0826108cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062890612b08565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610650610f9c565b73ffffffffffffffffffffffffffffffffffffffff16148061067f575061067e81610679610f9c565b610d3a565b5b6106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b590612a08565b60405180910390fd5b6106c88383610fa4565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90612908565b60405180910390fd5b600183146107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd906129c8565b60405180910390fd5b6000806107d3848461105d565b915091506107e2868383611272565b8060086000848152602001908152602001600020908051906020019061080992919061202b565b507f31e594f6b36b98ec520a91cbbba7b8724b1cec27393f86d8f0f6aa6084db0aaf86838360405161083d9392919061286b565b60405180910390a1505050505050565b61085e610858610f9c565b82611281565b61089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490612b48565b60405180910390fd5b6108a883838361135f565b505050565b6108c883838360405180602001604052806000815250610c31565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90612a48565b60405180910390fd5b80915050919050565b6008602052806000526040600020600091509050805461099e90612e1a565b80601f01602080910402602001604051908101604052809291908181526020018280546109ca90612e1a565b8015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612a28565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610adf610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610afd610b5f565b73ffffffffffffffffffffffffffffffffffffffff1614610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90612aa8565b60405180910390fd5b610b5d60006115bb565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b9890612e1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc490612e1a565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b5050505050905090565b610c2d610c26610f9c565b8383611681565b5050565b610c42610c3c610f9c565b83611281565b610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890612b48565b60405180910390fd5b610c8d848484846117ee565b50505050565b6060610c9e82610f30565b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490612ae8565b60405180910390fd5b6000610ce761184a565b90506000815111610d075760405180602001604052806000815250610d32565b80610d1184611861565b604051602001610d229291906127e0565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610dd6610f9c565b73ffffffffffffffffffffffffffffffffffffffff16610df4610b5f565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190612aa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612948565b60405180910390fd5b610ec3816115bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611017836108cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000606060006110e885858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506040518060400160405280600181526020017f3a000000000000000000000000000000000000000000000000000000000000008152506000611a0e565b9050600081121561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612b28565b60405180910390fd5b600061119a86866001906001866111459190612d30565b9261115293929190612c1c565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611b78565b90506000600383888890506111af9190612d30565b6111b99190612d30565b905060008114156111e15781604051806020016040528060008152509450945050505061126b565b36600088886002876111f39190612c4f565b9060018c8c90506112049190612d30565b9261121193929190612c1c565b9150915083828281818080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050905090509650965050505050505b9250929050565b61127c8383611c35565b505050565b600061128c82610f30565b6112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c2906129e8565b60405180910390fd5b60006112d6836108cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061134557508373ffffffffffffffffffffffffffffffffffffffff1661132d84610530565b73ffffffffffffffffffffffffffffffffffffffff16145b8061135657506113558185610d3a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661137f826108cd565b73ffffffffffffffffffffffffffffffffffffffff16146113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90612ac8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143c90612988565b60405180910390fd5b611450838383611c53565b61145b600082610fa4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ab9190612d30565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115029190612c4f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e7906129a8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117e191906128a9565b60405180910390a3505050565b6117f984848461135f565b61180584848484611c58565b611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90612928565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606060008214156118a9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a09565b600082905060005b600082146118db5780806118c490612e7d565b915050600a826118d49190612ca5565b91506118b1565b60008167ffffffffffffffff81111561191d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561194f5781602001600182028036833780820191505090505b5090505b60008514611a02576001826119689190612d30565b9150600a856119779190612ec6565b60306119839190612c4f565b60f81b8183815181106119bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856119fb9190612ca5565b9450611953565b8093505050505b919050565b6000808390506001815114611a4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b60008390505b8551811015611b4b5781600081518110611a95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916868281518110611afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611b38578092505050611b71565b8080611b4390612e7d565b915050611a52565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9150505b9392505050565b6000806000905060005b8351811015611c2b576000848281518110611bc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff16905060308110158015611beb575060398111155b15611c1757603081611bfd9190612d30565b600a84611c0a9190612cd6565b611c149190612c4f565b92505b508080611c2390612e7d565b915050611b82565b5080915050919050565b611c4f828260405180602001604052806000815250611def565b5050565b505050565b6000611c798473ffffffffffffffffffffffffffffffffffffffff16611e4a565b15611de2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ca2610f9c565b8786866040518563ffffffff1660e01b8152600401611cc4949392919061281f565b602060405180830381600087803b158015611cde57600080fd5b505af1925050508015611d0f57506040513d601f19601f82011682018060405250810190611d0c9190612425565b60015b611d92573d8060008114611d3f576040519150601f19603f3d011682016040523d82523d6000602084013e611d44565b606091505b50600081511415611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190612928565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611de7565b600190505b949350505050565b611df98383611e5d565b611e066000848484611c58565b611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c90612928565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490612a68565b60405180910390fd5b611ed681610f30565b15611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90612968565b60405180910390fd5b611f2260008383611c53565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f729190612c4f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461203790612e1a565b90600052602060002090601f01602090048101928261205957600085556120a0565b82601f1061207257805160ff19168380011785556120a0565b828001600101855582156120a0579182015b8281111561209f578251825591602001919060010190612084565b5b5090506120ad91906120b1565b5090565b5b808211156120ca5760008160009055506001016120b2565b5090565b60006120e16120dc84612ba8565b612b83565b9050828152602081018484840111156120f957600080fd5b612104848285612dd8565b509392505050565b60008135905061211b816134bd565b92915050565b600081359050612130816134d4565b92915050565b600081359050612145816134eb565b92915050565b60008151905061215a816134eb565b92915050565b60008083601f84011261217257600080fd5b8235905067ffffffffffffffff81111561218b57600080fd5b6020830191508360018202830111156121a357600080fd5b9250929050565b600082601f8301126121bb57600080fd5b81356121cb8482602086016120ce565b91505092915050565b6000813590506121e381613502565b92915050565b6000602082840312156121fb57600080fd5b60006122098482850161210c565b91505092915050565b6000806040838503121561222557600080fd5b60006122338582860161210c565b92505060206122448582860161210c565b9150509250929050565b60008060006060848603121561226357600080fd5b60006122718682870161210c565b93505060206122828682870161210c565b9250506040612293868287016121d4565b9150509250925092565b600080600080608085870312156122b357600080fd5b60006122c18782880161210c565b94505060206122d28782880161210c565b93505060406122e3878288016121d4565b925050606085013567ffffffffffffffff81111561230057600080fd5b61230c878288016121aa565b91505092959194509250565b6000806040838503121561232b57600080fd5b60006123398582860161210c565b925050602061234a85828601612121565b9150509250929050565b6000806040838503121561236757600080fd5b60006123758582860161210c565b9250506020612386858286016121d4565b9150509250929050565b600080600080606085870312156123a657600080fd5b60006123b48782880161210c565b94505060206123c5878288016121d4565b935050604085013567ffffffffffffffff8111156123e257600080fd5b6123ee87828801612160565b925092505092959194509250565b60006020828403121561240e57600080fd5b600061241c84828501612136565b91505092915050565b60006020828403121561243757600080fd5b60006124458482850161214b565b91505092915050565b60006020828403121561246057600080fd5b600061246e848285016121d4565b91505092915050565b61248081612d64565b82525050565b61248f81612d76565b82525050565b60006124a082612bd9565b6124aa8185612bef565b93506124ba818560208601612de7565b6124c381612fb3565b840191505092915050565b60006124d982612be4565b6124e38185612c00565b93506124f3818560208601612de7565b6124fc81612fb3565b840191505092915050565b600061251282612be4565b61251c8185612c11565b935061252c818560208601612de7565b80840191505092915050565b6000612545602283612c00565b915061255082612fc4565b604082019050919050565b6000612568603283612c00565b915061257382613013565b604082019050919050565b600061258b602683612c00565b915061259682613062565b604082019050919050565b60006125ae601c83612c00565b91506125b9826130b1565b602082019050919050565b60006125d1602483612c00565b91506125dc826130da565b604082019050919050565b60006125f4601983612c00565b91506125ff82613129565b602082019050919050565b6000612617601a83612c00565b915061262282613152565b602082019050919050565b600061263a602c83612c00565b91506126458261317b565b604082019050919050565b600061265d603883612c00565b9150612668826131ca565b604082019050919050565b6000612680602a83612c00565b915061268b82613219565b604082019050919050565b60006126a3602983612c00565b91506126ae82613268565b604082019050919050565b60006126c6602083612c00565b91506126d1826132b7565b602082019050919050565b60006126e9602c83612c00565b91506126f4826132e0565b604082019050919050565b600061270c602083612c00565b91506127178261332f565b602082019050919050565b600061272f602983612c00565b915061273a82613358565b604082019050919050565b6000612752602f83612c00565b915061275d826133a7565b604082019050919050565b6000612775602183612c00565b9150612780826133f6565b604082019050919050565b6000612798601483612c00565b91506127a382613445565b602082019050919050565b60006127bb603183612c00565b91506127c68261346e565b604082019050919050565b6127da81612dce565b82525050565b60006127ec8285612507565b91506127f88284612507565b91508190509392505050565b60006020820190506128196000830184612477565b92915050565b60006080820190506128346000830187612477565b6128416020830186612477565b61284e60408301856127d1565b81810360608301526128608184612495565b905095945050505050565b60006060820190506128806000830186612477565b61288d60208301856127d1565b818103604083015261289f8184612495565b9050949350505050565b60006020820190506128be6000830184612486565b92915050565b600060208201905081810360008301526128de8184612495565b905092915050565b6000602082019050818103600083015261290081846124ce565b905092915050565b6000602082019050818103600083015261292181612538565b9050919050565b600060208201905081810360008301526129418161255b565b9050919050565b600060208201905081810360008301526129618161257e565b9050919050565b60006020820190508181036000830152612981816125a1565b9050919050565b600060208201905081810360008301526129a1816125c4565b9050919050565b600060208201905081810360008301526129c1816125e7565b9050919050565b600060208201905081810360008301526129e18161260a565b9050919050565b60006020820190508181036000830152612a018161262d565b9050919050565b60006020820190508181036000830152612a2181612650565b9050919050565b60006020820190508181036000830152612a4181612673565b9050919050565b60006020820190508181036000830152612a6181612696565b9050919050565b60006020820190508181036000830152612a81816126b9565b9050919050565b60006020820190508181036000830152612aa1816126dc565b9050919050565b60006020820190508181036000830152612ac1816126ff565b9050919050565b60006020820190508181036000830152612ae181612722565b9050919050565b60006020820190508181036000830152612b0181612745565b9050919050565b60006020820190508181036000830152612b2181612768565b9050919050565b60006020820190508181036000830152612b418161278b565b9050919050565b60006020820190508181036000830152612b61816127ae565b9050919050565b6000602082019050612b7d60008301846127d1565b92915050565b6000612b8d612b9e565b9050612b998282612e4c565b919050565b6000604051905090565b600067ffffffffffffffff821115612bc357612bc2612f84565b5b612bcc82612fb3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60008085851115612c2c57600080fd5b83861115612c3957600080fd5b6001850283019150848603905094509492505050565b6000612c5a82612dce565b9150612c6583612dce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c9a57612c99612ef7565b5b828201905092915050565b6000612cb082612dce565b9150612cbb83612dce565b925082612ccb57612cca612f26565b5b828204905092915050565b6000612ce182612dce565b9150612cec83612dce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2557612d24612ef7565b5b828202905092915050565b6000612d3b82612dce565b9150612d4683612dce565b925082821015612d5957612d58612ef7565b5b828203905092915050565b6000612d6f82612dae565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e05578082015181840152602081019050612dea565b83811115612e14576000848401525b50505050565b60006002820490506001821680612e3257607f821691505b60208210811415612e4657612e45612f55565b5b50919050565b612e5582612fb3565b810181811067ffffffffffffffff82111715612e7457612e73612f84565b5b80604052505050565b6000612e8882612dce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ebb57612eba612ef7565b5b600182019050919050565b6000612ed182612dce565b9150612edc83612dce565b925082612eec57612eeb612f26565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f46756e6374696f6e2063616e206f6e6c792062652063616c6c6564206279204960008201527f4d58000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e7461626c653a20696e76616c6964207175616e74697479000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f536570617261746f72206d757374206578697374000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6134c681612d64565b81146134d157600080fd5b50565b6134dd81612d76565b81146134e857600080fd5b50565b6134f481612d82565b81146134ff57600080fd5b50565b61350b81612dce565b811461351657600080fd5b5056fea26469706673582212207f1aab38ff6f1872d47867fb04fa38a45d3362bf1180ed3fba16cd37c01ced3064736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f197dfb50039577d4efdd3e4eb370e91e5083aef000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000005fdcca53617f4d2b9134b29090c87d01058e27e9000000000000000000000000000000000000000000000000000000000000000f494745204d79737465727920426f78000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054947456d62000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _owner (address): 0xF197dfB50039577d4EFDD3e4eB370e91E5083aeF
Arg [1] : _name (string): IGE Mystery Box
Arg [2] : _symbol (string): IGEmb
Arg [3] : _imx (address): 0x5FDCCA53617f4d2b9134B29090C87D01058e27e9
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000f197dfb50039577d4efdd3e4eb370e91e5083aef
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000005fdcca53617f4d2b9134b29090c87d01058e27e9
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 494745204d79737465727920426f780000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4947456d62000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.