ETH Price: $3,249.23 (+3.04%)
Gas: 6 Gwei

Token

Elysium Metagods Weapons (EMGW)
 

Overview

Max Total Supply

350 EMGW

Holders

136

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 EMGW
0x9f41c9a85de8e513268156baeae16b1e2c653dc7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Buff your MetaGod with Weapons to increase the staking odds, get more bonus points in tournaments, or stake it separately to yield 50 $GOD per day.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaGodsWeapons

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

/*
                8888888888 888                   d8b
                888        888                   Y8P
                888        888
                8888888    888 888  888 .d8888b  888 888  888 88888b.d88b.
                888        888 888  888 88K      888 888  888 888 "888 "88b
                888        888 888  888 "Y8888b. 888 888  888 888  888  888
                888        888 Y88b 888      X88 888 Y88b 888 888  888  888
                8888888888 888  "Y88888  88888P' 888  "Y88888 888  888  888
                                    888
                               Y8b d88P
                                "Y88P"
                888b     d888          888              .d8888b.                888
                8888b   d8888          888             d88P  Y88b               888
                88888b.d88888          888             888    888               888
                888Y88888P888  .d88b.  888888  8888b.  888         .d88b.   .d88888 .d8888b
                888 Y888P 888 d8P  Y8b 888        "88b 888  88888 d88""88b d88" 888 88K
                888  Y8P  888 88888888 888    .d888888 888    888 888  888 888  888 "Y8888b.
                888   "   888 Y8b.     Y88b.  888  888 Y88b  d88P Y88..88P Y88b 888      X88
                888       888  "Y8888   "Y888 "Y888888  "Y8888P88  "Y88P"   "Y88888  88888P'
*/

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;
    }
}

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() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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);
}

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;
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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);
}

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);
}

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);
            }
        }
    }
}

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;
    }
}
pragma solidity ^0.8.10;

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }
    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");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    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"
        );
    }
    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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    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;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


pragma solidity ^0.8.10;

