ETH Price: $2,874.43 (-9.20%)
Gas: 13 Gwei

Contract

0x8A581f42d29eb933d25C02fC9C3862be0Aa9f066
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Set Approval For...200144502024-06-03 23:03:3531 days ago1717455815IN
0x8A581f42...e0Aa9f066
0 ETH0.000305576.61013222
Set Approval For...200085002024-06-03 3:06:1132 days ago1717383971IN
0x8A581f42...e0Aa9f066
0 ETH0.0008069117.45510574
Transfer From199580262024-05-27 1:48:3539 days ago1716774515IN
0x8A581f42...e0Aa9f066
0 ETH0.000265954.25596539
Set Approval For...188848112023-12-28 14:50:23189 days ago1703775023IN
0x8A581f42...e0Aa9f066
0 ETH0.00105943.55179596
Set Approval For...188314572023-12-21 3:05:47197 days ago1703127947IN
0x8A581f42...e0Aa9f066
0 ETH0.0017155437.11048085
Set Approval For...184616652023-10-30 8:04:35249 days ago1698653075IN
0x8A581f42...e0Aa9f066
0 ETH0.0007588216.41487598
Transfer From183561162023-10-15 13:36:59263 days ago1697377019IN
0x8A581f42...e0Aa9f066
0 ETH0.0004457.71373001
Transfer From181418452023-09-15 13:14:11293 days ago1694783651IN
0x8A581f42...e0Aa9f066
0 ETH0.0008349814.47368737
Transfer From181375822023-09-14 22:50:35294 days ago1694731835IN
0x8A581f42...e0Aa9f066
0 ETH0.0008236814.27779501
Transfer From181364812023-09-14 19:07:35294 days ago1694718455IN
0x8A581f42...e0Aa9f066
0 ETH0.0024286542.09843361
Transfer From181364062023-09-14 18:52:35294 days ago1694717555IN
0x8A581f42...e0Aa9f066
0 ETH0.0015711927.23512984
Safe Transfer Fr...181361422023-09-14 17:59:23294 days ago1694714363IN
0x8A581f42...e0Aa9f066
0 ETH0.0022245736.4475731
Safe Transfer Fr...181361142023-09-14 17:53:35294 days ago1694714015IN
0x8A581f42...e0Aa9f066
0 ETH0.0016133626.43345214
Transfer From181360302023-09-14 17:36:47294 days ago1694713007IN
0x8A581f42...e0Aa9f066
0 ETH0.0016562628.70966565
Set Approval For...180980552023-09-09 9:50:23299 days ago1694253023IN
0x8A581f42...e0Aa9f066
0 ETH0.0005296811.45820616
Set Approval For...180836592023-09-07 9:28:35301 days ago1694078915IN
0x8A581f42...e0Aa9f066
0 ETH0.0007051715.25439009
Set Mint Active180411842023-09-01 10:43:59307 days ago1693565039IN
0x8A581f42...e0Aa9f066
0 ETH0.0002809911.72216713
Mint179944222023-08-25 21:35:35314 days ago1692999335IN
0x8A581f42...e0Aa9f066
0 ETH0.0024327119.25532307
Transfer179943842023-08-25 21:27:59314 days ago1692998879IN
0x8A581f42...e0Aa9f066
0 ETH0.0003529416.77039812
Transfer179943412023-08-25 21:19:23314 days ago1692998363IN
0x8A581f42...e0Aa9f066
0 ETH0.0004304620.45341757
Mint179899282023-08-25 6:29:23315 days ago1692944963IN
0x8A581f42...e0Aa9f066
0 ETH0.0022616217.8993703
Mint178178192023-08-01 4:39:11339 days ago1690864751IN
0x8A581f42...e0Aa9f066
0 ETH0.0020831716.48710146
Mint178104332023-07-31 3:54:11340 days ago1690775651IN
0x8A581f42...e0Aa9f066
0 ETH0.0016684513.20608468
Set Approval For...178066862023-07-30 15:17:35340 days ago1690730255IN
0x8A581f42...e0Aa9f066
0 ETH0.0008256417.86024717
Mint178066782023-07-30 15:15:59340 days ago1690730159IN
0x8A581f42...e0Aa9f066
0 ETH0.0022730117.99127621
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SquadtsMinigun

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-06
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.0 (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);
    }
}


// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.0 (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);
            }
        }
    }
}


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.0 (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);
}


// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.0 (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);
}


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;