contract MetaGodsWeapons is ERC721Enum, Ownable, Pausable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 2000;
    uint256 public currentSupply = 200;
    uint256 public cost = 9999 ether;
    uint256 public mintRequestLifetimeSeconds;

    uint256 public limitPerAddress = 2;
    bool public isLimitPerAddressActive = true;
    mapping(address => uint256) public mintedByAddress;

    address private signerAddress;

    mapping(uint256 => bool) public handledRequests;
    event MintRequestFinished(address wallet, uint256 internalIdentifier, bool successful);

    string private baseURI;

    constructor(string memory _initBaseURI) ERC721P("Elysium Metagods Weapons", "EMGW") {
        setBaseURI(_initBaseURI);
    }

    function mint(
        uint256 internalIdentifier_, uint256 amount_, uint256 weaponPrice_, uint256 generationDate_, bytes calldata signature_
    ) external payable whenNotPaused {
        require(handledRequests[internalIdentifier_] == false);
        require(weaponPrice_ == cost);
        if(isLimitPerAddressActive) {
            require(mintedByAddress[msg.sender] + amount_ <= limitPerAddress, "LIMIT REACHED");
        }
        uint256 totalSupply = totalSupply();
        require(totalSupply + amount_ <= currentSupply, "SUPPLY REACHED");
        _validateMintSignature(internalIdentifier_, amount_, weaponPrice_, generationDate_, signature_);
        handledRequests[internalIdentifier_] = true;
        mintedByAddress[msg.sender] += amount_;
        for (uint256 i = 0; i < amount_; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
        emit MintRequestFinished(msg.sender, internalIdentifier_, true);
        delete totalSupply;
    }

    function reserve(address _to, uint256 _reserveAmount) public onlyOwner {
        uint256 totalSupply = totalSupply();
        require(totalSupply + _reserveAmount <= currentSupply);
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, totalSupply + i);
        }
    }

    function setSignerAddress(address signerAddress_) external onlyOwner {
        signerAddress = signerAddress_;
    }

    function setCurrentSupply(uint256 _newCurrentSupply) external onlyOwner {
        require(_newCurrentSupply <= MAX_SUPPLY);
        currentSupply = _newCurrentSupply;
    }

    function setCost(uint256 _newCost) external onlyOwner {
        cost = _newCost;
    }

    function setMintRequestLifetimeSeconds(uint256 newMintRequestLifetimeSeconds_) external onlyOwner {
        mintRequestLifetimeSeconds = newMintRequestLifetimeSeconds_;
    }

    function setLimitPerAddress(uint256 newLimitPerAddress_) external onlyOwner {
        limitPerAddress = newLimitPerAddress_;
    }

    function flipIsLimitPerAddressActive() external onlyOwner {
        isLimitPerAddressActive = !isLimitPerAddressActive;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function isOwnerOfBatch(uint256[] calldata tokenIds_, address address_) external view returns (bool) {
        bool ownership = true;

        for (uint256 i = 0; i < tokenIds_.length; ++i) {
            ownership = ownership && (ownerOf(tokenIds_[i]) == address_);
        }

        return ownership;
    }

    function ownerOfBatch(uint256[] calldata tokenIds_) external view returns (address[] memory) {

        address[] memory addresses = new address[](tokenIds_.length);

        for(uint64 i = 0; i < tokenIds_.length; ++i) {
            addresses[i] = ownerOf(tokenIds_[i]);
        }

        return addresses;
    }

    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _validateMintSignature(
        uint256 internalIdentifier_, uint256 amount_, uint256 weaponPrice_, uint256 generationDate_, bytes calldata signature_
    ) internal view {
        bytes32 dataHash = keccak256(abi.encodePacked(internalIdentifier_, amount_, weaponPrice_, generationDate_, msg.sender));
        bytes32 message = ECDSA.toEthSignedMessageHash(dataHash);
        address receivedAddress = ECDSA.recover(message, signature_);
        require(receivedAddress != address(0) && receivedAddress == signerAddress);
        require(block.timestamp <= (generationDate_ + mintRequestLifetimeSeconds));
    }

    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","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":false,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"internalIdentifier","type":"uint256"},{"indexed":false,"internalType":"bool","name":"successful","type":"bool"}],"name":"MintRequestFinished","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipIsLimitPerAddressActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"handledRequests","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isLimitPerAddressActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"},{"internalType":"address","name":"address_","type":"address"}],"name":"isOwnerOfBatch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"internalIdentifier_","type":"uint256"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"uint256","name":"weaponPrice_","type":"uint256"},{"internalType":"uint256","name":"generationDate_","type":"uint256"},{"internalType":"bytes","name":"signature_","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRequestLifetimeSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"}],"name":"ownerOfBatch","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserve","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCurrentSupply","type":"uint256"}],"name":"setCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimitPerAddress_","type":"uint256"}],"name":"setLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintRequestLifetimeSeconds_","type":"uint256"}],"name":"setMintRequestLifetimeSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signerAddress_","type":"address"}],"name":"setSignerAddress","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260c860065569021e0c0013070adc00006007556002600955600a805460ff191660011790553480156200003657600080fd5b5060405162002f1c38038062002f1c833981016040819052620000599162000296565b604080518082018252601881527f456c797369756d204d657461676f647320576561706f6e730000000000000000602080830191825283518085019094526004845263454d475760e01b908401528151919291620000ba91600091620001da565b508051620000d0906001906020840190620001da565b505050620000ed620000e76200010c60201b60201c565b62000110565b6005805460ff60a01b19169055620001058162000162565b50620003af565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d690600e906020840190620001da565b5050565b828054620001e89062000372565b90600052602060002090601f0160209004810192826200020c576000855562000257565b82601f106200022757805160ff191683800117855562000257565b8280016001018555821562000257579182015b82811115620002575782518255916020019190600101906200023a565b506200026592915062000269565b5090565b5b808211156200026557600081556001016200026a565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002aa57600080fd5b82516001600160401b0380821115620002c257600080fd5b818501915085601f830112620002d757600080fd5b815181811115620002ec57620002ec62000280565b604051601f8201601f19908116603f0116810190838211818310171562000317576200031762000280565b8160405282815288868487010111156200033057600080fd5b600093505b8284101562000354578484018601518185018701529285019262000335565b82841115620003665760008684830101525b98975050505050505050565b600181811c908216806200038757607f821691505b60208210811415620003a957634e487b7160e01b600052602260045260246000fd5b50919050565b612b5d80620003bf6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063b88d4fde116100b6578063dc5473011161007a578063dc547301146106da578063e1cee8db146106fa578063e55528911461071a578063e985e9c51461072f578063f2fde38b14610778578063f8ea8f161461079857600080fd5b8063b88d4fde1461061d578063bda801171461063d578063c87b56dd1461066a578063cc47a40b1461068a578063d9ae90a1146106aa57600080fd5b80638462151c116100fd5780638462151c146105835780638da5cb5b146105b057806395d89b41146105ce578063a22cb465146105e3578063a2ee34a81461060357600080fd5b806370a0823114610503578063715018a614610523578063771282f61461053857806381c0b1f01461054e5780638456cb591461056e57600080fd5b806332cb6b0c116101d257806344a0d68a1161019657806344a0d68a146104445780634f6ccce71461046457806355f804b3146104845780635c975abb146104a45780636352211e146104c35780636f9bdf65146104e357600080fd5b806332cb6b0c146103b65780633ca63f2c146103cc5780633f4ba83a146103f957806342842e0e1461040e57806343f433b61461042e57600080fd5b806313faede61161021957806313faede61461032757806318160ddd1461034b57806323b872dd146103605780632a484ad4146103805780632f745c591461039657600080fd5b806301ffc9a714610256578063046dc1661461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b5061027661027136600461236b565b6107ab565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046123a4565b6107d6565b005b3480156102b957600080fd5b506102c261082b565b6040516102829190612417565b3480156102db57600080fd5b506102ef6102ea36600461242a565b6108bd565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004612443565b610945565b34801561033357600080fd5b5061033d60075481565b604051908152602001610282565b34801561035757600080fd5b5060025461033d565b34801561036c57600080fd5b506102ab61037b36600461246d565b610a5b565b34801561038c57600080fd5b5061033d60095481565b3480156103a257600080fd5b5061033d6103b1366004612443565b610a8c565b3480156103c257600080fd5b5061033d6107d081565b3480156103d857600080fd5b5061033d6103e73660046123a4565b600b6020526000908152604090205481565b34801561040557600080fd5b506102ab610b3b565b34801561041a57600080fd5b506102ab61042936600461246d565b610b6f565b34801561043a57600080fd5b5061033d60085481565b34801561045057600080fd5b506102ab61045f36600461242a565b610b8a565b34801561047057600080fd5b5061033d61047f36600461242a565b610bb9565b34801561049057600080fd5b506102ab61049f366004612534565b610c16565b3480156104b057600080fd5b50600554600160a01b900460ff16610276565b3480156104cf57600080fd5b506102ef6104de36600461242a565b610c57565b3480156104ef57600080fd5b506102766104fe3660046125c0565b610ce3565b34801561050f57600080fd5b5061033d61051e3660046123a4565b610d4a565b34801561052f57600080fd5b506102ab610e1c565b34801561054457600080fd5b5061033d60065481565b34801561055a57600080fd5b506102ab61056936600461242a565b610e50565b34801561057a57600080fd5b506102ab610e7f565b34801561058f57600080fd5b506105a361059e3660046123a4565b610eb1565b6040516102829190612613565b3480156105bc57600080fd5b506005546001600160a01b03166102ef565b3480156105da57600080fd5b506102c2610f7a565b3480156105ef57600080fd5b506102ab6105fe366004612657565b610f89565b34801561060f57600080fd5b50600a546102769060ff1681565b34801561062957600080fd5b506102ab610638366004612693565b61104e565b34801561064957600080fd5b5061065d61065836600461270e565b611086565b604051610282919061274f565b34801561067657600080fd5b506102c261068536600461242a565b611143565b34801561069657600080fd5b506102ab6106a5366004612443565b611200565b3480156106b657600080fd5b506102766106c536600461242a565b600d6020526000908152604090205460ff1681565b3480156106e657600080fd5b506102ab6106f536600461242a565b611280565b34801561070657600080fd5b506102ab61071536600461242a565b6112be565b34801561072657600080fd5b506102ab6112ed565b34801561073b57600080fd5b5061027661074a366004612790565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561078457600080fd5b506102ab6107933660046123a4565b61132b565b6102ab6107a63660046127c3565b6113c6565b60006001600160e01b0319821663780e9d6360e01b14806107d057506107d0826115bd565b92915050565b6005546001600160a01b031633146108095760405162461bcd60e51b81526004016108009061285a565b60405180910390fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60606000805461083a9061288f565b80601f01602080910402602001604051908101604052809291908181526020018280546108669061288f565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c88261160d565b6109295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610800565b506000908152600360205260409020546001600160a01b031690565b600061095082610c57565b9050806001600160a01b0316836001600160a01b031614156109be5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610800565b336001600160a01b03821614806109da57506109da813361074a565b610a4c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610800565b610a568383611657565b505050565b610a6533826116c5565b610a815760405162461bcd60e51b8152600401610800906128ca565b610a568383836117af565b6000610a9783610d4a565b8210610ab55760405162461bcd60e51b81526004016108009061291b565b6000805b600254811015610b225760028181548110610ad657610ad661294b565b6000918252602090912001546001600160a01b0386811691161415610b125783821415610b065791506107d09050565b610b0f82612977565b91505b610b1b81612977565b9050610ab9565b5060405162461bcd60e51b81526004016108009061291b565b6005546001600160a01b03163314610b655760405162461bcd60e51b81526004016108009061285a565b610b6d611905565b565b610a568383836040518060200160405280600081525061104e565b6005546001600160a01b03163314610bb45760405162461bcd60e51b81526004016108009061285a565b600755565b6000610bc460025490565b8210610c125760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610800565b5090565b6005546001600160a01b03163314610c405760405162461bcd60e51b81526004016108009061285a565b8051610c5390600e9060208401906122c5565b5050565b60008060028381548110610c6d57610c6d61294b565b6000918252602090912001546001600160a01b03169050806107d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610800565b60006001815b84811015610d4157818015610d2f5750836001600160a01b0316610d24878784818110610d1857610d1861294b565b90506020020135610c57565b6001600160a01b0316145b9150610d3a81612977565b9050610ce9565b50949350505050565b60006001600160a01b038216610db55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610800565b600254600090815b81811015610e135760028181548110610dd857610dd861294b565b6000918252602090912001546001600160a01b0386811691161415610e0357610e0083612977565b92505b610e0c81612977565b9050610dbd565b50909392505050565b6005546001600160a01b03163314610e465760405162461bcd60e51b81526004016108009061285a565b610b6d60006119a2565b6005546001600160a01b03163314610e7a5760405162461bcd60e51b81526004016108009061285a565b600955565b6005546001600160a01b03163314610ea95760405162461bcd60e51b81526004016108009061285a565b610b6d6119f4565b6060610ebc82610d4a565b600010610edb5760405162461bcd60e51b81526004016108009061291b565b6000610ee683610d4a565b90506000816001600160401b03811115610f0257610f026124a9565b604051908082528060200260200182016040528015610f2b578160200160208202803683370190505b50905060005b82811015610f7257610f438582610a8c565b828281518110610f5557610f5561294b565b602090810291909101015280610f6a81612977565b915050610f31565b509392505050565b60606001805461083a9061288f565b6001600160a01b038216331415610fe25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610800565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61105833836116c5565b6110745760405162461bcd60e51b8152600401610800906128ca565b61108084848484611a7c565b50505050565b60606000826001600160401b038111156110a2576110a26124a9565b6040519080825280602002602001820160405280156110cb578160200160208202803683370190505b50905060005b6001600160401b038116841115610f72576111008585836001600160401b0316818110610d1857610d1861294b565b82826001600160401b03168151811061111b5761111b61294b565b6001600160a01b039092166020928302919091019091015261113c81612992565b90506110d1565b606061114e8261160d565b6111a45760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610800565b60006111ae611aaf565b905060008151116111ce57604051806020016040528060008152506111f9565b806111d884611abe565b6040516020016111e99291906129b9565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461122a5760405162461bcd60e51b81526004016108009061285a565b600061123560025490565b60065490915061124583836129f8565b111561125057600080fd5b60005b828110156110805761126e8461126983856129f8565b611bbb565b8061127881612977565b915050611253565b6005546001600160a01b031633146112aa5760405162461bcd60e51b81526004016108009061285a565b6107d08111156112b957600080fd5b600655565b6005546001600160a01b031633146112e85760405162461bcd60e51b81526004016108009061285a565b600855565b6005546001600160a01b031633146113175760405162461bcd60e51b81526004016108009061285a565b600a805460ff19811660ff90911615179055565b6005546001600160a01b031633146113555760405162461bcd60e51b81526004016108009061285a565b6001600160a01b0381166113ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610800565b6113c3816119a2565b50565b600554600160a01b900460ff16156114135760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610800565b6000868152600d602052604090205460ff161561142f57600080fd5b600754841461143d57600080fd5b600a5460ff16156114a457600954336000908152600b60205260409020546114669087906129f8565b11156114a45760405162461bcd60e51b815260206004820152600d60248201526c13125352550814915050d21151609a1b6044820152606401610800565b60006114af60025490565b6006549091506114bf87836129f8565b11156114fe5760405162461bcd60e51b815260206004820152600e60248201526d14d5541413164814915050d2115160921b6044820152606401610800565b61150c878787878787611bd5565b6000878152600d60209081526040808320805460ff19166001179055338352600b909152812080548892906115429084906129f8565b90915550600090505b86811015611573576115613361126983856129f8565b8061156b81612977565b91505061154b565b50604080513381526020810189905260018183015290517fae815f0785f024e22e0dcf37636cdf1f29a33e54314f5264619f24da1f0cdc559181900360600190a150505050505050565b60006001600160e01b031982166380ac58cd60e01b14806115ee57506001600160e01b03198216635b5e139f60e01b145b806107d057506301ffc9a760e01b6001600160e01b03198316146107d0565b600254600090821080156107d0575060006001600160a01b03166002838154811061163a5761163a61294b565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168c82610c57565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116d08261160d565b6117315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610800565b600061173c83610c57565b9050806001600160a01b0316846001600160a01b031614806117775750836001600160a01b031661176c846108bd565b6001600160a01b0316145b806117a757506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117c282610c57565b6001600160a01b03161461182a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610800565b6001600160a01b03821661188c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610800565b611897600082611657565b81600282815481106118ab576118ab61294b565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600554600160a01b900460ff166119555760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610800565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff1615611a415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610800565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119853390565b611a878484846117af565b611a9384848484611cff565b6110805760405162461bcd60e51b815260040161080090612a10565b6060600e805461083a9061288f565b606081611ae25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b0c5780611af681612977565b9150611b059050600a83612a78565b9150611ae6565b6000816001600160401b03811115611b2657611b266124a9565b6040519080825280601f01601f191660200182016040528015611b50576020820181803683370190505b5090505b84156117a757611b65600183612a8c565b9150611b72600a86612aa3565b611b7d9060306129f8565b60f81b818381518110611b9257611b9261294b565b60200101906001600160f81b031916908160001a905350611bb4600a86612a78565b9450611b54565b610c53828260405180602001604052806000815250611dfd565b60408051602080820189905281830188905260608083018890526080830187905233901b6bffffffffffffffffffffffff191660a08301528251808303609401815260b4830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060d484015260f08084018290528451808503909101815261011090930190935281519101206000611cab8286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e3092505050565b90506001600160a01b03811615801590611cd25750600c546001600160a01b038281169116145b611cdb57600080fd5b600854611ce890876129f8565b421115611cf457600080fd5b505050505050505050565b60006001600160a01b0384163b15611df257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d43903390899088908890600401612ab7565b6020604051808303816000875af1925050508015611d7e575060408051601f3d908101601f19168201909252611d7b91810190612af4565b60015b611dd8573d808015611dac576040519150601f19603f3d011682016040523d82523d6000602084013e611db1565b606091505b508051611dd05760405162461bcd60e51b815260040161080090612a10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a7565b506001949350505050565b611e078383611e4c565b611e146000848484611cff565b610a565760405162461bcd60e51b815260040161080090612a10565b6000806000611e3f8585611f74565b91509150610f7281611fe4565b6001600160a01b038216611ea25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610800565b611eab8161160d565b15611ef85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610800565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080825160411415611fab5760208301516040840151606085015160001a611f9f8782858561219f565b94509450505050611fdd565b825160401415611fd55760208301516040840151611fca86838361228c565b935093505050611fdd565b506000905060025b9250929050565b6000816004811115611ff857611ff8612b11565b14156120015750565b600181600481111561201557612015612b11565b14156120635760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610800565b600281600481111561207757612077612b11565b14156120c55760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610800565b60038160048111156120d9576120d9612b11565b14156121325760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610800565b600481600481111561214657612146612b11565b14156113c35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610800565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121d65750600090506003612283565b8460ff16601b141580156121ee57508460ff16601c14155b156121ff5750600090506004612283565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612253573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661227c57600060019250925050612283565b9150600090505b94509492505050565b6000806001600160ff1b038316816122a960ff86901c601b6129f8565b90506122b78782888561219f565b935093505050935093915050565b8280546122d19061288f565b90600052602060002090601f0160209004810192826122f35760008555612339565b82601f1061230c57805160ff1916838001178555612339565b82800160010185558215612339579182015b8281111561233957825182559160200191906001019061231e565b50610c129291505b80821115610c125760008155600101612341565b6001600160e01b0319811681146113c357600080fd5b60006020828403121561237d57600080fd5b81356111f981612355565b80356001600160a01b038116811461239f57600080fd5b919050565b6000602082840312156123b657600080fd5b6111f982612388565b60005b838110156123da5781810151838201526020016123c2565b838111156110805750506000910152565b600081518084526124038160208601602086016123bf565b601f01601f19169290920160200192915050565b6020815260006111f960208301846123eb565b60006020828403121561243c57600080fd5b5035919050565b6000806040838503121561245657600080fd5b61245f83612388565b946020939093013593505050565b60008060006060848603121561248257600080fd5b61248b84612388565b925061249960208501612388565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156124d9576124d96124a9565b604051601f8501601f19908116603f01168101908282118183101715612501576125016124a9565b8160405280935085815286868601111561251a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561254657600080fd5b81356001600160401b0381111561255c57600080fd5b8201601f8101841361256d57600080fd5b6117a7848235602084016124bf565b60008083601f84011261258e57600080fd5b5081356001600160401b038111156125a557600080fd5b6020830191508360208260051b8501011115611fdd57600080fd5b6000806000604084860312156125d557600080fd5b83356001600160401b038111156125eb57600080fd5b6125f78682870161257c565b909450925061260a905060208501612388565b90509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561264b5783518352928401929184019160010161262f565b50909695505050505050565b6000806040838503121561266a57600080fd5b61267383612388565b91506020830135801515811461268857600080fd5b809150509250929050565b600080600080608085870312156126a957600080fd5b6126b285612388565b93506126c060208601612388565b92506040850135915060608501356001600160401b038111156126e257600080fd5b8501601f810187136126f357600080fd5b612702878235602084016124bf565b91505092959194509250565b6000806020838503121561272157600080fd5b82356001600160401b0381111561273757600080fd5b6127438582860161257c565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b8181101561264b5783516001600160a01b03168352928401929184019160010161276b565b600080604083850312156127a357600080fd5b6127ac83612388565b91506127ba60208401612388565b90509250929050565b60008060008060008060a087890312156127dc57600080fd5b8635955060208701359450604087013593506060870135925060808701356001600160401b038082111561280f57600080fd5b818901915089601f83011261282357600080fd5b81358181111561283257600080fd5b8a602082850101111561284457600080fd5b6020830194508093505050509295509295509295565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128a357607f821691505b602082108114156128c457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561298b5761298b612961565b5060010190565b60006001600160401b03808316818114156129af576129af612961565b6001019392505050565b600083516129cb8184602088016123bf565b8351908301906129df8183602088016123bf565b64173539b7b760d91b9101908152600501949350505050565b60008219821115612a0b57612a0b612961565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612a8757612a87612a62565b500490565b600082821015612a9e57612a9e612961565b500390565b600082612ab257612ab2612a62565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aea908301846123eb565b9695505050505050565b600060208284031215612b0657600080fd5b81516111f981612355565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220a1c92511d461d355a8165ef45b47833676c9c0672f0c0ef5b26e3b2d0113036064736f6c634300080a00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004168747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f656c797369756d2d6d657461676f64732d776561706f6e732f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063b88d4fde116100b6578063dc5473011161007a578063dc547301146106da578063e1cee8db146106fa578063e55528911461071a578063e985e9c51461072f578063f2fde38b14610778578063f8ea8f161461079857600080fd5b8063b88d4fde1461061d578063bda801171461063d578063c87b56dd1461066a578063cc47a40b1461068a578063d9ae90a1146106aa57600080fd5b80638462151c116100fd5780638462151c146105835780638da5cb5b146105b057806395d89b41146105ce578063a22cb465146105e3578063a2ee34a81461060357600080fd5b806370a0823114610503578063715018a614610523578063771282f61461053857806381c0b1f01461054e5780638456cb591461056e57600080fd5b806332cb6b0c116101d257806344a0d68a1161019657806344a0d68a146104445780634f6ccce71461046457806355f804b3146104845780635c975abb146104a45780636352211e146104c35780636f9bdf65146104e357600080fd5b806332cb6b0c146103b65780633ca63f2c146103cc5780633f4ba83a146103f957806342842e0e1461040e57806343f433b61461042e57600080fd5b806313faede61161021957806313faede61461032757806318160ddd1461034b57806323b872dd146103605780632a484ad4146103805780632f745c591461039657600080fd5b806301ffc9a714610256578063046dc1661461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b5061027661027136600461236b565b6107ab565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046123a4565b6107d6565b005b3480156102b957600080fd5b506102c261082b565b6040516102829190612417565b3480156102db57600080fd5b506102ef6102ea36600461242a565b6108bd565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004612443565b610945565b34801561033357600080fd5b5061033d60075481565b604051908152602001610282565b34801561035757600080fd5b5060025461033d565b34801561036c57600080fd5b506102ab61037b36600461246d565b610a5b565b34801561038c57600080fd5b5061033d60095481565b3480156103a257600080fd5b5061033d6103b1366004612443565b610a8c565b3480156103c257600080fd5b5061033d6107d081565b3480156103d857600080fd5b5061033d6103e73660046123a4565b600b6020526000908152604090205481565b34801561040557600080fd5b506102ab610b3b565b34801561041a57600080fd5b506102ab61042936600461246d565b610b6f565b34801561043a57600080fd5b5061033d60085481565b34801561045057600080fd5b506102ab61045f36600461242a565b610b8a565b34801561047057600080fd5b5061033d61047f36600461242a565b610bb9565b34801561049057600080fd5b506102ab61049f366004612534565b610c16565b3480156104b057600080fd5b50600554600160a01b900460ff16610276565b3480156104cf57600080fd5b506102ef6104de36600461242a565b610c57565b3480156104ef57600080fd5b506102766104fe3660046125c0565b610ce3565b34801561050f57600080fd5b5061033d61051e3660046123a4565b610d4a565b34801561052f57600080fd5b506102ab610e1c565b34801561054457600080fd5b5061033d60065481565b34801561055a57600080fd5b506102ab61056936600461242a565b610e50565b34801561057a57600080fd5b506102ab610e7f565b34801561058f57600080fd5b506105a361059e3660046123a4565b610eb1565b6040516102829190612613565b3480156105bc57600080fd5b506005546001600160a01b03166102ef565b3480156105da57600080fd5b506102c2610f7a565b3480156105ef57600080fd5b506102ab6105fe366004612657565b610f89565b34801561060f57600080fd5b50600a546102769060ff1681565b34801561062957600080fd5b506102ab610638366004612693565b61104e565b34801561064957600080fd5b5061065d61065836600461270e565b611086565b604051610282919061274f565b34801561067657600080fd5b506102c261068536600461242a565b611143565b34801561069657600080fd5b506102ab6106a5366004612443565b611200565b3480156106b657600080fd5b506102766106c536600461242a565b600d6020526000908152604090205460ff1681565b3480156106e657600080fd5b506102ab6106f536600461242a565b611280565b34801561070657600080fd5b506102ab61071536600461242a565b6112be565b34801561072657600080fd5b506102ab6112ed565b34801561073b57600080fd5b5061027661074a366004612790565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561078457600080fd5b506102ab6107933660046123a4565b61132b565b6102ab6107a63660046127c3565b6113c6565b60006001600160e01b0319821663780e9d6360e01b14806107d057506107d0826115bd565b92915050565b6005546001600160a01b031633146108095760405162461bcd60e51b81526004016108009061285a565b60405180910390fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60606000805461083a9061288f565b80601f01602080910402602001604051908101604052809291908181526020018280546108669061288f565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c88261160d565b6109295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610800565b506000908152600360205260409020546001600160a01b031690565b600061095082610c57565b9050806001600160a01b0316836001600160a01b031614156109be5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610800565b336001600160a01b03821614806109da57506109da813361074a565b610a4c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610800565b610a568383611657565b505050565b610a6533826116c5565b610a815760405162461bcd60e51b8152600401610800906128ca565b610a568383836117af565b6000610a9783610d4a565b8210610ab55760405162461bcd60e51b81526004016108009061291b565b6000805b600254811015610b225760028181548110610ad657610ad661294b565b6000918252602090912001546001600160a01b0386811691161415610b125783821415610b065791506107d09050565b610b0f82612977565b91505b610b1b81612977565b9050610ab9565b5060405162461bcd60e51b81526004016108009061291b565b6005546001600160a01b03163314610b655760405162461bcd60e51b81526004016108009061285a565b610b6d611905565b565b610a568383836040518060200160405280600081525061104e565b6005546001600160a01b03163314610bb45760405162461bcd60e51b81526004016108009061285a565b600755565b6000610bc460025490565b8210610c125760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610800565b5090565b6005546001600160a01b03163314610c405760405162461bcd60e51b81526004016108009061285a565b8051610c5390600e9060208401906122c5565b5050565b60008060028381548110610c6d57610c6d61294b565b6000918252602090912001546001600160a01b03169050806107d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610800565b60006001815b84811015610d4157818015610d2f5750836001600160a01b0316610d24878784818110610d1857610d1861294b565b90506020020135610c57565b6001600160a01b0316145b9150610d3a81612977565b9050610ce9565b50949350505050565b60006001600160a01b038216610db55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610800565b600254600090815b81811015610e135760028181548110610dd857610dd861294b565b6000918252602090912001546001600160a01b0386811691161415610e0357610e0083612977565b92505b610e0c81612977565b9050610dbd565b50909392505050565b6005546001600160a01b03163314610e465760405162461bcd60e51b81526004016108009061285a565b610b6d60006119a2565b6005546001600160a01b03163314610e7a5760405162461bcd60e51b81526004016108009061285a565b600955565b6005546001600160a01b03163314610ea95760405162461bcd60e51b81526004016108009061285a565b610b6d6119f4565b6060610ebc82610d4a565b600010610edb5760405162461bcd60e51b81526004016108009061291b565b6000610ee683610d4a565b90506000816001600160401b03811115610f0257610f026124a9565b604051908082528060200260200182016040528015610f2b578160200160208202803683370190505b50905060005b82811015610f7257610f438582610a8c565b828281518110610f5557610f5561294b565b602090810291909101015280610f6a81612977565b915050610f31565b509392505050565b60606001805461083a9061288f565b6001600160a01b038216331415610fe25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610800565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61105833836116c5565b6110745760405162461bcd60e51b8152600401610800906128ca565b61108084848484611a7c565b50505050565b60606000826001600160401b038111156110a2576110a26124a9565b6040519080825280602002602001820160405280156110cb578160200160208202803683370190505b50905060005b6001600160401b038116841115610f72576111008585836001600160401b0316818110610d1857610d1861294b565b82826001600160401b03168151811061111b5761111b61294b565b6001600160a01b039092166020928302919091019091015261113c81612992565b90506110d1565b606061114e8261160d565b6111a45760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610800565b60006111ae611aaf565b905060008151116111ce57604051806020016040528060008152506111f9565b806111d884611abe565b6040516020016111e99291906129b9565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461122a5760405162461bcd60e51b81526004016108009061285a565b600061123560025490565b60065490915061124583836129f8565b111561125057600080fd5b60005b828110156110805761126e8461126983856129f8565b611bbb565b8061127881612977565b915050611253565b6005546001600160a01b031633146112aa5760405162461bcd60e51b81526004016108009061285a565b6107d08111156112b957600080fd5b600655565b6005546001600160a01b031633146112e85760405162461bcd60e51b81526004016108009061285a565b600855565b6005546001600160a01b031633146113175760405162461bcd60e51b81526004016108009061285a565b600a805460ff19811660ff90911615179055565b6005546001600160a01b031633146113555760405162461bcd60e51b81526004016108009061285a565b6001600160a01b0381166113ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610800565b6113c3816119a2565b50565b600554600160a01b900460ff16156114135760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610800565b6000868152600d602052604090205460ff161561142f57600080fd5b600754841461143d57600080fd5b600a5460ff16156114a457600954336000908152600b60205260409020546114669087906129f8565b11156114a45760405162461bcd60e51b815260206004820152600d60248201526c13125352550814915050d21151609a1b6044820152606401610800565b60006114af60025490565b6006549091506114bf87836129f8565b11156114fe5760405162461bcd60e51b815260206004820152600e60248201526d14d5541413164814915050d2115160921b6044820152606401610800565b61150c878787878787611bd5565b6000878152600d60209081526040808320805460ff19166001179055338352600b909152812080548892906115429084906129f8565b90915550600090505b86811015611573576115613361126983856129f8565b8061156b81612977565b91505061154b565b50604080513381526020810189905260018183015290517fae815f0785f024e22e0dcf37636cdf1f29a33e54314f5264619f24da1f0cdc559181900360600190a150505050505050565b60006001600160e01b031982166380ac58cd60e01b14806115ee57506001600160e01b03198216635b5e139f60e01b145b806107d057506301ffc9a760e01b6001600160e01b03198316146107d0565b600254600090821080156107d0575060006001600160a01b03166002838154811061163a5761163a61294b565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168c82610c57565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116d08261160d565b6117315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610800565b600061173c83610c57565b9050806001600160a01b0316846001600160a01b031614806117775750836001600160a01b031661176c846108bd565b6001600160a01b0316145b806117a757506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117c282610c57565b6001600160a01b03161461182a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610800565b6001600160a01b03821661188c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610800565b611897600082611657565b81600282815481106118ab576118ab61294b565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600554600160a01b900460ff166119555760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610800565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff1615611a415760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610800565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119853390565b611a878484846117af565b611a9384848484611cff565b6110805760405162461bcd60e51b815260040161080090612a10565b6060600e805461083a9061288f565b606081611ae25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b0c5780611af681612977565b9150611b059050600a83612a78565b9150611ae6565b6000816001600160401b03811115611b2657611b266124a9565b6040519080825280601f01601f191660200182016040528015611b50576020820181803683370190505b5090505b84156117a757611b65600183612a8c565b9150611b72600a86612aa3565b611b7d9060306129f8565b60f81b818381518110611b9257611b9261294b565b60200101906001600160f81b031916908160001a905350611bb4600a86612a78565b9450611b54565b610c53828260405180602001604052806000815250611dfd565b60408051602080820189905281830188905260608083018890526080830187905233901b6bffffffffffffffffffffffff191660a08301528251808303609401815260b4830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060d484015260f08084018290528451808503909101815261011090930190935281519101206000611cab8286868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e3092505050565b90506001600160a01b03811615801590611cd25750600c546001600160a01b038281169116145b611cdb57600080fd5b600854611ce890876129f8565b421115611cf457600080fd5b505050505050505050565b60006001600160a01b0384163b15611df257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d43903390899088908890600401612ab7565b6020604051808303816000875af1925050508015611d7e575060408051601f3d908101601f19168201909252611d7b91810190612af4565b60015b611dd8573d808015611dac576040519150601f19603f3d011682016040523d82523d6000602084013e611db1565b606091505b508051611dd05760405162461bcd60e51b815260040161080090612a10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a7565b506001949350505050565b611e078383611e4c565b611e146000848484611cff565b610a565760405162461bcd60e51b815260040161080090612a10565b6000806000611e3f8585611f74565b91509150610f7281611fe4565b6001600160a01b038216611ea25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610800565b611eab8161160d565b15611ef85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610800565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080825160411415611fab5760208301516040840151606085015160001a611f9f8782858561219f565b94509450505050611fdd565b825160401415611fd55760208301516040840151611fca86838361228c565b935093505050611fdd565b506000905060025b9250929050565b6000816004811115611ff857611ff8612b11565b14156120015750565b600181600481111561201557612015612b11565b14156120635760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610800565b600281600481111561207757612077612b11565b14156120c55760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610800565b60038160048111156120d9576120d9612b11565b14156121325760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610800565b600481600481111561214657612146612b11565b14156113c35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610800565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121d65750600090506003612283565b8460ff16601b141580156121ee57508460ff16601c14155b156121ff5750600090506004612283565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612253573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661227c57600060019250925050612283565b9150600090505b94509492505050565b6000806001600160ff1b038316816122a960ff86901c601b6129f8565b90506122b78782888561219f565b935093505050935093915050565b8280546122d19061288f565b90600052602060002090601f0160209004810192826122f35760008555612339565b82601f1061230c57805160ff1916838001178555612339565b82800160010185558215612339579182015b8281111561233957825182559160200191906001019061231e565b50610c129291505b80821115610c125760008155600101612341565b6001600160e01b0319811681146113c357600080fd5b60006020828403121561237d57600080fd5b81356111f981612355565b80356001600160a01b038116811461239f57600080fd5b919050565b6000602082840312156123b657600080fd5b6111f982612388565b60005b838110156123da5781810151838201526020016123c2565b838111156110805750506000910152565b600081518084526124038160208601602086016123bf565b601f01601f19169290920160200192915050565b6020815260006111f960208301846123eb565b60006020828403121561243c57600080fd5b5035919050565b6000806040838503121561245657600080fd5b61245f83612388565b946020939093013593505050565b60008060006060848603121561248257600080fd5b61248b84612388565b925061249960208501612388565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156124d9576124d96124a9565b604051601f8501601f19908116603f01168101908282118183101715612501576125016124a9565b8160405280935085815286868601111561251a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561254657600080fd5b81356001600160401b0381111561255c57600080fd5b8201601f8101841361256d57600080fd5b6117a7848235602084016124bf565b60008083601f84011261258e57600080fd5b5081356001600160401b038111156125a557600080fd5b6020830191508360208260051b8501011115611fdd57600080fd5b6000806000604084860312156125d557600080fd5b83356001600160401b038111156125eb57600080fd5b6125f78682870161257c565b909450925061260a905060208501612388565b90509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561264b5783518352928401929184019160010161262f565b50909695505050505050565b6000806040838503121561266a57600080fd5b61267383612388565b91506020830135801515811461268857600080fd5b809150509250929050565b600080600080608085870312156126a957600080fd5b6126b285612388565b93506126c060208601612388565b92506040850135915060608501356001600160401b038111156126e257600080fd5b8501601f810187136126f357600080fd5b612702878235602084016124bf565b91505092959194509250565b6000806020838503121561272157600080fd5b82356001600160401b0381111561273757600080fd5b6127438582860161257c565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b8181101561264b5783516001600160a01b03168352928401929184019160010161276b565b600080604083850312156127a357600080fd5b6127ac83612388565b91506127ba60208401612388565b90509250929050565b60008060008060008060a087890312156127dc57600080fd5b8635955060208701359450604087013593506060870135925060808701356001600160401b038082111561280f57600080fd5b818901915089601f83011261282357600080fd5b81358181111561283257600080fd5b8a602082850101111561284457600080fd5b6020830194508093505050509295509295509295565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128a357607f821691505b602082108114156128c457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561298b5761298b612961565b5060010190565b60006001600160401b03808316818114156129af576129af612961565b6001019392505050565b600083516129cb8184602088016123bf565b8351908301906129df8183602088016123bf565b64173539b7b760d91b9101908152600501949350505050565b60008219821115612a0b57612a0b612961565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612a8757612a87612a62565b500490565b600082821015612a9e57612a9e612961565b500390565b600082612ab257612ab2612a62565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aea908301846123eb565b9695505050505050565b600060208284031215612b0657600080fd5b81516111f981612355565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220a1c92511d461d355a8165ef45b47833676c9c0672f0c0ef5b26e3b2d0113036064736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004168747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f656c797369756d2d6d657461676f64732d776561706f6e732f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://storage.googleapis.com/elysium-metagods-weapons/metadata/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [2] : 68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f65
Arg [3] : 6c797369756d2d6d657461676f64732d776561706f6e732f6d65746164617461
Arg [4] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46376:4958:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33289:225;;;;;;;;;;-1:-1:-1;33289:225:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33289:225:0;;;;;;;;48462:118;;;;;;;;;;-1:-1:-1;48462:118:0;;;;;:::i;:::-;;:::i;:::-;;27380:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28014:221::-;;;;;;;;;;-1:-1:-1;28014:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;28014:221:0;1897:203:1;27596:412:0;;;;;;;;;;-1:-1:-1;27596:412:0;;;;;:::i;:::-;;:::i;46564:32::-;;;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;46564:32:0;2364:177:1;34450:110:0;;;;;;;;;;-1:-1:-1;34538:7:0;:14;34450:110;;28712:339;;;;;;;;;;-1:-1:-1;28712:339:0;;;;;:::i;:::-;;:::i;46653:34::-;;;;;;;;;;;;;;;;33520:500;;;;;;;;;;-1:-1:-1;33520:500:0;;;;;:::i;:::-;;:::i;46475:41::-;;;;;;;;;;;;46512:4;46475:41;;46743:50;;;;;;;;;;-1:-1:-1;46743:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;50523:65;;;;;;;;;;;;;:::i;29057:185::-;;;;;;;;;;-1:-1:-1;29057:185:0;;;;;:::i;:::-;;:::i;46603:41::-;;;;;;;;;;;;;;;;48771:88;;;;;;;;;;-1:-1:-1;48771:88:0;;;;;:::i;:::-;;:::i;34566:194::-;;;;;;;;;;-1:-1:-1;34566:194:0;;;;;:::i;:::-;;:::i;49326:104::-;;;;;;;;;;-1:-1:-1;49326:104:0;;;;;:::i;:::-;;:::i;35777:86::-;;;;;;;;;;-1:-1:-1;35848:7:0;;-1:-1:-1;;;35848:7:0;;;;35777:86;;27135:239;;;;;;;;;;-1:-1:-1;27135:239:0;;;;;:::i;:::-;;:::i;49438:316::-;;;;;;;;;;-1:-1:-1;49438:316:0;;;;;:::i;:::-;;:::i;26707:422::-;;;;;;;;;;-1:-1:-1;26707:422:0;;;;;:::i;:::-;;:::i;3783:94::-;;;;;;;;;;;;;:::i;46523:34::-;;;;;;;;;;;;;;;;49051:132;;;;;;;;;;-1:-1:-1;49051:132:0;;;;;:::i;:::-;;:::i;50454:61::-;;;;;;;;;;;;;:::i;34026:418::-;;;;;;;;;;-1:-1:-1;34026:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3132:87::-;;;;;;;;;;-1:-1:-1;3205:6:0;;-1:-1:-1;;;;;3205:6:0;3132:87;;27486:104;;;;;;;;;;;;;:::i;28241:295::-;;;;;;;;;;-1:-1:-1;28241:295:0;;;;;:::i;:::-;;:::i;46694:42::-;;;;;;;;;;-1:-1:-1;46694:42:0;;;;;;;;29248:328;;;;;;;;;;-1:-1:-1;29248:328:0;;;;;:::i;:::-;;:::i;49762:323::-;;;;;;;;;;-1:-1:-1;49762:323:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50093:353::-;;;;;;;;;;-1:-1:-1;50093:353:0;;;;;:::i;:::-;;:::i;48151:303::-;;;;;;;;;;-1:-1:-1;48151:303:0;;;;;:::i;:::-;;:::i;46840:47::-;;;;;;;;;;-1:-1:-1;46840:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48588:175;;;;;;;;;;-1:-1:-1;48588:175:0;;;;;:::i;:::-;;:::i;48867:176::-;;;;;;;;;;-1:-1:-1;48867:176:0;;;;;:::i;:::-;;:::i;49191:127::-;;;;;;;;;;;;;:::i;28542:164::-;;;;;;;;;;-1:-1:-1;28542:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28663:25:0;;;28639:4;28663:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28542:164;4032:192;;;;;;;;;;-1:-1:-1;4032:192:0;;;;;:::i;:::-;;:::i;47155:988::-;;;;;;:::i;:::-;;:::i;33289:225::-;33392:4;-1:-1:-1;;;;;;33416:50:0;;-1:-1:-1;;;33416:50:0;;:90;;;33470:36;33494:11;33470:23;:36::i;:::-;33409:97;33289:225;-1:-1:-1;;33289:225:0:o;48462:118::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;;;;;;;;;48542:13:::1;:30:::0;;-1:-1:-1;;;;;;48542:30:0::1;-1:-1:-1::0;;;;;48542:30:0;;;::::1;::::0;;;::::1;::::0;;48462:118::o;27380:100::-;27434:13;27467:5;27460:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27380:100;:::o;28014:221::-;28090:7;28118:16;28126:7;28118;:16::i;:::-;28110:73;;;;-1:-1:-1;;;28110:73:0;;9841:2:1;28110:73:0;;;9823:21:1;9880:2;9860:18;;;9853:30;9919:34;9899:18;;;9892:62;-1:-1:-1;;;9970:18:1;;;9963:42;10022:19;;28110:73:0;9639:408:1;28110:73:0;-1:-1:-1;28203:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28203:24:0;;28014:221::o;27596:412::-;27677:13;27693:24;27709:7;27693:15;:24::i;:::-;27677:40;;27742:5;-1:-1:-1;;;;;27736:11:0;:2;-1:-1:-1;;;;;27736:11:0;;;27728:57;;;;-1:-1:-1;;;27728:57:0;;10254:2:1;27728:57:0;;;10236:21:1;10293:2;10273:18;;;10266:30;10332:34;10312:18;;;10305:62;-1:-1:-1;;;10383:18:1;;;10376:31;10424:19;;27728:57:0;10052:397:1;27728:57:0;2061:10;-1:-1:-1;;;;;27820:21:0;;;;:62;;-1:-1:-1;27845:37:0;27862:5;2061:10;28542:164;:::i;27845:37::-;27798:168;;;;-1:-1:-1;;;27798:168:0;;10656:2:1;27798:168:0;;;10638:21:1;10695:2;10675:18;;;10668:30;10734:34;10714:18;;;10707:62;10805:26;10785:18;;;10778:54;10849:19;;27798:168:0;10454:420:1;27798:168:0;27979:21;27988:2;27992:7;27979:8;:21::i;:::-;27666:342;27596:412;;:::o;28712:339::-;28907:41;2061:10;28940:7;28907:18;:41::i;:::-;28899:103;;;;-1:-1:-1;;;28899:103:0;;;;;;;:::i;:::-;29015:28;29025:4;29031:2;29035:7;29015:9;:28::i;33520:500::-;33609:15;33653:24;33671:5;33653:17;:24::i;:::-;33645:5;:32;33637:67;;;;-1:-1:-1;;;33637:67:0;;;;;;;:::i;:::-;33715:10;33741:6;33736:226;33753:7;:14;33749:18;;33736:226;;;33802:7;33810:1;33802:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;33793:19:0;;;33802:10;;33793:19;33789:162;;;33846:5;33837;:14;33833:102;;;33882:1;-1:-1:-1;33875:8:0;;-1:-1:-1;33875:8:0;33833:102;33928:7;;;:::i;:::-;;;33833:102;33769:3;;;:::i;:::-;;;33736:226;;;-1:-1:-1;33972:40:0;;-1:-1:-1;;;33972:40:0;;;;;;;:::i;50523:65::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;50570:10:::1;:8;:10::i;:::-;50523:65::o:0;29057:185::-;29195:39;29212:4;29218:2;29222:7;29195:39;;;;;;;;;;;;:16;:39::i;48771:88::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;48836:4:::1;:15:::0;48771:88::o;34566:194::-;34641:7;34677:24;34538:7;:14;;34450:110;34677:24;34669:5;:32;34661:68;;;;-1:-1:-1;;;34661:68:0;;12254:2:1;34661:68:0;;;12236:21:1;12293:2;12273:18;;;12266:30;12332:25;12312:18;;;12305:53;12375:18;;34661:68:0;12052:347:1;34661:68:0;-1:-1:-1;34747:5:0;34566:194::o;49326:104::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;49401:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49326:104:::0;:::o;27135:239::-;27207:7;27227:13;27243:7;27251;27243:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;27243:16:0;;-1:-1:-1;27278:19:0;27270:73;;;;-1:-1:-1;;;27270:73:0;;12606:2:1;27270:73:0;;;12588:21:1;12645:2;12625:18;;;12618:30;12684:34;12664:18;;;12657:62;-1:-1:-1;;;12735:18:1;;;12728:39;12784:19;;27270:73:0;12404:405:1;49438:316:0;49533:4;49567;49533;49584:134;49604:20;;;49584:134;;;49658:9;:48;;;;;49697:8;-1:-1:-1;;;;;49672:33:0;:21;49680:9;;49690:1;49680:12;;;;;;;:::i;:::-;;;;;;;49672:7;:21::i;:::-;-1:-1:-1;;;;;49672:33:0;;49658:48;49646:60;-1:-1:-1;49626:3:0;;;:::i;:::-;;;49584:134;;;-1:-1:-1;49737:9:0;49438:316;-1:-1:-1;;;;49438:316:0:o;26707:422::-;26779:7;-1:-1:-1;;;;;26807:19:0;;26799:74;;;;-1:-1:-1;;;26799:74:0;;13016:2:1;26799:74:0;;;12998:21:1;13055:2;13035:18;;;13028:30;13094:34;13074:18;;;13067:62;-1:-1:-1;;;13145:18:1;;;13138:40;13195:19;;26799:74:0;12814:406:1;26799:74:0;26923:7;:14;26884:10;;;26948:127;26969:6;26965:1;:10;26948:127;;;27010:7;27018:1;27010:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;27001:19:0;;;27010:10;;27001:19;26997:67;;;27041:7;;;:::i;:::-;;;26997:67;26977:3;;;:::i;:::-;;;26948:127;;;-1:-1:-1;27116:5:0;;26707:422;-1:-1:-1;;;26707:422:0:o;3783:94::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;3848:21:::1;3866:1;3848:9;:21::i;49051:132::-:0;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;49138:15:::1;:37:::0;49051:132::o;50454:61::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;50499:8:::1;:6;:8::i;34026:418::-:0;34085:16;34126:24;34144:5;34126:17;:24::i;:::-;34122:1;:28;34114:63;;;;-1:-1:-1;;;34114:63:0;;;;;;;:::i;:::-;34188:18;34209:16;34219:5;34209:9;:16::i;:::-;34188:37;;34236:25;34278:10;-1:-1:-1;;;;;34264:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34264:25:0;;34236:53;;34305:9;34300:111;34324:10;34320:1;:14;34300:111;;;34370:29;34390:5;34397:1;34370:19;:29::i;:::-;34356:8;34365:1;34356:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;34336:3;;;;:::i;:::-;;;;34300:111;;;-1:-1:-1;34428:8:0;34026:418;-1:-1:-1;;;34026:418:0:o;27486:104::-;27542:13;27575:7;27568:14;;;;;:::i;28241:295::-;-1:-1:-1;;;;;28344:24:0;;2061:10;28344:24;;28336:62;;;;-1:-1:-1;;;28336:62:0;;13427:2:1;28336:62:0;;;13409:21:1;13466:2;13446:18;;;13439:30;13505:27;13485:18;;;13478:55;13550:18;;28336:62:0;13225:349:1;28336:62:0;2061:10;28411:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28411:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28411:53:0;;;;;;;;;;28480:48;;540:41:1;;;28411:42:0;;2061:10;28480:48;;513:18:1;28480:48:0;;;;;;;28241:295;;:::o;29248:328::-;29423:41;2061:10;29456:7;29423:18;:41::i;:::-;29415:103;;;;-1:-1:-1;;;29415:103:0;;;;;;;:::i;:::-;29529:39;29543:4;29549:2;29553:7;29562:5;29529:13;:39::i;:::-;29248:328;;;;:::o;49762:323::-;49837:16;49868:26;49911:9;-1:-1:-1;;;;;49897:31:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49897:31:0;;49868:60;;49945:8;49941:108;-1:-1:-1;;;;;49959:20:0;;;-1:-1:-1;49941:108:0;;;50016:21;50024:9;;50034:1;-1:-1:-1;;;;;50024:12:0;;;;;;;;:::i;50016:21::-;50001:9;50011:1;-1:-1:-1;;;;;50001:12:0;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50001:36:0;;;:12;;;;;;;;;;;:36;49981:3;;;:::i;:::-;;;49941:108;;50093:353;50169:13;50203:17;50211:8;50203:7;:17::i;:::-;50195:63;;;;-1:-1:-1;;;50195:63:0;;13995:2:1;50195:63:0;;;13977:21:1;14034:2;14014:18;;;14007:30;14073:34;14053:18;;;14046:62;-1:-1:-1;;;14124:18:1;;;14117:31;14165:19;;50195:63:0;13793:397:1;50195:63:0;50269:28;50300:10;:8;:10::i;:::-;50269:41;;50359:1;50334:14;50328:28;:32;:110;;;;;;;;;;;;;;;;;50387:14;50403:19;:8;:17;:19::i;:::-;50370:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50328:110;50321:117;50093:353;-1:-1:-1;;;50093:353:0:o;48151:303::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;48233:19:::1;48255:13;34538:7:::0;:14;;34450:110;48255:13:::1;48319;::::0;48233:35;;-1:-1:-1;48287:28:0::1;48301:14:::0;48233:35;48287:28:::1;:::i;:::-;:45;;48279:54;;;::::0;::::1;;48349:9;48344:103;48368:14;48364:1;:18;48344:103;;;48404:31;48414:3:::0;48419:15:::1;48433:1:::0;48419:11;:15:::1;:::i;:::-;48404:9;:31::i;:::-;48384:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48344:103;;48588:175:::0;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;46512:4:::1;48679:17;:31;;48671:40;;;::::0;::::1;;48722:13;:33:::0;48588:175::o;48867:176::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;48976:26:::1;:59:::0;48867:176::o;49191:127::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;49287:23:::1;::::0;;-1:-1:-1;;49260:50:0;::::1;49287:23;::::0;;::::1;49286:24;49260:50;::::0;;49191:127::o;4032:192::-;3205:6;;-1:-1:-1;;;;;3205:6:0;2061:10;3352:23;3344:68;;;;-1:-1:-1;;;3344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4121:22:0;::::1;4113:73;;;::::0;-1:-1:-1;;;4113:73:0;;15172:2:1;4113:73:0::1;::::0;::::1;15154:21:1::0;15211:2;15191:18;;;15184:30;15250:34;15230:18;;;15223:62;-1:-1:-1;;;15301:18:1;;;15294:36;15347:19;;4113:73:0::1;14970:402:1::0;4113:73:0::1;4197:19;4207:8;4197:9;:19::i;:::-;4032:192:::0;:::o;47155:988::-;35848:7;;-1:-1:-1;;;35848:7:0;;;;36102:9;36094:38;;;;-1:-1:-1;;;36094:38:0;;15579:2:1;36094:38:0;;;15561:21:1;15618:2;15598:18;;;15591:30;-1:-1:-1;;;15637:18:1;;;15630:46;15693:18;;36094:38:0;15377:340:1;36094:38:0;47355:36:::1;::::0;;;:15:::1;:36;::::0;;;;;::::1;;:45;47347:54;;;::::0;::::1;;47436:4;;47420:12;:20;47412:29;;;::::0;::::1;;47455:23;::::0;::::1;;47452:137;;;47544:15;::::0;47519:10:::1;47503:27;::::0;;;:15:::1;:27;::::0;;;;;:37:::1;::::0;47533:7;;47503:37:::1;:::i;:::-;:56;;47495:82;;;::::0;-1:-1:-1;;;47495:82:0;;15924:2:1;47495:82:0::1;::::0;::::1;15906:21:1::0;15963:2;15943:18;;;15936:30;-1:-1:-1;;;15982:18:1;;;15975:43;16035:18;;47495:82:0::1;15722:337:1::0;47495:82:0::1;47599:19;47621:13;34538:7:::0;:14;;34450:110;47621:13:::1;47678;::::0;47599:35;;-1:-1:-1;47653:21:0::1;47667:7:::0;47599:35;47653:21:::1;:::i;:::-;:38;;47645:65;;;::::0;-1:-1:-1;;;47645:65:0;;16266:2:1;47645:65:0::1;::::0;::::1;16248:21:1::0;16305:2;16285:18;;;16278:30;-1:-1:-1;;;16324:18:1;;;16317:44;16378:18;;47645:65:0::1;16064:338:1::0;47645:65:0::1;47721:95;47744:19;47765:7;47774:12;47788:15;47805:10;;47721:22;:95::i;:::-;47827:36;::::0;;;:15:::1;:36;::::0;;;;;;;:43;;-1:-1:-1;;47827:43:0::1;47866:4;47827:43;::::0;;47897:10:::1;47881:27:::0;;:15:::1;:27:::0;;;;;:38;;47912:7;;47827:36;47881:38:::1;::::0;47912:7;;47881:38:::1;:::i;:::-;::::0;;;-1:-1:-1;47935:9:0::1;::::0;-1:-1:-1;47930:103:0::1;47954:7;47950:1;:11;47930:103;;;47983:38;47993:10;48005:15;48019:1:::0;48005:11;:15:::1;:::i;47983:38::-;47963:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47930:103;;;-1:-1:-1::0;48048:58:0::1;::::0;;48068:10:::1;16603:51:1::0;;16685:2;16670:18;;16663:34;;;48101:4:0::1;16713:18:1::0;;;16706:50;48048:58:0;;::::1;::::0;;;;16591:2:1;48048:58:0;;::::1;-1:-1:-1::0;;;;;;;47155:988:0:o;26408:293::-;26510:4;-1:-1:-1;;;;;;26543:40:0;;-1:-1:-1;;;26543:40:0;;:101;;-1:-1:-1;;;;;;;26596:48:0;;-1:-1:-1;;;26596:48:0;26543:101;:150;;;-1:-1:-1;;;;;;;;;;25870:40:0;;;26657:36;25761:157;29903:155;30002:7;:14;29968:4;;29992:24;;:58;;;;;30048:1;-1:-1:-1;;;;;30020:30:0;:7;30028;30020:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;30020:16:0;:30;;29985:65;29903:155;-1:-1:-1;;29903:155:0:o;32076:175::-;32151:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32151:29:0;-1:-1:-1;;;;;32151:29:0;;;;;;;;:24;;32205;32151;32205:15;:24::i;:::-;-1:-1:-1;;;;;32196:47:0;;;;;;;;;;;32076:175;;:::o;30064:349::-;30157:4;30182:16;30190:7;30182;:16::i;:::-;30174:73;;;;-1:-1:-1;;;30174:73:0;;16969:2:1;30174:73:0;;;16951:21:1;17008:2;16988:18;;;16981:30;17047:34;17027:18;;;17020:62;-1:-1:-1;;;17098:18:1;;;17091:42;17150:19;;30174:73:0;16767:408:1;30174:73:0;30258:13;30274:24;30290:7;30274:15;:24::i;:::-;30258:40;;30328:5;-1:-1:-1;;;;;30317:16:0;:7;-1:-1:-1;;;;;30317:16:0;;:51;;;;30361:7;-1:-1:-1;;;;;30337:31:0;:20;30349:7;30337:11;:20::i;:::-;-1:-1:-1;;;;;30337:31:0;;30317:51;:87;;;-1:-1:-1;;;;;;28663:25:0;;;28639:4;28663:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30372:32;30309:96;30064:349;-1:-1:-1;;;;30064:349:0:o;31553:517::-;31713:4;-1:-1:-1;;;;;31685:32:0;:24;31701:7;31685:15;:24::i;:::-;-1:-1:-1;;;;;31685:32:0;;31677:86;;;;-1:-1:-1;;;31677:86:0;;17382:2:1;31677:86:0;;;17364:21:1;17421:2;17401:18;;;17394:30;17460:34;17440:18;;;17433:62;-1:-1:-1;;;17511:18:1;;;17504:39;17560:19;;31677:86:0;17180:405:1;31677:86:0;-1:-1:-1;;;;;31782:16:0;;31774:65;;;;-1:-1:-1;;;31774:65:0;;17792:2:1;31774:65:0;;;17774:21:1;17831:2;17811:18;;;17804:30;17870:34;17850:18;;;17843:62;-1:-1:-1;;;17921:18:1;;;17914:34;17965:19;;31774:65:0;17590:400:1;31774:65:0;31956:29;31973:1;31977:7;31956:8;:29::i;:::-;32015:2;31996:7;32004;31996:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;31996:21:0;-1:-1:-1;;;;;31996:21:0;;;;;;32035:27;;32054:7;;32035:27;;;;;;;;;;31996:16;32035:27;31553:517;;;:::o;36836:120::-;35848:7;;-1:-1:-1;;;35848:7:0;;;;36372:41;;;;-1:-1:-1;;;36372:41:0;;18197:2:1;36372:41:0;;;18179:21:1;18236:2;18216:18;;;18209:30;-1:-1:-1;;;18255:18:1;;;18248:50;18315:18;;36372:41:0;17995:344:1;36372:41:0;36895:7:::1;:15:::0;;-1:-1:-1;;;;36895:15:0::1;::::0;;36926:22:::1;2061:10:::0;36935:12:::1;36926:22;::::0;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;36926:22:0::1;;;;;;;36836:120::o:0;4232:173::-;4307:6;;;-1:-1:-1;;;;;4324:17:0;;;-1:-1:-1;;;;;;4324:17:0;;;;;;;4357:40;;4307:6;;;4324:17;4307:6;;4357:40;;4288:16;;4357:40;4277:128;4232:173;:::o;36577:118::-;35848:7;;-1:-1:-1;;;35848:7:0;;;;36102:9;36094:38;;;;-1:-1:-1;;;36094:38:0;;15579:2:1;36094:38:0;;;15561:21:1;15618:2;15598:18;;;15591:30;-1:-1:-1;;;15637:18:1;;;15630:46;15693:18;;36094:38:0;15377:340:1;36094:38:0;36637:7:::1;:14:::0;;-1:-1:-1;;;;36637:14:0::1;-1:-1:-1::0;;;36637:14:0::1;::::0;;36667:20:::1;36674:12;2061:10:::0;;1981:98;29582:315;29739:28;29749:4;29755:2;29759:7;29739:9;:28::i;:::-;29786:48;29809:4;29815:2;29819:7;29828:5;29786:22;:48::i;:::-;29778:111;;;;-1:-1:-1;;;29778:111:0;;;;;;;:::i;51232:99::-;51283:13;51316:7;51309:14;;;;;:::i;4665:723::-;4721:13;4942:10;4938:53;;-1:-1:-1;;4969:10:0;;;;;;;;;;;;-1:-1:-1;;;4969:10:0;;;;;4665:723::o;4938:53::-;5016:5;5001:12;5057:78;5064:9;;5057:78;;5090:8;;;;:::i;:::-;;-1:-1:-1;5113:10:0;;-1:-1:-1;5121:2:0;5113:10;;:::i;:::-;;;5057:78;;;5145:19;5177:6;-1:-1:-1;;;;;5167:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5167:17:0;;5145:39;;5195:154;5202:10;;5195:154;;5229:11;5239:1;5229:11;;:::i;:::-;;-1:-1:-1;5298:10:0;5306:2;5298:5;:10;:::i;:::-;5285:24;;:2;:24;:::i;:::-;5272:39;;5255:6;5262;5255:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5255:56:0;;;;;;;;-1:-1:-1;5326:11:0;5335:2;5326:11;;:::i;:::-;;;5195:154;;30419:110;30495:26;30505:2;30509:7;30495:26;;;;;;;;;;;;:9;:26::i;50596:628::-;50818:89;;;;;;;19508:19:1;;;19543:12;;;19536:28;;;19580:12;;;;19573:28;;;19617:12;;;19610:28;;;50896:10:0;19673:15:1;;-1:-1:-1;;19669:53:1;19654:13;;;19647:76;50818:89:0;;;;;;;;;19739:13:1;;;50818:89:0;;50808:100;;;;;;20753:66:1;45233:58:0;;;20741:79:1;20836:12;;;;20829:28;;;45233:58:0;;;;;;;;;;20873:12:1;;;;45233:58:0;;;45223:69;;;;;50986:23;51012:34;51026:7;51035:10;;51012:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51012:13:0;;-1:-1:-1;;;51012:34:0:i;:::-;50986:60;-1:-1:-1;;;;;;51065:29:0;;;;;;:65;;-1:-1:-1;51117:13:0;;-1:-1:-1;;;;;51098:32:0;;;51117:13;;51098:32;51065:65;51057:74;;;;;;51188:26;;51170:44;;:15;:44;:::i;:::-;51150:15;:65;;51142:74;;;;;;50778:446;;;50596:628;;;;;;:::o;32257:799::-;32412:4;-1:-1:-1;;;;;32433:13:0;;18028:20;18076:8;32429:620;;32469:72;;-1:-1:-1;;;32469:72:0;;-1:-1:-1;;;;;32469:36:0;;;;;:72;;2061:10;;32520:4;;32526:7;;32535:5;;32469:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32469:72:0;;;;;;;;-1:-1:-1;;32469:72:0;;;;;;;;;;;;:::i;:::-;;;32465:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32711:13:0;;32707:272;;32754:60;;-1:-1:-1;;;32754:60:0;;;;;;;:::i;32707:272::-;32929:6;32923:13;32914:6;32910:2;32906:15;32899:38;32465:529;-1:-1:-1;;;;;;32592:51:0;-1:-1:-1;;;32592:51:0;;-1:-1:-1;32585:58:0;;32429:620;-1:-1:-1;33033:4:0;32257:799;;;;;;:::o;30535:321::-;30665:18;30671:2;30675:7;30665:5;:18::i;:::-;30716:54;30747:1;30751:2;30755:7;30764:5;30716:22;:54::i;:::-;30694:154;;;;-1:-1:-1;;;30694:154:0;;;;;;;:::i;41229:231::-;41307:7;41328:17;41347:18;41369:27;41380:4;41386:9;41369:10;:27::i;:::-;41327:69;;;;41407:18;41419:5;41407:11;:18::i;30862:346::-;-1:-1:-1;;;;;30942:16:0;;30934:61;;;;-1:-1:-1;;;30934:61:0;;21098:2:1;30934:61:0;;;21080:21:1;;;21117:18;;;21110:30;21176:34;21156:18;;;21149:62;21228:18;;30934:61:0;20896:356:1;30934:61:0;31015:16;31023:7;31015;:16::i;:::-;31014:17;31006:58;;;;-1:-1:-1;;;31006:58:0;;21459:2:1;31006:58:0;;;21441:21:1;21498:2;21478:18;;;21471:30;21537;21517:18;;;21510:58;21585:18;;31006:58:0;21257:352:1;31006:58:0;31133:7;:16;;;;;;;-1:-1:-1;31133:16:0;;;;;;;-1:-1:-1;;;;;;31133:16:0;-1:-1:-1;;;;;31133:16:0;;;;;;;;31167:33;;31192:7;;-1:-1:-1;31167:33:0;;-1:-1:-1;;31167:33:0;30862:346;;:::o;39119:1308::-;39200:7;39209:12;39434:9;:16;39454:2;39434:22;39430:990;;;39730:4;39715:20;;39709:27;39780:4;39765:20;;39759:27;39838:4;39823:20;;39817:27;39473:9;39809:36;39881:25;39892:4;39809:36;39709:27;39759;39881:10;:25::i;:::-;39874:32;;;;;;;;;39430:990;39928:9;:16;39948:2;39928:22;39924:496;;;40203:4;40188:20;;40182:27;40254:4;40239:20;;40233:27;40296:23;40307:4;40182:27;40233;40296:10;:23::i;:::-;40289:30;;;;;;;;39924:496;-1:-1:-1;40368:1:0;;-1:-1:-1;40372:35:0;39924:496;39119:1308;;;;;:::o;37390:643::-;37468:20;37459:5;:29;;;;;;;;:::i;:::-;;37455:571;;;37390:643;:::o;37455:571::-;37566:29;37557:5;:38;;;;;;;;:::i;:::-;;37553:473;;;37612:34;;-1:-1:-1;;;37612:34:0;;21948:2:1;37612:34:0;;;21930:21:1;21987:2;21967:18;;;21960:30;22026:26;22006:18;;;21999:54;22070:18;;37612:34:0;21746:348:1;37553:473:0;37677:35;37668:5;:44;;;;;;;;:::i;:::-;;37664:362;;;37729:41;;-1:-1:-1;;;37729:41:0;;22301:2:1;37729:41:0;;;22283:21:1;22340:2;22320:18;;;22313:30;22379:33;22359:18;;;22352:61;22430:18;;37729:41:0;22099:355:1;37664:362:0;37801:30;37792:5;:39;;;;;;;;:::i;:::-;;37788:238;;;37848:44;;-1:-1:-1;;;37848:44:0;;22661:2:1;37848:44:0;;;22643:21:1;22700:2;22680:18;;;22673:30;22739:34;22719:18;;;22712:62;-1:-1:-1;;;22790:18:1;;;22783:32;22832:19;;37848:44:0;22459:398:1;37788:238:0;37923:30;37914:5;:39;;;;;;;;:::i;:::-;;37910:116;;;37970:44;;-1:-1:-1;;;37970:44:0;;23064:2:1;37970:44:0;;;23046:21:1;23103:2;23083:18;;;23076:30;23142:34;23122:18;;;23115:62;-1:-1:-1;;;23193:18:1;;;23186:32;23235:19;;37970:44:0;22862:398:1;42681:1632:0;42812:7;;43746:66;43733:79;;43729:163;;;-1:-1:-1;43845:1:0;;-1:-1:-1;43849:30:0;43829:51;;43729:163;43906:1;:7;;43911:2;43906:7;;:18;;;;;43917:1;:7;;43922:2;43917:7;;43906:18;43902:102;;;-1:-1:-1;43957:1:0;;-1:-1:-1;43961:30:0;43941:51;;43902:102;44118:24;;;44101:14;44118:24;;;;;;;;;23492:25:1;;;23565:4;23553:17;;23533:18;;;23526:45;;;;23587:18;;;23580:34;;;23630:18;;;23623:34;;;44118:24:0;;23464:19:1;;44118:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44118:24:0;;-1:-1:-1;;44118:24:0;;;-1:-1:-1;;;;;;;44157:20:0;;44153:103;;44210:1;44214:29;44194:50;;;;;;;44153:103;44276:6;-1:-1:-1;44284:20:0;;-1:-1:-1;42681:1632:0;;;;;;;;:::o;41723:344::-;41837:7;;-1:-1:-1;;;;;41883:80:0;;41837:7;41990:25;42006:3;41991:18;;;42013:2;41990:25;:::i;:::-;41974:42;;42034:25;42045:4;42051:1;42054;42057;42034:10;:25::i;:::-;42027:32;;;;;;41723:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:258::-;1033:1;1043:113;1057:6;1054:1;1051:13;1043:113;;;1133:11;;;1127:18;1114:11;;;1107:39;1079:2;1072:10;1043:113;;;1174:6;1171:1;1168:13;1165:48;;;-1:-1:-1;;1209:1:1;1191:16;;1184:27;961:258::o;1224:::-;1266:3;1304:5;1298:12;1331:6;1326:3;1319:19;1347:63;1403:6;1396:4;1391:3;1387:14;1380:4;1373:5;1369:16;1347:63;:::i;:::-;1464:2;1443:15;-1:-1:-1;;1439:29:1;1430:39;;;;1471:4;1426:50;;1224:258;-1:-1:-1;;1224:258:1:o;1487:220::-;1636:2;1625:9;1618:21;1599:4;1656:45;1697:2;1686:9;1682:18;1674:6;1656:45;:::i;1712:180::-;1771:6;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;-1:-1:-1;1863:23:1;;1712:180;-1:-1:-1;1712:180:1:o;2105:254::-;2173:6;2181;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2273:29;2292:9;2273:29;:::i;:::-;2263:39;2349:2;2334:18;;;;2321:32;;-1:-1:-1;;;2105:254:1:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;-1:-1:-1;;;;;3147:2:1;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;-1:-1:-1;;;;;3851:6:1;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:367::-;4167:8;4177:6;4231:3;4224:4;4216:6;4212:17;4208:27;4198:55;;4249:1;4246;4239:12;4198:55;-1:-1:-1;4272:20:1;;-1:-1:-1;;;;;4304:30:1;;4301:50;;;4347:1;4344;4337:12;4301:50;4384:4;4376:6;4372:17;4360:29;;4444:3;4437:4;4427:6;4424:1;4420:14;4412:6;4408:27;4404:38;4401:47;4398:67;;;4461:1;4458;4451:12;4476:511;4571:6;4579;4587;4640:2;4628:9;4619:7;4615:23;4611:32;4608:52;;;4656:1;4653;4646:12;4608:52;4696:9;4683:23;-1:-1:-1;;;;;4721:6:1;4718:30;4715:50;;;4761:1;4758;4751:12;4715:50;4800:70;4862:7;4853:6;4842:9;4838:22;4800:70;:::i;:::-;4889:8;;-1:-1:-1;4774:96:1;-1:-1:-1;4943:38:1;;-1:-1:-1;4977:2:1;4962:18;;4943:38;:::i;:::-;4933:48;;4476:511;;;;;:::o;4992:632::-;5163:2;5215:21;;;5285:13;;5188:18;;;5307:22;;;5134:4;;5163:2;5386:15;;;;5360:2;5345:18;;;5134:4;5429:169;5443:6;5440:1;5437:13;5429:169;;;5504:13;;5492:26;;5573:15;;;;5538:12;;;;5465:1;5458:9;5429:169;;;-1:-1:-1;5615:3:1;;4992:632;-1:-1:-1;;;;;;4992:632:1:o;5629:347::-;5694:6;5702;5755:2;5743:9;5734:7;5730:23;5726:32;5723:52;;;5771:1;5768;5761:12;5723:52;5794:29;5813:9;5794:29;:::i;:::-;5784:39;;5873:2;5862:9;5858:18;5845:32;5920:5;5913:13;5906:21;5899:5;5896:32;5886:60;;5942:1;5939;5932:12;5886:60;5965:5;5955:15;;;5629:347;;;;;:::o;5981:667::-;6076:6;6084;6092;6100;6153:3;6141:9;6132:7;6128:23;6124:33;6121:53;;;6170:1;6167;6160:12;6121:53;6193:29;6212:9;6193:29;:::i;:::-;6183:39;;6241:38;6275:2;6264:9;6260:18;6241:38;:::i;:::-;6231:48;;6326:2;6315:9;6311:18;6298:32;6288:42;;6381:2;6370:9;6366:18;6353:32;-1:-1:-1;;;;;6400:6:1;6397:30;6394:50;;;6440:1;6437;6430:12;6394:50;6463:22;;6516:4;6508:13;;6504:27;-1:-1:-1;6494:55:1;;6545:1;6542;6535:12;6494:55;6568:74;6634:7;6629:2;6616:16;6611:2;6607;6603:11;6568:74;:::i;:::-;6558:84;;;5981:667;;;;;;;:::o;6653:437::-;6739:6;6747;6800:2;6788:9;6779:7;6775:23;6771:32;6768:52;;;6816:1;6813;6806:12;6768:52;6856:9;6843:23;-1:-1:-1;;;;;6881:6:1;6878:30;6875:50;;;6921:1;6918;6911:12;6875:50;6960:70;7022:7;7013:6;7002:9;6998:22;6960:70;:::i;:::-;7049:8;;6934:96;;-1:-1:-1;6653:437:1;-1:-1:-1;;;;6653:437:1:o;7095:658::-;7266:2;7318:21;;;7388:13;;7291:18;;;7410:22;;;7237:4;;7266:2;7489:15;;;;7463:2;7448:18;;;7237:4;7532:195;7546:6;7543:1;7540:13;7532:195;;;7611:13;;-1:-1:-1;;;;;7607:39:1;7595:52;;7702:15;;;;7667:12;;;;7643:1;7561:9;7532:195;;7758:260;7826:6;7834;7887:2;7875:9;7866:7;7862:23;7858:32;7855:52;;;7903:1;7900;7893:12;7855:52;7926:29;7945:9;7926:29;:::i;:::-;7916:39;;7974:38;8008:2;7997:9;7993:18;7974:38;:::i;:::-;7964:48;;7758:260;;;;;:::o;8023:865::-;8129:6;8137;8145;8153;8161;8169;8222:3;8210:9;8201:7;8197:23;8193:33;8190:53;;;8239:1;8236;8229:12;8190:53;8275:9;8262:23;8252:33;;8332:2;8321:9;8317:18;8304:32;8294:42;;8383:2;8372:9;8368:18;8355:32;8345:42;;8434:2;8423:9;8419:18;8406:32;8396:42;;8489:3;8478:9;8474:19;8461:33;-1:-1:-1;;;;;8554:2:1;8546:6;8543:14;8540:34;;;8570:1;8567;8560:12;8540:34;8608:6;8597:9;8593:22;8583:32;;8653:7;8646:4;8642:2;8638:13;8634:27;8624:55;;8675:1;8672;8665:12;8624:55;8715:2;8702:16;8741:2;8733:6;8730:14;8727:34;;;8757:1;8754;8747:12;8727:34;8802:7;8797:2;8788:6;8784:2;8780:15;8776:24;8773:37;8770:57;;;8823:1;8820;8813:12;8770:57;8854:2;8850;8846:11;8836:21;;8876:6;8866:16;;;;;8023:865;;;;;;;;:::o;8893:356::-;9095:2;9077:21;;;9114:18;;;9107:30;9173:34;9168:2;9153:18;;9146:62;9240:2;9225:18;;8893:356::o;9254:380::-;9333:1;9329:12;;;;9376;;;9397:61;;9451:4;9443:6;9439:17;9429:27;;9397:61;9504:2;9496:6;9493:14;9473:18;9470:38;9467:161;;;9550:10;9545:3;9541:20;9538:1;9531:31;9585:4;9582:1;9575:15;9613:4;9610:1;9603:15;9467:161;;9254:380;;;:::o;10879:413::-;11081:2;11063:21;;;11120:2;11100:18;;;11093:30;11159:34;11154:2;11139:18;;11132:62;-1:-1:-1;;;11225:2:1;11210:18;;11203:47;11282:3;11267:19;;10879:413::o;11297:346::-;11499:2;11481:21;;;11538:2;11518:18;;;11511:30;-1:-1:-1;;;11572:2:1;11557:18;;11550:52;11634:2;11619:18;;11297:346::o;11648:127::-;11709:10;11704:3;11700:20;11697:1;11690:31;11740:4;11737:1;11730:15;11764:4;11761:1;11754:15;11780:127;11841:10;11836:3;11832:20;11829:1;11822:31;11872:4;11869:1;11862:15;11896:4;11893:1;11886:15;11912:135;11951:3;-1:-1:-1;;11972:17:1;;11969:43;;;11992:18;;:::i;:::-;-1:-1:-1;12039:1:1;12028:13;;11912:135::o;13579:209::-;13617:3;-1:-1:-1;;;;;13698:2:1;13691:5;13687:14;13725:2;13716:7;13713:15;13710:41;;;13731:18;;:::i;:::-;13780:1;13767:15;;13579:209;-1:-1:-1;;;13579:209:1:o;14195:637::-;14475:3;14513:6;14507:13;14529:53;14575:6;14570:3;14563:4;14555:6;14551:17;14529:53;:::i;:::-;14645:13;;14604:16;;;;14667:57;14645:13;14604:16;14701:4;14689:17;;14667:57;:::i;:::-;-1:-1:-1;;;14746:20:1;;14775:22;;;14824:1;14813:13;;14195:637;-1:-1:-1;;;;14195:637:1:o;14837:128::-;14877:3;14908:1;14904:6;14901:1;14898:13;14895:39;;;14914:18;;:::i;:::-;-1:-1:-1;14950:9:1;;14837:128::o;18344:414::-;18546:2;18528:21;;;18585:2;18565:18;;;18558:30;18624:34;18619:2;18604:18;;18597:62;-1:-1:-1;;;18690:2:1;18675:18;;18668:48;18748:3;18733:19;;18344:414::o;18763:127::-;18824:10;18819:3;18815:20;18812:1;18805:31;18855:4;18852:1;18845:15;18879:4;18876:1;18869:15;18895:120;18935:1;18961;18951:35;;18966:18;;:::i;:::-;-1:-1:-1;19000:9:1;;18895:120::o;19020:125::-;19060:4;19088:1;19085;19082:8;19079:34;;;19093:18;;:::i;:::-;-1:-1:-1;19130:9:1;;19020:125::o;19150:112::-;19182:1;19208;19198:35;;19213:18;;:::i;:::-;-1:-1:-1;19247:9:1;;19150:112::o;19763:489::-;-1:-1:-1;;;;;20032:15:1;;;20014:34;;20084:15;;20079:2;20064:18;;20057:43;20131:2;20116:18;;20109:34;;;20179:3;20174:2;20159:18;;20152:31;;;19957:4;;20200:46;;20226:19;;20218:6;20200:46;:::i;:::-;20192:54;19763:489;-1:-1:-1;;;;;;19763:489:1:o;20257:249::-;20326:6;20379:2;20367:9;20358:7;20354:23;20350:32;20347:52;;;20395:1;20392;20385:12;20347:52;20427:9;20421:16;20446:30;20470:5;20446:30;:::i;21614:127::-;21675:10;21670:3;21666:20;21663:1;21656:31;21706:4;21703:1;21696:15;21730:4;21727:1;21720:15

Swarm Source

ipfs://a1c92511d461d355a8165ef45b47833676c9c0672f0c0ef5b26e3b2d01130360
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.