/**
 * @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;
    }
}


// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;

/**
 * @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;
}


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;

/**
 * @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);
}


// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;

/**
 * @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 {}
}


// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;

/**
 * @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);
    }
}


// File: contracts/SquadtsMinigun.sol
pragma solidity ^0.8.13;

contract SquadtsMinigun is ERC721, Ownable {
    using Strings for uint256;

    string private _baseTokenURI = "";
    bool public isMintActive = false;

    uint256 constant TOKEN_IDS_STARTS_AT = 1;
    uint256 constant TOKEN_MIN = 1;
    uint256 constant TOKEN_MAX = 500;
    uint256 tokenCount = 0;

    address constant contractAddress = 0xEEAF63F35B7c365AFf27015A9AA5d6e4b734962C;

    mapping(uint256 => bool) public tokenClaimed;
    mapping(address => bool) public walletClaimed;

    // add "baseURI" to our constructor
    constructor(
        string memory name,
        string memory symbol,
        string memory baseURI
    ) ERC721(name, symbol) {
        setBaseURI(baseURI);
    }

    // Getters & Setters
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    function setBaseURI(string memory value) public onlyOwner {
        _baseTokenURI = value;
    }
    function setMintActive(bool value) external onlyOwner {
        isMintActive = value;
    }
    function totalSupply() public view returns (uint256) {
        return tokenCount;
    }

    // Minting
    function mint(uint256 tokenId) external {
        require(isMintActive, "Minting is inactive");
        require(tokenId >= TOKEN_MIN, "Token is out of range");
        require(tokenId <= TOKEN_MAX, "Token is out of range");
        require(!tokenClaimed[tokenId], "Token already claimed");
        require(!walletClaimed[msg.sender], "Wallet already claimed");
        require(ERC721(contractAddress).ownerOf(tokenId) == msg.sender, "Wallet does not own token");
        uint256 supply = totalSupply();
        tokenClaimed[tokenId] = true;
        walletClaimed[msg.sender] = true;
        tokenCount += 1;
        _safeMint(msg.sender, TOKEN_IDS_STARTS_AT + supply);
    }

    // Withdraw
    function withdraw() external payable onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(msg.sender).call{value: balance}("");
        require(success, "Transfer failed");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","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":"string","name":"value","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMintActive","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":"","type":"uint256"}],"name":"tokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b9160079162000189565b506008805460ff1916905560006009553480156200003857600080fd5b50604051620020bd380380620020bd8339810160408190526200005b91620002fc565b8251839083906200007490600090602085019062000189565b5080516200008a90600190602084019062000189565b505050620000a7620000a1620000bb60201b60201c565b620000bf565b620000b28162000111565b505050620003c9565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200018590600790602084019062000189565b5050565b82805462000197906200038d565b90600052602060002090601f016020900481019282620001bb576000855562000206565b82601f10620001d657805160ff191683800117855562000206565b8280016001018555821562000206579182015b8281111562000206578251825591602001919060010190620001e9565b506200021492915062000218565b5090565b5b8082111562000214576000815560010162000219565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025757600080fd5b81516001600160401b03808211156200027457620002746200022f565b604051601f8301601f19908116603f011681019082821181831017156200029f576200029f6200022f565b81604052838152602092508683858801011115620002bc57600080fd5b600091505b83821015620002e05785820183015181830184015290820190620002c1565b83821115620002f25760008385830101525b9695505050505050565b6000806000606084860312156200031257600080fd5b83516001600160401b03808211156200032a57600080fd5b620003388783880162000245565b945060208601519150808211156200034f57600080fd5b6200035d8783880162000245565b935060408601519150808211156200037457600080fd5b50620003838682870162000245565b9150509250925092565b600181811c90821680620003a257607f821691505b602082108103620003c357634e487b7160e01b600052602260045260246000fd5b50919050565b611ce480620003d96000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461039a578063c25d8f4d146103ba578063c87b56dd146103ea578063e985e9c51461040a578063ee1cc94414610453578063f2fde38b1461047357600080fd5b806370a08231146102f2578063715018a6146103125780638da5cb5b1461032757806395d89b4114610345578063a0712d681461035a578063a22cb4651461037a57600080fd5b806336ee1d8d1161010857806336ee1d8d146102405780633ccfd60b1461027057806342842e0e1461027857806355f804b3146102985780635b92ac0d146102b85780636352211e146102d257600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610220575b600080fd5b34801561015c57600080fd5b5061017061016b366004611711565b610493565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104e5565b60405161017c9190611786565b3480156101b357600080fd5b506101c76101c2366004611799565b610577565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046117c7565b610611565b005b34801561020d57600080fd5b506009545b60405190815260200161017c565b34801561022c57600080fd5b506101ff61023b3660046117f3565b610726565b34801561024c57600080fd5b5061017061025b366004611799565b600a6020526000908152604090205460ff1681565b6101ff610757565b34801561028457600080fd5b506101ff6102933660046117f3565b610811565b3480156102a457600080fd5b506101ff6102b33660046118c0565b61082c565b3480156102c457600080fd5b506008546101709060ff1681565b3480156102de57600080fd5b506101c76102ed366004611799565b610869565b3480156102fe57600080fd5b5061021261030d366004611909565b6108e0565b34801561031e57600080fd5b506101ff610967565b34801561033357600080fd5b506006546001600160a01b03166101c7565b34801561035157600080fd5b5061019a61099d565b34801561036657600080fd5b506101ff610375366004611799565b6109ac565b34801561038657600080fd5b506101ff61039536600461193b565b610c74565b3480156103a657600080fd5b506101ff6103b5366004611970565b610c7f565b3480156103c657600080fd5b506101706103d5366004611909565b600b6020526000908152604090205460ff1681565b3480156103f657600080fd5b5061019a610405366004611799565b610cb7565b34801561041657600080fd5b506101706104253660046119f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561045f57600080fd5b506101ff61046e366004611a29565b610d92565b34801561047f57600080fd5b506101ff61048e366004611909565b610dcf565b60006001600160e01b031982166380ac58cd60e01b14806104c457506001600160e01b03198216635b5e139f60e01b145b806104df57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104f490611a44565b80601f016020809104026020016040519081016040528092919081815260200182805461052090611a44565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061061c82610869565b9050806001600160a01b0316836001600160a01b0316036106895760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ec565b336001600160a01b03821614806106a557506106a58133610425565b6107175760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105ec565b6107218383610e6a565b505050565b6107303382610ed8565b61074c5760405162461bcd60e51b81526004016105ec90611a7e565b610721838383610fcf565b6006546001600160a01b031633146107815760405162461bcd60e51b81526004016105ec90611acf565b6040514790600090339083908381818185875af1925050503d80600081146107c5576040519150601f19603f3d011682016040523d82523d6000602084013e6107ca565b606091505b505090508061080d5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105ec565b5050565b61072183838360405180602001604052806000815250610c7f565b6006546001600160a01b031633146108565760405162461bcd60e51b81526004016105ec90611acf565b805161080d906007906020840190611662565b6000818152600260205260408120546001600160a01b0316806104df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ec565b60006001600160a01b03821661094b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ec565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109915760405162461bcd60e51b81526004016105ec90611acf565b61099b600061116f565b565b6060600180546104f490611a44565b60085460ff166109f45760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105ec565b6001811015610a3d5760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105ec565b6101f4811115610a875760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105ec565b6000818152600a602052604090205460ff1615610ade5760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016105ec565b336000908152600b602052604090205460ff1615610b375760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105ec565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190611b04565b6001600160a01b031614610c035760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e0000000000000060448201526064016105ec565b6000610c0e60095490565b6000838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610c5a908490611b37565b9091555061080d905033610c6f836001611b37565b6111c1565b61080d3383836111db565b610c893383610ed8565b610ca55760405162461bcd60e51b81526004016105ec90611a7e565b610cb1848484846112a9565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ec565b6000610d406112dc565b90506000815111610d605760405180602001604052806000815250610d8b565b80610d6a846112eb565b604051602001610d7b929190611b4f565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610dbc5760405162461bcd60e51b81526004016105ec90611acf565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610df95760405162461bcd60e51b81526004016105ec90611acf565b6001600160a01b038116610e5e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ec565b610e678161116f565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e9f82610869565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ec565b6000610f5c83610869565b9050806001600160a01b0316846001600160a01b03161480610f975750836001600160a01b0316610f8c84610577565b6001600160a01b0316145b80610fc757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fe282610869565b6001600160a01b03161461104a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105ec565b6001600160a01b0382166110ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ec565b6110b7600082610e6a565b6001600160a01b03831660009081526003602052604081208054600192906110e0908490611b7e565b90915550506001600160a01b038216600090815260036020526040812080546001929061110e908490611b37565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61080d8282604051806020016040528060008152506113ec565b816001600160a01b0316836001600160a01b03160361123c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112b4848484610fcf565b6112c08484848461141f565b610cb15760405162461bcd60e51b81526004016105ec90611b95565b6060600780546104f490611a44565b6060816000036113125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561133c578061132681611be7565b91506113359050600a83611c16565b9150611316565b60008167ffffffffffffffff81111561135757611357611834565b6040519080825280601f01601f191660200182016040528015611381576020820181803683370190505b5090505b8415610fc757611396600183611b7e565b91506113a3600a86611c2a565b6113ae906030611b37565b60f81b8183815181106113c3576113c3611c3e565b60200101906001600160f81b031916908160001a9053506113e5600a86611c16565b9450611385565b6113f68383611520565b611403600084848461141f565b6107215760405162461bcd60e51b81526004016105ec90611b95565b60006001600160a01b0384163b1561151557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611463903390899088908890600401611c54565b6020604051808303816000875af192505050801561149e575060408051601f3d908101601f1916820190925261149b91810190611c91565b60015b6114fb573d8080156114cc576040519150601f19603f3d011682016040523d82523d6000602084013e6114d1565b606091505b5080516000036114f35760405162461bcd60e51b81526004016105ec90611b95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fc7565b506001949350505050565b6001600160a01b0382166115765760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ec565b6000818152600260205260409020546001600160a01b0316156115db5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ec565b6001600160a01b0382166000908152600360205260408120805460019290611604908490611b37565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461166e90611a44565b90600052602060002090601f01602090048101928261169057600085556116d6565b82601f106116a957805160ff19168380011785556116d6565b828001600101855582156116d6579182015b828111156116d65782518255916020019190600101906116bb565b506116e29291506116e6565b5090565b5b808211156116e257600081556001016116e7565b6001600160e01b031981168114610e6757600080fd5b60006020828403121561172357600080fd5b8135610d8b816116fb565b60005b83811015611749578181015183820152602001611731565b83811115610cb15750506000910152565b6000815180845261177281602086016020860161172e565b601f01601f19169290920160200192915050565b602081526000610d8b602083018461175a565b6000602082840312156117ab57600080fd5b5035919050565b6001600160a01b0381168114610e6757600080fd5b600080604083850312156117da57600080fd5b82356117e5816117b2565b946020939093013593505050565b60008060006060848603121561180857600080fd5b8335611813816117b2565b92506020840135611823816117b2565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561186557611865611834565b604051601f8501601f19908116603f0116810190828211818310171561188d5761188d611834565b816040528093508581528686860111156118a657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118d257600080fd5b813567ffffffffffffffff8111156118e957600080fd5b8201601f810184136118fa57600080fd5b610fc78482356020840161184a565b60006020828403121561191b57600080fd5b8135610d8b816117b2565b8035801515811461193657600080fd5b919050565b6000806040838503121561194e57600080fd5b8235611959816117b2565b915061196760208401611926565b90509250929050565b6000806000806080858703121561198657600080fd5b8435611991816117b2565b935060208501356119a1816117b2565b925060408501359150606085013567ffffffffffffffff8111156119c457600080fd5b8501601f810187136119d557600080fd5b6119e48782356020840161184a565b91505092959194509250565b60008060408385031215611a0357600080fd5b8235611a0e816117b2565b91506020830135611a1e816117b2565b809150509250929050565b600060208284031215611a3b57600080fd5b610d8b82611926565b600181811c90821680611a5857607f821691505b602082108103611a7857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611b1657600080fd5b8151610d8b816117b2565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b4a57611b4a611b21565b500190565b60008351611b6181846020880161172e565b835190830190611b7581836020880161172e565b01949350505050565b600082821015611b9057611b90611b21565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018201611bf957611bf9611b21565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611c2557611c25611c00565b500490565b600082611c3957611c39611c00565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c879083018461175a565b9695505050505050565b600060208284031215611ca357600080fd5b8151610d8b816116fb56fea2646970667358221220bd551a4f85b460d68e788fef02d64679453cfa0d48aff87fb77c6b58dc55623e64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001953515541445453204f4720476f6c64656e204d696e6967756e00000000000000000000000000000000000000000000000000000000000000000000000000000453474d4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d66596271535a75766b4e5a6e687665633456634741435a62557a3138324778735335717452683454455656522f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461039a578063c25d8f4d146103ba578063c87b56dd146103ea578063e985e9c51461040a578063ee1cc94414610453578063f2fde38b1461047357600080fd5b806370a08231146102f2578063715018a6146103125780638da5cb5b1461032757806395d89b4114610345578063a0712d681461035a578063a22cb4651461037a57600080fd5b806336ee1d8d1161010857806336ee1d8d146102405780633ccfd60b1461027057806342842e0e1461027857806355f804b3146102985780635b92ac0d146102b85780636352211e146102d257600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610220575b600080fd5b34801561015c57600080fd5b5061017061016b366004611711565b610493565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104e5565b60405161017c9190611786565b3480156101b357600080fd5b506101c76101c2366004611799565b610577565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046117c7565b610611565b005b34801561020d57600080fd5b506009545b60405190815260200161017c565b34801561022c57600080fd5b506101ff61023b3660046117f3565b610726565b34801561024c57600080fd5b5061017061025b366004611799565b600a6020526000908152604090205460ff1681565b6101ff610757565b34801561028457600080fd5b506101ff6102933660046117f3565b610811565b3480156102a457600080fd5b506101ff6102b33660046118c0565b61082c565b3480156102c457600080fd5b506008546101709060ff1681565b3480156102de57600080fd5b506101c76102ed366004611799565b610869565b3480156102fe57600080fd5b5061021261030d366004611909565b6108e0565b34801561031e57600080fd5b506101ff610967565b34801561033357600080fd5b506006546001600160a01b03166101c7565b34801561035157600080fd5b5061019a61099d565b34801561036657600080fd5b506101ff610375366004611799565b6109ac565b34801561038657600080fd5b506101ff61039536600461193b565b610c74565b3480156103a657600080fd5b506101ff6103b5366004611970565b610c7f565b3480156103c657600080fd5b506101706103d5366004611909565b600b6020526000908152604090205460ff1681565b3480156103f657600080fd5b5061019a610405366004611799565b610cb7565b34801561041657600080fd5b506101706104253660046119f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561045f57600080fd5b506101ff61046e366004611a29565b610d92565b34801561047f57600080fd5b506101ff61048e366004611909565b610dcf565b60006001600160e01b031982166380ac58cd60e01b14806104c457506001600160e01b03198216635b5e139f60e01b145b806104df57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104f490611a44565b80601f016020809104026020016040519081016040528092919081815260200182805461052090611a44565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061061c82610869565b9050806001600160a01b0316836001600160a01b0316036106895760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ec565b336001600160a01b03821614806106a557506106a58133610425565b6107175760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105ec565b6107218383610e6a565b505050565b6107303382610ed8565b61074c5760405162461bcd60e51b81526004016105ec90611a7e565b610721838383610fcf565b6006546001600160a01b031633146107815760405162461bcd60e51b81526004016105ec90611acf565b6040514790600090339083908381818185875af1925050503d80600081146107c5576040519150601f19603f3d011682016040523d82523d6000602084013e6107ca565b606091505b505090508061080d5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105ec565b5050565b61072183838360405180602001604052806000815250610c7f565b6006546001600160a01b031633146108565760405162461bcd60e51b81526004016105ec90611acf565b805161080d906007906020840190611662565b6000818152600260205260408120546001600160a01b0316806104df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ec565b60006001600160a01b03821661094b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ec565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109915760405162461bcd60e51b81526004016105ec90611acf565b61099b600061116f565b565b6060600180546104f490611a44565b60085460ff166109f45760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105ec565b6001811015610a3d5760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105ec565b6101f4811115610a875760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105ec565b6000818152600a602052604090205460ff1615610ade5760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016105ec565b336000908152600b602052604090205460ff1615610b375760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105ec565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190611b04565b6001600160a01b031614610c035760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e0000000000000060448201526064016105ec565b6000610c0e60095490565b6000838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610c5a908490611b37565b9091555061080d905033610c6f836001611b37565b6111c1565b61080d3383836111db565b610c893383610ed8565b610ca55760405162461bcd60e51b81526004016105ec90611a7e565b610cb1848484846112a9565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ec565b6000610d406112dc565b90506000815111610d605760405180602001604052806000815250610d8b565b80610d6a846112eb565b604051602001610d7b929190611b4f565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610dbc5760405162461bcd60e51b81526004016105ec90611acf565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610df95760405162461bcd60e51b81526004016105ec90611acf565b6001600160a01b038116610e5e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ec565b610e678161116f565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e9f82610869565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ec565b6000610f5c83610869565b9050806001600160a01b0316846001600160a01b03161480610f975750836001600160a01b0316610f8c84610577565b6001600160a01b0316145b80610fc757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610fe282610869565b6001600160a01b03161461104a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105ec565b6001600160a01b0382166110ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ec565b6110b7600082610e6a565b6001600160a01b03831660009081526003602052604081208054600192906110e0908490611b7e565b90915550506001600160a01b038216600090815260036020526040812080546001929061110e908490611b37565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61080d8282604051806020016040528060008152506113ec565b816001600160a01b0316836001600160a01b03160361123c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112b4848484610fcf565b6112c08484848461141f565b610cb15760405162461bcd60e51b81526004016105ec90611b95565b6060600780546104f490611a44565b6060816000036113125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561133c578061132681611be7565b91506113359050600a83611c16565b9150611316565b60008167ffffffffffffffff81111561135757611357611834565b6040519080825280601f01601f191660200182016040528015611381576020820181803683370190505b5090505b8415610fc757611396600183611b7e565b91506113a3600a86611c2a565b6113ae906030611b37565b60f81b8183815181106113c3576113c3611c3e565b60200101906001600160f81b031916908160001a9053506113e5600a86611c16565b9450611385565b6113f68383611520565b611403600084848461141f565b6107215760405162461bcd60e51b81526004016105ec90611b95565b60006001600160a01b0384163b1561151557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611463903390899088908890600401611c54565b6020604051808303816000875af192505050801561149e575060408051601f3d908101601f1916820190925261149b91810190611c91565b60015b6114fb573d8080156114cc576040519150601f19603f3d011682016040523d82523d6000602084013e6114d1565b606091505b5080516000036114f35760405162461bcd60e51b81526004016105ec90611b95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fc7565b506001949350505050565b6001600160a01b0382166115765760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ec565b6000818152600260205260409020546001600160a01b0316156115db5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ec565b6001600160a01b0382166000908152600360205260408120805460019290611604908490611b37565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461166e90611a44565b90600052602060002090601f01602090048101928261169057600085556116d6565b82601f106116a957805160ff19168380011785556116d6565b828001600101855582156116d6579182015b828111156116d65782518255916020019190600101906116bb565b506116e29291506116e6565b5090565b5b808211156116e257600081556001016116e7565b6001600160e01b031981168114610e6757600080fd5b60006020828403121561172357600080fd5b8135610d8b816116fb565b60005b83811015611749578181015183820152602001611731565b83811115610cb15750506000910152565b6000815180845261177281602086016020860161172e565b601f01601f19169290920160200192915050565b602081526000610d8b602083018461175a565b6000602082840312156117ab57600080fd5b5035919050565b6001600160a01b0381168114610e6757600080fd5b600080604083850312156117da57600080fd5b82356117e5816117b2565b946020939093013593505050565b60008060006060848603121561180857600080fd5b8335611813816117b2565b92506020840135611823816117b2565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561186557611865611834565b604051601f8501601f19908116603f0116810190828211818310171561188d5761188d611834565b816040528093508581528686860111156118a657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118d257600080fd5b813567ffffffffffffffff8111156118e957600080fd5b8201601f810184136118fa57600080fd5b610fc78482356020840161184a565b60006020828403121561191b57600080fd5b8135610d8b816117b2565b8035801515811461193657600080fd5b919050565b6000806040838503121561194e57600080fd5b8235611959816117b2565b915061196760208401611926565b90509250929050565b6000806000806080858703121561198657600080fd5b8435611991816117b2565b935060208501356119a1816117b2565b925060408501359150606085013567ffffffffffffffff8111156119c457600080fd5b8501601f810187136119d557600080fd5b6119e48782356020840161184a565b91505092959194509250565b60008060408385031215611a0357600080fd5b8235611a0e816117b2565b91506020830135611a1e816117b2565b809150509250929050565b600060208284031215611a3b57600080fd5b610d8b82611926565b600181811c90821680611a5857607f821691505b602082108103611a7857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611b1657600080fd5b8151610d8b816117b2565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b4a57611b4a611b21565b500190565b60008351611b6181846020880161172e565b835190830190611b7581836020880161172e565b01949350505050565b600082821015611b9057611b90611b21565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018201611bf957611bf9611b21565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611c2557611c25611c00565b500490565b600082611c3957611c39611c00565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c879083018461175a565b9695505050505050565b600060208284031215611ca357600080fd5b8151610d8b816116fb56fea2646970667358221220bd551a4f85b460d68e788fef02d64679453cfa0d48aff87fb77c6b58dc55623e64736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001953515541445453204f4720476f6c64656e204d696e6967756e00000000000000000000000000000000000000000000000000000000000000000000000000000453474d4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d66596271535a75766b4e5a6e687665633456634741435a62557a3138324778735335717452683454455656522f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SQUADTS OG Golden Minigun
Arg [1] : symbol (string): SGMG
Arg [2] : baseURI (string): https://ipfs.io/ipfs/QmfYbqSZuvkNZnhvec4VcGACZbUz182GxsS5qtRh4TEVVR/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 53515541445453204f4720476f6c64656e204d696e6967756e00000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 53474d4700000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d66596271535a75766b
Arg [9] : 4e5a6e687665633456634741435a62557a313832477873533571745268345445
Arg [10] : 5656522f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36224:2132:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21191:305;;;;;;;;;;-1:-1:-1;21191:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21191:305:0;;;;;;;;22136:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23695:221::-;;;;;;;;;;-1:-1:-1;23695:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23695:221:0;1528:203:1;23218:411:0;;;;;;;;;;-1:-1:-1;23218:411:0;;;;;:::i;:::-;;:::i;:::-;;37302:89;;;;;;;;;;-1:-1:-1;37373:10:0;;37302:89;;;2338:25:1;;;2326:2;2311:18;37302:89:0;2192:177:1;24445:339:0;;;;;;;;;;-1:-1:-1;24445:339:0;;;;;:::i;:::-;;:::i;36629:44::-;;;;;;;;;;-1:-1:-1;36629:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38126:225;;;:::i;24855:185::-;;;;;;;;;;-1:-1:-1;24855:185:0;;;;;:::i;:::-;;:::i;37099:98::-;;;;;;;;;;-1:-1:-1;37099:98:0;;;;;:::i;:::-;;:::i;36348:32::-;;;;;;;;;;-1:-1:-1;36348:32:0;;;;;;;;21830:239;;;;;;;;;;-1:-1:-1;21830:239:0;;;;;:::i;:::-;;:::i;21560:208::-;;;;;;;;;;-1:-1:-1;21560:208:0;;;;;:::i;:::-;;:::i;35338:103::-;;;;;;;;;;;;;:::i;34687:87::-;;;;;;;;;;-1:-1:-1;34760:6:0;;-1:-1:-1;;;;;34760:6:0;34687:87;;22305:104;;;;;;;;;;;;;:::i;37415:686::-;;;;;;;;;;-1:-1:-1;37415:686:0;;;;;:::i;:::-;;:::i;23988:155::-;;;;;;;;;;-1:-1:-1;23988:155:0;;;;;:::i;:::-;;:::i;25111:328::-;;;;;;;;;;-1:-1:-1;25111:328:0;;;;;:::i;:::-;;:::i;36680:45::-;;;;;;;;;;-1:-1:-1;36680:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22480:334;;;;;;;;;;-1:-1:-1;22480:334:0;;;;;:::i;:::-;;:::i;24214:164::-;;;;;;;;;;-1:-1:-1;24214:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24335:25:0;;;24311:4;24335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24214:164;37203:93;;;;;;;;;;-1:-1:-1;37203:93:0;;;;;:::i;:::-;;:::i;35596:201::-;;;;;;;;;;-1:-1:-1;35596:201:0;;;;;:::i;:::-;;:::i;21191:305::-;21293:4;-1:-1:-1;;;;;;21330:40:0;;-1:-1:-1;;;21330:40:0;;:105;;-1:-1:-1;;;;;;;21387:48:0;;-1:-1:-1;;;21387:48:0;21330:105;:158;;;-1:-1:-1;;;;;;;;;;13210:40:0;;;21452:36;21310:178;21191:305;-1:-1:-1;;21191:305:0:o;22136:100::-;22190:13;22223:5;22216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22136:100;:::o;23695:221::-;23771:7;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;23791:73;;;;-1:-1:-1;;;23791:73:0;;6762:2:1;23791:73:0;;;6744:21:1;6801:2;6781:18;;;6774:30;6840:34;6820:18;;;6813:62;-1:-1:-1;;;6891:18:1;;;6884:42;6943:19;;23791:73:0;;;;;;;;;-1:-1:-1;23884:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23884:24:0;;23695:221::o;23218:411::-;23299:13;23315:23;23330:7;23315:14;:23::i;:::-;23299:39;;23363:5;-1:-1:-1;;;;;23357:11:0;:2;-1:-1:-1;;;;;23357:11:0;;23349:57;;;;-1:-1:-1;;;23349:57:0;;7175:2:1;23349:57:0;;;7157:21:1;7214:2;7194:18;;;7187:30;7253:34;7233:18;;;7226:62;-1:-1:-1;;;7304:18:1;;;7297:31;7345:19;;23349:57:0;6973:397:1;23349:57:0;19683:10;-1:-1:-1;;;;;23441:21:0;;;;:62;;-1:-1:-1;23466:37:0;23483:5;19683:10;24214:164;:::i;23466:37::-;23419:168;;;;-1:-1:-1;;;23419:168:0;;7577:2:1;23419:168:0;;;7559:21:1;7616:2;7596:18;;;7589:30;7655:34;7635:18;;;7628:62;7726:26;7706:18;;;7699:54;7770:19;;23419:168:0;7375:420:1;23419:168:0;23600:21;23609:2;23613:7;23600:8;:21::i;:::-;23288:341;23218:411;;:::o;24445:339::-;24640:41;19683:10;24673:7;24640:18;:41::i;:::-;24632:103;;;;-1:-1:-1;;;24632:103:0;;;;;;;:::i;:::-;24748:28;24758:4;24764:2;24768:7;24748:9;:28::i;38126:225::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;38253:44:::1;::::0;38202:21:::1;::::0;38184:15:::1;::::0;38261:10:::1;::::0;38202:21;;38184:15;38253:44;38184:15;38253:44;38202:21;38261:10;38253:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38234:63;;;38316:7;38308:35;;;::::0;-1:-1:-1;;;38308:35:0;;8991:2:1;38308:35:0::1;::::0;::::1;8973:21:1::0;9030:2;9010:18;;;9003:30;-1:-1:-1;;;9049:18:1;;;9042:45;9104:18;;38308:35:0::1;8789:339:1::0;38308:35:0::1;38173:178;;38126:225::o:0;24855:185::-;24993:39;25010:4;25016:2;25020:7;24993:39;;;;;;;;;;;;:16;:39::i;37099:98::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37168:21;;::::1;::::0;:13:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;21830:239::-:0;21902:7;21938:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21938:16:0;;21965:73;;;;-1:-1:-1;;;21965:73:0;;9335:2:1;21965:73:0;;;9317:21:1;9374:2;9354:18;;;9347:30;9413:34;9393:18;;;9386:62;-1:-1:-1;;;9464:18:1;;;9457:39;9513:19;;21965:73:0;9133:405:1;21560:208:0;21632:7;-1:-1:-1;;;;;21660:19:0;;21652:74;;;;-1:-1:-1;;;21652:74:0;;9745:2:1;21652:74:0;;;9727:21:1;9784:2;9764:18;;;9757:30;9823:34;9803:18;;;9796:62;-1:-1:-1;;;9874:18:1;;;9867:40;9924:19;;21652:74:0;9543:406:1;21652:74:0;-1:-1:-1;;;;;;21744:16:0;;;;;:9;:16;;;;;;;21560:208::o;35338:103::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;35403:30:::1;35430:1;35403:18;:30::i;:::-;35338:103::o:0;22305:104::-;22361:13;22394:7;22387:14;;;;;:::i;37415:686::-;37474:12;;;;37466:44;;;;-1:-1:-1;;;37466:44:0;;10156:2:1;37466:44:0;;;10138:21:1;10195:2;10175:18;;;10168:30;-1:-1:-1;;;10214:18:1;;;10207:49;10273:18;;37466:44:0;9954:343:1;37466:44:0;36465:1;37529:7;:20;;37521:54;;;;-1:-1:-1;;;37521:54:0;;10504:2:1;37521:54:0;;;10486:21:1;10543:2;10523:18;;;10516:30;-1:-1:-1;;;10562:18:1;;;10555:51;10623:18;;37521:54:0;10302:345:1;37521:54:0;36502:3;37594:7;:20;;37586:54;;;;-1:-1:-1;;;37586:54:0;;10504:2:1;37586:54:0;;;10486:21:1;10543:2;10523:18;;;10516:30;-1:-1:-1;;;10562:18:1;;;10555:51;10623:18;;37586:54:0;10302:345:1;37586:54:0;37660:21;;;;:12;:21;;;;;;;;37659:22;37651:56;;;;-1:-1:-1;;;37651:56:0;;10854:2:1;37651:56:0;;;10836:21:1;10893:2;10873:18;;;10866:30;-1:-1:-1;;;10912:18:1;;;10905:51;10973:18;;37651:56:0;10652:345:1;37651:56:0;37741:10;37727:25;;;;:13;:25;;;;;;;;37726:26;37718:61;;;;-1:-1:-1;;;37718:61:0;;11204:2:1;37718:61:0;;;11186:21:1;11243:2;11223:18;;;11216:30;-1:-1:-1;;;11262:18:1;;;11255:52;11324:18;;37718:61:0;11002:346:1;37718:61:0;37798:40;;-1:-1:-1;;;37798:40:0;;;;;2338:25:1;;;37842:10:0;;36578:42;;37798:31;;2311:18:1;;37798:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37798:54:0;;37790:92;;;;-1:-1:-1;;;37790:92:0;;11811:2:1;37790:92:0;;;11793:21:1;11850:2;11830:18;;;11823:30;11889:27;11869:18;;;11862:55;11934:18;;37790:92:0;11609:349:1;37790:92:0;37893:14;37910:13;37373:10;;;37302:89;37910:13;37934:21;;;;:12;:21;;;;;;;;:28;;37958:4;-1:-1:-1;;37934:28:0;;;;;;;;37987:10;37973:25;;:13;:25;;;;;;:32;;;;;;;;;;38016:10;:15;;37893:30;;-1:-1:-1;37958:4:0;;38016:10;;37934:21;38016:15;;37958:4;;38016:15;:::i;:::-;;;;-1:-1:-1;38042:51:0;;-1:-1:-1;38052:10:0;38064:28;38086:6;36428:1;38064:28;:::i;:::-;38042:9;:51::i;23988:155::-;24083:52;19683:10;24116:8;24126;24083:18;:52::i;25111:328::-;25286:41;19683:10;25319:7;25286:18;:41::i;:::-;25278:103;;;;-1:-1:-1;;;25278:103:0;;;;;;;:::i;:::-;25392:39;25406:4;25412:2;25416:7;25425:5;25392:13;:39::i;:::-;25111:328;;;;:::o;22480:334::-;27014:4;27038:16;;;:7;:16;;;;;;22553:13;;-1:-1:-1;;;;;27038:16:0;22579:76;;;;-1:-1:-1;;;22579:76:0;;12430:2:1;22579:76:0;;;12412:21:1;12469:2;12449:18;;;12442:30;12508:34;12488:18;;;12481:62;-1:-1:-1;;;12559:18:1;;;12552:45;12614:19;;22579:76:0;12228:411:1;22579:76:0;22668:21;22692:10;:8;:10::i;:::-;22668:34;;22744:1;22726:7;22720:21;:25;:86;;;;;;;;;;;;;;;;;22772:7;22781:18;:7;:16;:18::i;:::-;22755:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22720:86;22713:93;22480:334;-1:-1:-1;;;22480:334:0:o;37203:93::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37268:12:::1;:20:::0;;-1:-1:-1;;37268:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37203:93::o;35596:201::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35685:22:0;::::1;35677:73;;;::::0;-1:-1:-1;;;35677:73:0;;13321:2:1;35677:73:0::1;::::0;::::1;13303:21:1::0;13360:2;13340:18;;;13333:30;13399:34;13379:18;;;13372:62;-1:-1:-1;;;13450:18:1;;;13443:36;13496:19;;35677:73:0::1;13119:402:1::0;35677:73:0::1;35761:28;35780:8;35761:18;:28::i;:::-;35596:201:::0;:::o;30931:174::-;31006:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31006:29:0;-1:-1:-1;;;;;31006:29:0;;;;;;;;:24;;31060:23;31006:24;31060:14;:23::i;:::-;-1:-1:-1;;;;;31051:46:0;;;;;;;;;;;30931:174;;:::o;27243:348::-;27336:4;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;27353:73;;;;-1:-1:-1;;;27353:73:0;;13728:2:1;27353:73:0;;;13710:21:1;13767:2;13747:18;;;13740:30;13806:34;13786:18;;;13779:62;-1:-1:-1;;;13857:18:1;;;13850:42;13909:19;;27353:73:0;13526:408:1;27353:73:0;27437:13;27453:23;27468:7;27453:14;:23::i;:::-;27437:39;;27506:5;-1:-1:-1;;;;;27495:16:0;:7;-1:-1:-1;;;;;27495:16:0;;:51;;;;27539:7;-1:-1:-1;;;;;27515:31:0;:20;27527:7;27515:11;:20::i;:::-;-1:-1:-1;;;;;27515:31:0;;27495:51;:87;;;-1:-1:-1;;;;;;24335:25:0;;;24311:4;24335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27550:32;27487:96;27243:348;-1:-1:-1;;;;27243:348:0:o;30235:578::-;30394:4;-1:-1:-1;;;;;30367:31:0;:23;30382:7;30367:14;:23::i;:::-;-1:-1:-1;;;;;30367:31:0;;30359:85;;;;-1:-1:-1;;;30359:85:0;;14141:2:1;30359:85:0;;;14123:21:1;14180:2;14160:18;;;14153:30;14219:34;14199:18;;;14192:62;-1:-1:-1;;;14270:18:1;;;14263:39;14319:19;;30359:85:0;13939:405:1;30359:85:0;-1:-1:-1;;;;;30463:16:0;;30455:65;;;;-1:-1:-1;;;30455:65:0;;14551:2:1;30455:65:0;;;14533:21:1;14590:2;14570:18;;;14563:30;14629:34;14609:18;;;14602:62;-1:-1:-1;;;14680:18:1;;;14673:34;14724:19;;30455:65:0;14349:400:1;30455:65:0;30637:29;30654:1;30658:7;30637:8;:29::i;:::-;-1:-1:-1;;;;;30679:15:0;;;;;;:9;:15;;;;;:20;;30698:1;;30679:15;:20;;30698:1;;30679:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30710:13:0;;;;;;:9;:13;;;;;:18;;30727:1;;30710:13;:18;;30727:1;;30710:18;:::i;:::-;;;;-1:-1:-1;;30739:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30739:21:0;-1:-1:-1;;;;;30739:21:0;;;;;;;;;30778:27;;30739:16;;30778:27;;;;;;;30235:578;;;:::o;35957:191::-;36050:6;;;-1:-1:-1;;;;;36067:17:0;;;-1:-1:-1;;;;;;36067:17:0;;;;;;;36100:40;;36050:6;;;36067:17;36050:6;;36100:40;;36031:16;;36100:40;36020:128;35957:191;:::o;27933:110::-;28009:26;28019:2;28023:7;28009:26;;;;;;;;;;;;:9;:26::i;31247:315::-;31402:8;-1:-1:-1;;;;;31393:17:0;:5;-1:-1:-1;;;;;31393:17:0;;31385:55;;;;-1:-1:-1;;;31385:55:0;;15086:2:1;31385:55:0;;;15068:21:1;15125:2;15105:18;;;15098:30;15164:27;15144:18;;;15137:55;15209:18;;31385:55:0;14884:349:1;31385:55:0;-1:-1:-1;;;;;31451:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31451:46:0;;;;;;;;;;31513:41;;540::1;;;31513::0;;513:18:1;31513:41:0;;;;;;;31247:315;;;:::o;26321:::-;26478:28;26488:4;26494:2;26498:7;26478:9;:28::i;:::-;26525:48;26548:4;26554:2;26558:7;26567:5;26525:22;:48::i;:::-;26517:111;;;;-1:-1:-1;;;26517:111:0;;;;;;;:::i;36979:114::-;37039:13;37072;37065:20;;;;;:::i;396:723::-;452:13;673:5;682:1;673:10;669:53;;-1:-1:-1;;700:10:0;;;;;;;;;;;;-1:-1:-1;;;700:10:0;;;;;396:723::o;669:53::-;747:5;732:12;788:78;795:9;;788:78;;821:8;;;;:::i;:::-;;-1:-1:-1;844:10:0;;-1:-1:-1;852:2:0;844:10;;:::i;:::-;;;788:78;;;876:19;908:6;898:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;898:17:0;;876:39;;926:154;933:10;;926:154;;960:11;970:1;960:11;;:::i;:::-;;-1:-1:-1;1029:10:0;1037:2;1029:5;:10;:::i;:::-;1016:24;;:2;:24;:::i;:::-;1003:39;;986:6;993;986:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;986:56:0;;;;;;;;-1:-1:-1;1057:11:0;1066:2;1057:11;;:::i;:::-;;;926:154;;28270:321;28400:18;28406:2;28410:7;28400:5;:18::i;:::-;28451:54;28482:1;28486:2;28490:7;28499:5;28451:22;:54::i;:::-;28429:154;;;;-1:-1:-1;;;28429:154:0;;;;;;;:::i;32127:799::-;32282:4;-1:-1:-1;;;;;32303:13:0;;3294:20;3342:8;32299:620;;32339:72;;-1:-1:-1;;;32339:72:0;;-1:-1:-1;;;;;32339:36:0;;;;;:72;;19683:10;;32390:4;;32396:7;;32405:5;;32339:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32339:72:0;;;;;;;;-1:-1:-1;;32339:72:0;;;;;;;;;;;;:::i;:::-;;;32335:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32581:6;:13;32598:1;32581:18;32577:272;;32624:60;;-1:-1:-1;;;32624:60:0;;;;;;;:::i;32577:272::-;32799:6;32793:13;32784:6;32780:2;32776:15;32769:38;32335:529;-1:-1:-1;;;;;;32462:51:0;-1:-1:-1;;;32462:51:0;;-1:-1:-1;32455:58:0;;32299:620;-1:-1:-1;32903:4:0;32127:799;;;;;;:::o;28927:382::-;-1:-1:-1;;;;;29007:16:0;;28999:61;;;;-1:-1:-1;;;28999:61:0;;17253:2:1;28999:61:0;;;17235:21:1;;;17272:18;;;17265:30;17331:34;17311:18;;;17304:62;17383:18;;28999:61:0;17051:356:1;28999:61:0;27014:4;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;:30;29071:58;;;;-1:-1:-1;;;29071:58:0;;17614:2:1;29071:58:0;;;17596:21:1;17653:2;17633:18;;;17626:30;17692;17672:18;;;17665:58;17740:18;;29071:58:0;17412:352:1;29071:58:0;-1:-1:-1;;;;;29200:13:0;;;;;;:9;:13;;;;;:18;;29217:1;;29200:13;:18;;29217:1;;29200:18;:::i;:::-;;;;-1:-1:-1;;29229:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29229:21:0;-1:-1:-1;;;;;29229:21:0;;;;;;;;29268:33;;29229:16;;;29268:33;;29229:16;;29268:33;28927:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:127::-;2896:10;2891:3;2887:20;2884:1;2877:31;2927:4;2924:1;2917:15;2951:4;2948:1;2941:15;2967:632;3032:5;3062:18;3103:2;3095:6;3092:14;3089:40;;;3109:18;;:::i;:::-;3184:2;3178:9;3152:2;3238:15;;-1:-1:-1;;3234:24:1;;;3260:2;3230:33;3226:42;3214:55;;;3284:18;;;3304:22;;;3281:46;3278:72;;;3330:18;;:::i;:::-;3370:10;3366:2;3359:22;3399:6;3390:15;;3429:6;3421;3414:22;3469:3;3460:6;3455:3;3451:16;3448:25;3445:45;;;3486:1;3483;3476:12;3445:45;3536:6;3531:3;3524:4;3516:6;3512:17;3499:44;3591:1;3584:4;3575:6;3567;3563:19;3559:30;3552:41;;;;2967:632;;;;;:::o;3604:451::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3782:9;3769:23;3815:18;3807:6;3804:30;3801:50;;;3847:1;3844;3837:12;3801:50;3870:22;;3923:4;3915:13;;3911:27;-1:-1:-1;3901:55:1;;3952:1;3949;3942:12;3901:55;3975:74;4041:7;4036:2;4023:16;4018:2;4014;4010:11;3975:74;:::i;4060:247::-;4119:6;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4227:9;4214:23;4246:31;4271:5;4246:31;:::i;4312:160::-;4377:20;;4433:13;;4426:21;4416:32;;4406:60;;4462:1;4459;4452:12;4406:60;4312:160;;;:::o;4477:315::-;4542:6;4550;4603:2;4591:9;4582:7;4578:23;4574:32;4571:52;;;4619:1;4616;4609:12;4571:52;4658:9;4645:23;4677:31;4702:5;4677:31;:::i;:::-;4727:5;-1:-1:-1;4751:35:1;4782:2;4767:18;;4751:35;:::i;:::-;4741:45;;4477:315;;;;;:::o;4797:795::-;4892:6;4900;4908;4916;4969:3;4957:9;4948:7;4944:23;4940:33;4937:53;;;4986:1;4983;4976:12;4937:53;5025:9;5012:23;5044:31;5069:5;5044:31;:::i;:::-;5094:5;-1:-1:-1;5151:2:1;5136:18;;5123:32;5164:33;5123:32;5164:33;:::i;:::-;5216:7;-1:-1:-1;5270:2:1;5255:18;;5242:32;;-1:-1:-1;5325:2:1;5310:18;;5297:32;5352:18;5341:30;;5338:50;;;5384:1;5381;5374:12;5338:50;5407:22;;5460:4;5452:13;;5448:27;-1:-1:-1;5438:55:1;;5489:1;5486;5479:12;5438:55;5512:74;5578:7;5573:2;5560:16;5555:2;5551;5547:11;5512:74;:::i;:::-;5502:84;;;4797:795;;;;;;;:::o;5597:388::-;5665:6;5673;5726:2;5714:9;5705:7;5701:23;5697:32;5694:52;;;5742:1;5739;5732:12;5694:52;5781:9;5768:23;5800:31;5825:5;5800:31;:::i;:::-;5850:5;-1:-1:-1;5907:2:1;5892:18;;5879:32;5920:33;5879:32;5920:33;:::i;:::-;5972:7;5962:17;;;5597:388;;;;;:::o;5990:180::-;6046:6;6099:2;6087:9;6078:7;6074:23;6070:32;6067:52;;;6115:1;6112;6105:12;6067:52;6138:26;6154:9;6138:26;:::i;6175:380::-;6254:1;6250:12;;;;6297;;;6318:61;;6372:4;6364:6;6360:17;6350:27;;6318:61;6425:2;6417:6;6414:14;6394:18;6391:38;6388:161;;6471:10;6466:3;6462:20;6459:1;6452:31;6506:4;6503:1;6496:15;6534:4;6531:1;6524:15;6388:161;;6175:380;;;:::o;7800:413::-;8002:2;7984:21;;;8041:2;8021:18;;;8014:30;8080:34;8075:2;8060:18;;8053:62;-1:-1:-1;;;8146:2:1;8131:18;;8124:47;8203:3;8188:19;;7800:413::o;8218:356::-;8420:2;8402:21;;;8439:18;;;8432:30;8498:34;8493:2;8478:18;;8471:62;8565:2;8550:18;;8218:356::o;11353:251::-;11423:6;11476:2;11464:9;11455:7;11451:23;11447:32;11444:52;;;11492:1;11489;11482:12;11444:52;11524:9;11518:16;11543:31;11568:5;11543:31;:::i;11963:127::-;12024:10;12019:3;12015:20;12012:1;12005:31;12055:4;12052:1;12045:15;12079:4;12076:1;12069:15;12095:128;12135:3;12166:1;12162:6;12159:1;12156:13;12153:39;;;12172:18;;:::i;:::-;-1:-1:-1;12208:9:1;;12095:128::o;12644:470::-;12823:3;12861:6;12855:13;12877:53;12923:6;12918:3;12911:4;12903:6;12899:17;12877:53;:::i;:::-;12993:13;;12952:16;;;;13015:57;12993:13;12952:16;13049:4;13037:17;;13015:57;:::i;:::-;13088:20;;12644:470;-1:-1:-1;;;;12644:470:1:o;14754:125::-;14794:4;14822:1;14819;14816:8;14813:34;;;14827:18;;:::i;:::-;-1:-1:-1;14864:9:1;;14754:125::o;15238:414::-;15440:2;15422:21;;;15479:2;15459:18;;;15452:30;15518:34;15513:2;15498:18;;15491:62;-1:-1:-1;;;15584:2:1;15569:18;;15562:48;15642:3;15627:19;;15238:414::o;15657:135::-;15696:3;15717:17;;;15714:43;;15737:18;;:::i;:::-;-1:-1:-1;15784:1:1;15773:13;;15657:135::o;15797:127::-;15858:10;15853:3;15849:20;15846:1;15839:31;15889:4;15886:1;15879:15;15913:4;15910:1;15903:15;15929:120;15969:1;15995;15985:35;;16000:18;;:::i;:::-;-1:-1:-1;16034:9:1;;15929:120::o;16054:112::-;16086:1;16112;16102:35;;16117:18;;:::i;:::-;-1:-1:-1;16151:9:1;;16054:112::o;16171:127::-;16232:10;16227:3;16223:20;16220:1;16213:31;16263:4;16260:1;16253:15;16287:4;16284:1;16277:15;16303:489;-1:-1:-1;;;;;16572:15:1;;;16554:34;;16624:15;;16619:2;16604:18;;16597:43;16671:2;16656:18;;16649:34;;;16719:3;16714:2;16699:18;;16692:31;;;16497:4;;16740:46;;16766:19;;16758:6;16740:46;:::i;:::-;16732:54;16303:489;-1:-1:-1;;;;;;16303:489:1:o;16797:249::-;16866:6;16919:2;16907:9;16898:7;16894:23;16890:32;16887:52;;;16935:1;16932;16925:12;16887:52;16967:9;16961:16;16986:30;17010:5;16986:30;:::i

Swarm Source

ipfs://bd551a4f85b460d68e788fef02d64679453cfa0d48aff87fb77c6b58dc55623e

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.