ETH Price: $2,592.19 (-2.62%)

Token

EvilDevils (EDC)
 

Overview

Max Total Supply

41 EDC

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EDC
0xb389343d991b609d08d85f0317d7e9e4945988f3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EvilDevils

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-07
*/

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: EvilDevils.sol



pragma solidity ^0.8.2;





contract EvilDevils is ERC721, ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 6666;
    uint256 public teamReserve = 150;

    uint256 public constant MINT_PRICE = 66600000000000000; // 0.0666 ETH
    bool public saleIsActive = false;

    uint256 public constant PRESALE_PRICE = 33300000000000000; // 0.0333 ETH
    uint256 public constant PRESALE_MAX_AMOUNT = 5;
    uint256 public presaleLimit = 999;
    bool public presaleIsActive = false;
    mapping(address => bool) _whiteList;
    mapping(address => uint256) _whiteListMinted;

    uint256 public freeMintLimit = 150;
    bool public freeMintIsActive = false;
    mapping(address => bool) _freeMintUsed;

    string private _baseURIExtended;

    address private _promotionRoyaltyAddress = 0x004f27759eE3C96BE0F79D5fDAd39b23834D2fDc;

    constructor() ERC721("EvilDevils", "EDC") {}

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function airdrop(address[] memory addresses) public onlyOwner {
        require(
            addresses.length > 0 && addresses.length <= teamReserve,
            "Not enough reserve left for team"
        );

        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            _safeMint(addresses[i], totalSupply().add(1));
        }

        teamReserve = teamReserve.sub(addresses.length);
    }

    // ======= FREEMINT STUFF =======
    function flipFreeMintState() public onlyOwner {
        freeMintIsActive = !freeMintIsActive;
    }

    function freeMint() public {
        require(freeMintIsActive, "Free mint is not active at the moment");
        require(
            _freeMintUsed[msg.sender] == false,
            "Already has free minted token"
        );
        require(freeMintLimit > 0, "Not enough tokens left for free mint");

        _safeMint(msg.sender, totalSupply().add(1));

        _freeMintUsed[msg.sender] = true;
        freeMintLimit = freeMintLimit.sub(1);
    }

    // ======= PRESALE STUFF =======
    function flipPresaleState() public onlyOwner {
        presaleIsActive = !presaleIsActive;
    }

    function addToWhitelist(address[] memory addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");

            _whiteList[addresses[i]] = true;
            _whiteListMinted[addresses[i]] > 0
                ? _whiteListMinted[addresses[i]]
                : 0;
        }
    }

    function removeFromWhiteList(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            _whiteList[addresses[i]] = false;
        }
    }

    function isWhitelisted(address addr) public view returns (bool) {
        return _whiteList[addr];
    }

    function mintPresale(uint256 numberOfTokens) public payable {
        require(presaleIsActive, "Presale is not active at the moment");
        require(
            _whiteListMinted[msg.sender].add(numberOfTokens) <=
                PRESALE_MAX_AMOUNT,
            "Exceeds supply of presale you can mint."
        );
        require(
            numberOfTokens > 0,
            "Number of tokens can not be less than or equal to 0"
        );
        require(
            numberOfTokens <= presaleLimit,
            "Not enough tokens left for presale"
        );
        require(
            PRESALE_PRICE.mul(numberOfTokens) <= msg.value,
            "Sent ether value is incorrect"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply().add(1));
        }

        _whiteListMinted[msg.sender] += numberOfTokens;
        presaleLimit = presaleLimit.sub(numberOfTokens);
    }

    // ======= MINT STUFF =======
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mint(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale is not active at the moment");
        require(
            numberOfTokens > 0,
            "Number of tokens can not be less than or equal to 0"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_SUPPLY.sub(teamReserve),
            "Purchase would exceed max supply"
        );
        require(
            MINT_PRICE.mul(numberOfTokens) <= msg.value,
            "Sent ether value is incorrect"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply().add(1));
        }

        payable(_promotionRoyaltyAddress).transfer(msg.value/100*2);
    }

    // ======= URI STUFF =======
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory base = _baseURI();
        return string(abi.encodePacked(base, tokenId.toString(), ".json"));
    }

    // ======= SERVICE STUFF =======
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"flipFreeMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI_","type":"string"}],"name":"setBaseURI","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":[],"name":"teamReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","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":[],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526096600b819055600c805460ff199081169091556103e7600d55600e805482169055601191909155601280549091169055601580546001600160a01b031916724f27759ee3c96be0f79d5fdad39b23834d2fdc1790553480156200006757600080fd5b50604080518082018252600a8152694576696c446576696c7360b01b60208083019182528351808501909452600384526245444360e81b908401528151919291620000b59160009162000144565b508051620000cb90600190602084019062000144565b505050620000e8620000e2620000ee60201b60201c565b620000f2565b62000227565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b61338a80620002376000396000f3fe6080604052600436106102c65760003560e01c806362dc6e2111610179578063a22cb465116100d6578063db94b1ff1161008a578063f2fde38b11610064578063f2fde38b14610761578063f759867a14610781578063f81227d41461079457600080fd5b8063db94b1ff146106e9578063e985e9c5146106fe578063eb8d24441461074757600080fd5b8063b88d4fde116100bb578063b88d4fde1461068e578063c002d23d146106ae578063c87b56dd146106c957600080fd5b8063a22cb4651461064e578063b11560c51461066e57600080fd5b80637f6497831161012d5780638da5cb5b116101125780638da5cb5b1461060857806395d89b4114610626578063a0712d681461063b57600080fd5b80637f649783146105d357806388e26f11146105f357600080fd5b806370a082311161015e57806370a082311461057e578063715018a61461059e578063729ad39e146105b357600080fd5b806362dc6e21146105435780636352211e1461055e57600080fd5b806334918dfd116102275780634287f14a116101db578063525b3fe3116101c0578063525b3fe3146104f857806355f804b31461050e5780635b70ea9f1461052e57600080fd5b80634287f14a146104c25780634f6ccce7146104d857600080fd5b80633af32abf1161020c5780633af32abf146104545780633ccfd60b1461048d57806342842e0e146104a257600080fd5b806334918dfd1461042557806335ee0fd21461043a57600080fd5b806318160ddd1161027e5780632f745c59116102635780632f745c59146103d557806330f72cd4146103f557806332cb6b0c1461040f57600080fd5b806318160ddd146103a057806323b872dd146103b557600080fd5b8063081812fc116102af578063081812fc1461032257806308346d851461035a578063095ea7b31461037e57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612f13565b6107a9565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b506103156107ba565b6040516102f7919061308c565b34801561032e57600080fd5b5061034261033d366004612f96565b61084c565b6040516001600160a01b0390911681526020016102f7565b34801561036657600080fd5b5061037060115481565b6040519081526020016102f7565b34801561038a57600080fd5b5061039e610399366004612dc0565b6108f7565b005b3480156103ac57600080fd5b50600854610370565b3480156103c157600080fd5b5061039e6103d0366004612ccc565b610a29565b3480156103e157600080fd5b506103706103f0366004612dc0565b610ab0565b34801561040157600080fd5b50600e546102eb9060ff1681565b34801561041b57600080fd5b50610370611a0a81565b34801561043157600080fd5b5061039e610b58565b34801561044657600080fd5b506012546102eb9060ff1681565b34801561046057600080fd5b506102eb61046f366004612c7e565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561049957600080fd5b5061039e610bc6565b3480156104ae57600080fd5b5061039e6104bd366004612ccc565b610c53565b3480156104ce57600080fd5b50610370600b5481565b3480156104e457600080fd5b506103706104f3366004612f96565b610c6e565b34801561050457600080fd5b50610370600d5481565b34801561051a57600080fd5b5061039e610529366004612f4d565b610d12565b34801561053a57600080fd5b5061039e610d7f565b34801561054f57600080fd5b5061037066764e2c6f05400081565b34801561056a57600080fd5b50610342610579366004612f96565b610f19565b34801561058a57600080fd5b50610370610599366004612c7e565b610fa4565b3480156105aa57600080fd5b5061039e61103e565b3480156105bf57600080fd5b5061039e6105ce366004612e5f565b6110a4565b3480156105df57600080fd5b5061039e6105ee366004612e5f565b611238565b3480156105ff57600080fd5b50610370600581565b34801561061457600080fd5b50600a546001600160a01b0316610342565b34801561063257600080fd5b50610315611411565b61039e610649366004612f96565b611420565b34801561065a57600080fd5b5061039e610669366004612d84565b611630565b34801561067a57600080fd5b5061039e610689366004612dea565b6116f5565b34801561069a57600080fd5b5061039e6106a9366004612d08565b611841565b3480156106ba57600080fd5b5061037066ec9c58de0a800081565b3480156106d557600080fd5b506103156106e4366004612f96565b6118cf565b3480156106f557600080fd5b5061039e61199a565b34801561070a57600080fd5b506102eb610719366004612c99565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075357600080fd5b50600c546102eb9060ff1681565b34801561076d57600080fd5b5061039e61077c366004612c7e565b611a08565b61039e61078f366004612f96565b611aea565b3480156107a057600080fd5b5061039e611da8565b60006107b482611e16565b92915050565b6060600080546107c99061319a565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061319a565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061090282610f19565b9050806001600160a01b0316836001600160a01b0316141561098c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b336001600160a01b03821614806109a857506109a88133610719565b610a1a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d2565b610a248383611e6c565b505050565b610a333382611ef2565b610aa55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d2565b610a24838383611ffa565b6000610abb83610fa4565b8210610b2f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108d2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bb25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b600c805460ff19811660ff90911615179055565b600a546001600160a01b03163314610c205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b6040514790339082156108fc029083906000818181858888f19350505050158015610c4f573d6000803e3d6000fd5b5050565b610a2483838360405180602001604052806000815250611841565b6000610c7960085490565b8210610ced5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108d2565b60088281548110610d0057610d006132c8565b90600052602060002001549050919050565b600a546001600160a01b03163314610d6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b8051610c4f906014906020840190612b53565b60125460ff16610df75760405162461bcd60e51b815260206004820152602560248201527f46726565206d696e74206973206e6f742061637469766520617420746865206d60448201527f6f6d656e7400000000000000000000000000000000000000000000000000000060648201526084016108d2565b3360009081526013602052604090205460ff1615610e575760405162461bcd60e51b815260206004820152601d60248201527f416c7265616479206861732066726565206d696e74656420746f6b656e00000060448201526064016108d2565b600060115411610ece5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820746f6b656e73206c65667420666f7220667265652060448201527f6d696e740000000000000000000000000000000000000000000000000000000060648201526084016108d2565b610eeb33610ee66001610ee060085490565b906121ea565b6121fd565b336000908152601360205260409020805460ff19166001908117909155601154610f1491612217565b601155565b6000818152600260205260408120546001600160a01b0316806107b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108d2565b60006001600160a01b0382166110225760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108d2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b6110a26000612223565b565b600a546001600160a01b031633146110fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b600081511180156111125750600b54815111155b61115e5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60448201526064016108d2565b60005b81518110156112235760006001600160a01b0316828281518110611187576111876132c8565b60200260200101516001600160a01b031614156111e65760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c206164647265737300000000000060448201526064016108d2565b6112118282815181106111fb576111fb6132c8565b6020026020010151610ee66001610ee060085490565b8061121b816131ee565b915050611161565b508051600b5461123291612217565b600b5550565b600a546001600160a01b031633146112925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b60005b8151811015610c4f5760006001600160a01b03168282815181106112bb576112bb6132c8565b60200260200101516001600160a01b0316141561131a5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c206164647265737300000000000060448201526064016108d2565b6001600f6000848481518110611332576113326132c8565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600060106000848481518110611389576113896132c8565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054116113be5760006113fe565b601060008383815181106113d4576113d46132c8565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020545b5080611409816131ee565b915050611295565b6060600180546107c99061319a565b600c5460ff166114725760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016108d2565b600081116114e85760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360448201527f207468616e206f7220657175616c20746f20300000000000000000000000000060648201526084016108d2565b600b546114f890611a0a90612217565b61150582610ee060085490565b11156115535760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108d2565b3461156566ec9c58de0a80008361228d565b11156115b35760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016108d2565b60005b818110156115e2576115d033610ee66001610ee060085490565b806115da816131ee565b9150506115b6565b506015546001600160a01b03166108fc6115fd606434613106565b61160890600261311a565b6040518115909202916000818181858888f19350505050158015610c4f573d6000803e3d6000fd5b6001600160a01b0382163314156116895760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461174f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b60005b81811015610a2457600083838381811061176e5761176e6132c8565b90506020020160208101906117839190612c7e565b6001600160a01b031614156117da5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c206164647265737300000000000060448201526064016108d2565b6000600f60008585858181106117f2576117f26132c8565b90506020020160208101906118079190612c7e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611839816131ee565b915050611752565b61184b3383611ef2565b6118bd5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d2565b6118c984848484612299565b50505050565b6000818152600260205260409020546060906001600160a01b031661195c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108d2565b6000611966612322565b90508061197284612331565b604051602001611983929190612ff9565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146119f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b6012805460ff19811660ff90911615179055565b600a546001600160a01b03163314611a625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b6001600160a01b038116611ade5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108d2565b611ae781612223565b50565b600e5460ff16611b625760405162461bcd60e51b815260206004820152602360248201527f50726573616c65206973206e6f742061637469766520617420746865206d6f6d60448201527f656e74000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b33600090815260106020526040902054600590611b7f90836121ea565b1115611bf35760405162461bcd60e51b815260206004820152602760248201527f4578636565647320737570706c79206f662070726573616c6520796f7520636160448201527f6e206d696e742e0000000000000000000000000000000000000000000000000060648201526084016108d2565b60008111611c695760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360448201527f207468616e206f7220657175616c20746f20300000000000000000000000000060648201526084016108d2565b600d54811115611ce15760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820746f6b656e73206c65667420666f7220707265736160448201527f6c6500000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b34611cf366764e2c6f0540008361228d565b1115611d415760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016108d2565b60005b81811015611d7057611d5e33610ee66001610ee060085490565b80611d68816131ee565b915050611d44565b503360009081526010602052604081208054839290611d909084906130ee565b9091555050600d54611da29082612217565b600d5550565b600a546001600160a01b03163314611e025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b600e805460ff19811660ff90911615179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806107b457506107b482612463565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190611eb982610f19565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f7c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108d2565b6000611f8783610f19565b9050806001600160a01b0316846001600160a01b03161480611fc25750836001600160a01b0316611fb78461084c565b6001600160a01b0316145b80611ff257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661200d82610f19565b6001600160a01b0316146120895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108d2565b6001600160a01b0382166121045760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d2565b61210f838383612546565b61211a600082611e6c565b6001600160a01b0383166000908152600360205260408120805460019290612143908490613157565b90915550506001600160a01b03821660009081526003602052604081208054600192906121719084906130ee565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006121f682846130ee565b9392505050565b610c4f828260405180602001604052806000815250612551565b60006121f68284613157565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006121f6828461311a565b6122a4848484611ffa565b6122b0848484846125da565b6118c95760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d2565b6060601480546107c99061319a565b60608161237157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561239b5780612385816131ee565b91506123949050600a83613106565b9150612375565b60008167ffffffffffffffff8111156123b6576123b66132f7565b6040519080825280601f01601f1916602001820160405280156123e0576020820181803683370190505b5090505b8415611ff2576123f5600183613157565b9150612402600a86613227565b61240d9060306130ee565b60f81b818381518110612422576124226132c8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061245c600a86613106565b94506123e4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806124f657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107b457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107b4565b610a248383836127a5565b61255b838361285d565b61256860008484846125da565b610a245760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d2565b60006001600160a01b0384163b1561279a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612637903390899088908890600401613050565b602060405180830381600087803b15801561265157600080fd5b505af192505050801561269f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261269c91810190612f30565b60015b61274f573d8080156126cd576040519150601f19603f3d011682016040523d82523d6000602084013e6126d2565b606091505b5080516127475760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611ff2565b506001949350505050565b6001600160a01b038316612800576127fb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612823565b816001600160a01b0316836001600160a01b0316146128235761282383826129c3565b6001600160a01b03821661283a57610a2481612a60565b826001600160a01b0316826001600160a01b031614610a2457610a248282612b0f565b6001600160a01b0382166128b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d2565b6000818152600260205260409020546001600160a01b0316156129185760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d2565b61292460008383612546565b6001600160a01b038216600090815260036020526040812080546001929061294d9084906130ee565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016129d084610fa4565b6129da9190613157565b600083815260076020526040902054909150808214612a2d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a7290600190613157565b60008381526009602052604081205460088054939450909284908110612a9a57612a9a6132c8565b906000526020600020015490508060088381548110612abb57612abb6132c8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612af357612af3613299565b6001900381819060005260206000200160009055905550505050565b6000612b1a83610fa4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612b5f9061319a565b90600052602060002090601f016020900481019282612b815760008555612bc7565b82601f10612b9a57805160ff1916838001178555612bc7565b82800160010185558215612bc7579182015b82811115612bc7578251825591602001919060010190612bac565b50612bd3929150612bd7565b5090565b5b80821115612bd35760008155600101612bd8565b600067ffffffffffffffff831115612c0657612c066132f7565b612c3760207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161309f565b9050828152838383011115612c4b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612c7957600080fd5b919050565b600060208284031215612c9057600080fd5b6121f682612c62565b60008060408385031215612cac57600080fd5b612cb583612c62565b9150612cc360208401612c62565b90509250929050565b600080600060608486031215612ce157600080fd5b612cea84612c62565b9250612cf860208501612c62565b9150604084013590509250925092565b60008060008060808587031215612d1e57600080fd5b612d2785612c62565b9350612d3560208601612c62565b925060408501359150606085013567ffffffffffffffff811115612d5857600080fd5b8501601f81018713612d6957600080fd5b612d7887823560208401612bec565b91505092959194509250565b60008060408385031215612d9757600080fd5b612da083612c62565b915060208301358015158114612db557600080fd5b809150509250929050565b60008060408385031215612dd357600080fd5b612ddc83612c62565b946020939093013593505050565b60008060208385031215612dfd57600080fd5b823567ffffffffffffffff80821115612e1557600080fd5b818501915085601f830112612e2957600080fd5b813581811115612e3857600080fd5b8660208260051b8501011115612e4d57600080fd5b60209290920196919550909350505050565b60006020808385031215612e7257600080fd5b823567ffffffffffffffff80821115612e8a57600080fd5b818501915085601f830112612e9e57600080fd5b813581811115612eb057612eb06132f7565b8060051b9150612ec184830161309f565b8181528481019084860184860187018a1015612edc57600080fd5b600095505b83861015612f0657612ef281612c62565b835260019590950194918601918601612ee1565b5098975050505050505050565b600060208284031215612f2557600080fd5b81356121f681613326565b600060208284031215612f4257600080fd5b81516121f681613326565b600060208284031215612f5f57600080fd5b813567ffffffffffffffff811115612f7657600080fd5b8201601f81018413612f8757600080fd5b611ff284823560208401612bec565b600060208284031215612fa857600080fd5b5035919050565b60008151808452612fc781602086016020860161316e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000835161300b81846020880161316e565b83519083019061301f81836020880161316e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130826080830184612faf565b9695505050505050565b6020815260006121f66020830184612faf565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156130e6576130e66132f7565b604052919050565b600082198211156131015761310161323b565b500190565b6000826131155761311561326a565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131525761315261323b565b500290565b6000828210156131695761316961323b565b500390565b60005b83811015613189578181015183820152602001613171565b838111156118c95750506000910152565b600181811c908216806131ae57607f821691505b602082108114156131e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132205761322061323b565b5060010190565b6000826132365761323661326a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611ae757600080fdfea2646970667358221220984ae1356be4ffc478e11e253f89c4587c2af079a61f6b10cbbfe196a082278264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102c65760003560e01c806362dc6e2111610179578063a22cb465116100d6578063db94b1ff1161008a578063f2fde38b11610064578063f2fde38b14610761578063f759867a14610781578063f81227d41461079457600080fd5b8063db94b1ff146106e9578063e985e9c5146106fe578063eb8d24441461074757600080fd5b8063b88d4fde116100bb578063b88d4fde1461068e578063c002d23d146106ae578063c87b56dd146106c957600080fd5b8063a22cb4651461064e578063b11560c51461066e57600080fd5b80637f6497831161012d5780638da5cb5b116101125780638da5cb5b1461060857806395d89b4114610626578063a0712d681461063b57600080fd5b80637f649783146105d357806388e26f11146105f357600080fd5b806370a082311161015e57806370a082311461057e578063715018a61461059e578063729ad39e146105b357600080fd5b806362dc6e21146105435780636352211e1461055e57600080fd5b806334918dfd116102275780634287f14a116101db578063525b3fe3116101c0578063525b3fe3146104f857806355f804b31461050e5780635b70ea9f1461052e57600080fd5b80634287f14a146104c25780634f6ccce7146104d857600080fd5b80633af32abf1161020c5780633af32abf146104545780633ccfd60b1461048d57806342842e0e146104a257600080fd5b806334918dfd1461042557806335ee0fd21461043a57600080fd5b806318160ddd1161027e5780632f745c59116102635780632f745c59146103d557806330f72cd4146103f557806332cb6b0c1461040f57600080fd5b806318160ddd146103a057806323b872dd146103b557600080fd5b8063081812fc116102af578063081812fc1461032257806308346d851461035a578063095ea7b31461037e57600080fd5b806301ffc9a7146102cb57806306fdde0314610300575b600080fd5b3480156102d757600080fd5b506102eb6102e6366004612f13565b6107a9565b60405190151581526020015b60405180910390f35b34801561030c57600080fd5b506103156107ba565b6040516102f7919061308c565b34801561032e57600080fd5b5061034261033d366004612f96565b61084c565b6040516001600160a01b0390911681526020016102f7565b34801561036657600080fd5b5061037060115481565b6040519081526020016102f7565b34801561038a57600080fd5b5061039e610399366004612dc0565b6108f7565b005b3480156103ac57600080fd5b50600854610370565b3480156103c157600080fd5b5061039e6103d0366004612ccc565b610a29565b3480156103e157600080fd5b506103706103f0366004612dc0565b610ab0565b34801561040157600080fd5b50600e546102eb9060ff1681565b34801561041b57600080fd5b50610370611a0a81565b34801561043157600080fd5b5061039e610b58565b34801561044657600080fd5b506012546102eb9060ff1681565b34801561046057600080fd5b506102eb61046f366004612c7e565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561049957600080fd5b5061039e610bc6565b3480156104ae57600080fd5b5061039e6104bd366004612ccc565b610c53565b3480156104ce57600080fd5b50610370600b5481565b3480156104e457600080fd5b506103706104f3366004612f96565b610c6e565b34801561050457600080fd5b50610370600d5481565b34801561051a57600080fd5b5061039e610529366004612f4d565b610d12565b34801561053a57600080fd5b5061039e610d7f565b34801561054f57600080fd5b5061037066764e2c6f05400081565b34801561056a57600080fd5b50610342610579366004612f96565b610f19565b34801561058a57600080fd5b50610370610599366004612c7e565b610fa4565b3480156105aa57600080fd5b5061039e61103e565b3480156105bf57600080fd5b5061039e6105ce366004612e5f565b6110a4565b3480156105df57600080fd5b5061039e6105ee366004612e5f565b611238565b3480156105ff57600080fd5b50610370600581565b34801561061457600080fd5b50600a546001600160a01b0316610342565b34801561063257600080fd5b50610315611411565b61039e610649366004612f96565b611420565b34801561065a57600080fd5b5061039e610669366004612d84565b611630565b34801561067a57600080fd5b5061039e610689366004612dea565b6116f5565b34801561069a57600080fd5b5061039e6106a9366004612d08565b611841565b3480156106ba57600080fd5b5061037066ec9c58de0a800081565b3480156106d557600080fd5b506103156106e4366004612f96565b6118cf565b3480156106f557600080fd5b5061039e61199a565b34801561070a57600080fd5b506102eb610719366004612c99565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075357600080fd5b50600c546102eb9060ff1681565b34801561076d57600080fd5b5061039e61077c366004612c7e565b611a08565b61039e61078f366004612f96565b611aea565b3480156107a057600080fd5b5061039e611da8565b60006107b482611e16565b92915050565b6060600080546107c99061319a565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061319a565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061090282610f19565b9050806001600160a01b0316836001600160a01b0316141561098c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b336001600160a01b03821614806109a857506109a88133610719565b610a1a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d2565b610a248383611e6c565b505050565b610a333382611ef2565b610aa55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d2565b610a24838383611ffa565b6000610abb83610fa4565b8210610b2f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108d2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bb25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b600c805460ff19811660ff90911615179055565b600a546001600160a01b03163314610c205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b6040514790339082156108fc029083906000818181858888f19350505050158015610c4f573d6000803e3d6000fd5b5050565b610a2483838360405180602001604052806000815250611841565b6000610c7960085490565b8210610ced5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108d2565b60088281548110610d0057610d006132c8565b90600052602060002001549050919050565b600a546001600160a01b03163314610d6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b8051610c4f906014906020840190612b53565b60125460ff16610df75760405162461bcd60e51b815260206004820152602560248201527f46726565206d696e74206973206e6f742061637469766520617420746865206d60448201527f6f6d656e7400000000000000000000000000000000000000000000000000000060648201526084016108d2565b3360009081526013602052604090205460ff1615610e575760405162461bcd60e51b815260206004820152601d60248201527f416c7265616479206861732066726565206d696e74656420746f6b656e00000060448201526064016108d2565b600060115411610ece5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820746f6b656e73206c65667420666f7220667265652060448201527f6d696e740000000000000000000000000000000000000000000000000000000060648201526084016108d2565b610eeb33610ee66001610ee060085490565b906121ea565b6121fd565b336000908152601360205260409020805460ff19166001908117909155601154610f1491612217565b601155565b6000818152600260205260408120546001600160a01b0316806107b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108d2565b60006001600160a01b0382166110225760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108d2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b6110a26000612223565b565b600a546001600160a01b031633146110fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b600081511180156111125750600b54815111155b61115e5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60448201526064016108d2565b60005b81518110156112235760006001600160a01b0316828281518110611187576111876132c8565b60200260200101516001600160a01b031614156111e65760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c206164647265737300000000000060448201526064016108d2565b6112118282815181106111fb576111fb6132c8565b6020026020010151610ee66001610ee060085490565b8061121b816131ee565b915050611161565b508051600b5461123291612217565b600b5550565b600a546001600160a01b031633146112925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b60005b8151811015610c4f5760006001600160a01b03168282815181106112bb576112bb6132c8565b60200260200101516001600160a01b0316141561131a5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c206164647265737300000000000060448201526064016108d2565b6001600f6000848481518110611332576113326132c8565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600060106000848481518110611389576113896132c8565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054116113be5760006113fe565b601060008383815181106113d4576113d46132c8565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020545b5080611409816131ee565b915050611295565b6060600180546107c99061319a565b600c5460ff166114725760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016108d2565b600081116114e85760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360448201527f207468616e206f7220657175616c20746f20300000000000000000000000000060648201526084016108d2565b600b546114f890611a0a90612217565b61150582610ee060085490565b11156115535760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108d2565b3461156566ec9c58de0a80008361228d565b11156115b35760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016108d2565b60005b818110156115e2576115d033610ee66001610ee060085490565b806115da816131ee565b9150506115b6565b506015546001600160a01b03166108fc6115fd606434613106565b61160890600261311a565b6040518115909202916000818181858888f19350505050158015610c4f573d6000803e3d6000fd5b6001600160a01b0382163314156116895760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461174f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b60005b81811015610a2457600083838381811061176e5761176e6132c8565b90506020020160208101906117839190612c7e565b6001600160a01b031614156117da5760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c206164647265737300000000000060448201526064016108d2565b6000600f60008585858181106117f2576117f26132c8565b90506020020160208101906118079190612c7e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611839816131ee565b915050611752565b61184b3383611ef2565b6118bd5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108d2565b6118c984848484612299565b50505050565b6000818152600260205260409020546060906001600160a01b031661195c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108d2565b6000611966612322565b90508061197284612331565b604051602001611983929190612ff9565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146119f45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b6012805460ff19811660ff90911615179055565b600a546001600160a01b03163314611a625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b6001600160a01b038116611ade5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108d2565b611ae781612223565b50565b600e5460ff16611b625760405162461bcd60e51b815260206004820152602360248201527f50726573616c65206973206e6f742061637469766520617420746865206d6f6d60448201527f656e74000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b33600090815260106020526040902054600590611b7f90836121ea565b1115611bf35760405162461bcd60e51b815260206004820152602760248201527f4578636565647320737570706c79206f662070726573616c6520796f7520636160448201527f6e206d696e742e0000000000000000000000000000000000000000000000000060648201526084016108d2565b60008111611c695760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360448201527f207468616e206f7220657175616c20746f20300000000000000000000000000060648201526084016108d2565b600d54811115611ce15760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820746f6b656e73206c65667420666f7220707265736160448201527f6c6500000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b34611cf366764e2c6f0540008361228d565b1115611d415760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016108d2565b60005b81811015611d7057611d5e33610ee66001610ee060085490565b80611d68816131ee565b915050611d44565b503360009081526010602052604081208054839290611d909084906130ee565b9091555050600d54611da29082612217565b600d5550565b600a546001600160a01b03163314611e025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d2565b600e805460ff19811660ff90911615179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806107b457506107b482612463565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190611eb982610f19565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f7c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108d2565b6000611f8783610f19565b9050806001600160a01b0316846001600160a01b03161480611fc25750836001600160a01b0316611fb78461084c565b6001600160a01b0316145b80611ff257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661200d82610f19565b6001600160a01b0316146120895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108d2565b6001600160a01b0382166121045760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d2565b61210f838383612546565b61211a600082611e6c565b6001600160a01b0383166000908152600360205260408120805460019290612143908490613157565b90915550506001600160a01b03821660009081526003602052604081208054600192906121719084906130ee565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006121f682846130ee565b9392505050565b610c4f828260405180602001604052806000815250612551565b60006121f68284613157565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006121f6828461311a565b6122a4848484611ffa565b6122b0848484846125da565b6118c95760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d2565b6060601480546107c99061319a565b60608161237157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561239b5780612385816131ee565b91506123949050600a83613106565b9150612375565b60008167ffffffffffffffff8111156123b6576123b66132f7565b6040519080825280601f01601f1916602001820160405280156123e0576020820181803683370190505b5090505b8415611ff2576123f5600183613157565b9150612402600a86613227565b61240d9060306130ee565b60f81b818381518110612422576124226132c8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061245c600a86613106565b94506123e4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806124f657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107b457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107b4565b610a248383836127a5565b61255b838361285d565b61256860008484846125da565b610a245760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d2565b60006001600160a01b0384163b1561279a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612637903390899088908890600401613050565b602060405180830381600087803b15801561265157600080fd5b505af192505050801561269f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261269c91810190612f30565b60015b61274f573d8080156126cd576040519150601f19603f3d011682016040523d82523d6000602084013e6126d2565b606091505b5080516127475760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108d2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611ff2565b506001949350505050565b6001600160a01b038316612800576127fb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612823565b816001600160a01b0316836001600160a01b0316146128235761282383826129c3565b6001600160a01b03821661283a57610a2481612a60565b826001600160a01b0316826001600160a01b031614610a2457610a248282612b0f565b6001600160a01b0382166128b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d2565b6000818152600260205260409020546001600160a01b0316156129185760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d2565b61292460008383612546565b6001600160a01b038216600090815260036020526040812080546001929061294d9084906130ee565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016129d084610fa4565b6129da9190613157565b600083815260076020526040902054909150808214612a2d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a7290600190613157565b60008381526009602052604081205460088054939450909284908110612a9a57612a9a6132c8565b906000526020600020015490508060088381548110612abb57612abb6132c8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612af357612af3613299565b6001900381819060005260206000200160009055905550505050565b6000612b1a83610fa4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612b5f9061319a565b90600052602060002090601f016020900481019282612b815760008555612bc7565b82601f10612b9a57805160ff1916838001178555612bc7565b82800160010185558215612bc7579182015b82811115612bc7578251825591602001919060010190612bac565b50612bd3929150612bd7565b5090565b5b80821115612bd35760008155600101612bd8565b600067ffffffffffffffff831115612c0657612c066132f7565b612c3760207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161309f565b9050828152838383011115612c4b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612c7957600080fd5b919050565b600060208284031215612c9057600080fd5b6121f682612c62565b60008060408385031215612cac57600080fd5b612cb583612c62565b9150612cc360208401612c62565b90509250929050565b600080600060608486031215612ce157600080fd5b612cea84612c62565b9250612cf860208501612c62565b9150604084013590509250925092565b60008060008060808587031215612d1e57600080fd5b612d2785612c62565b9350612d3560208601612c62565b925060408501359150606085013567ffffffffffffffff811115612d5857600080fd5b8501601f81018713612d6957600080fd5b612d7887823560208401612bec565b91505092959194509250565b60008060408385031215612d9757600080fd5b612da083612c62565b915060208301358015158114612db557600080fd5b809150509250929050565b60008060408385031215612dd357600080fd5b612ddc83612c62565b946020939093013593505050565b60008060208385031215612dfd57600080fd5b823567ffffffffffffffff80821115612e1557600080fd5b818501915085601f830112612e2957600080fd5b813581811115612e3857600080fd5b8660208260051b8501011115612e4d57600080fd5b60209290920196919550909350505050565b60006020808385031215612e7257600080fd5b823567ffffffffffffffff80821115612e8a57600080fd5b818501915085601f830112612e9e57600080fd5b813581811115612eb057612eb06132f7565b8060051b9150612ec184830161309f565b8181528481019084860184860187018a1015612edc57600080fd5b600095505b83861015612f0657612ef281612c62565b835260019590950194918601918601612ee1565b5098975050505050505050565b600060208284031215612f2557600080fd5b81356121f681613326565b600060208284031215612f4257600080fd5b81516121f681613326565b600060208284031215612f5f57600080fd5b813567ffffffffffffffff811115612f7657600080fd5b8201601f81018413612f8757600080fd5b611ff284823560208401612bec565b600060208284031215612fa857600080fd5b5035919050565b60008151808452612fc781602086016020860161316e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000835161300b81846020880161316e565b83519083019061301f81836020880161316e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130826080830184612faf565b9695505050505050565b6020815260006121f66020830184612faf565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156130e6576130e66132f7565b604052919050565b600082198211156131015761310161323b565b500190565b6000826131155761311561326a565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131525761315261323b565b500290565b6000828210156131695761316961323b565b500390565b60005b83811015613189578181015183820152602001613171565b838111156118c95750506000910152565b600181811c908216806131ae57607f821691505b602082108114156131e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132205761322061323b565b5060010190565b6000826132365761323661326a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611ae757600080fdfea2646970667358221220984ae1356be4ffc478e11e253f89c4587c2af079a61f6b10cbbfe196a082278264736f6c63430008070033

Deployed Bytecode Sourcemap

50138:6210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56133:212;;;;;;;;;;-1:-1:-1;56133:212:0;;;;;:::i;:::-;;:::i;:::-;;;7363:14:1;;7356:22;7338:41;;7326:2;7311:18;56133:212:0;;;;;;;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26418:221::-;;;;;;;;;;-1:-1:-1;26418:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6615:55:1;;;6597:74;;6585:2;6570:18;26418:221:0;6451:226:1;50782:34:0;;;;;;;;;;;;;;;;;;;19567:25:1;;;19555:2;19540:18;50782:34:0;19421:177:1;25941:411:0;;;;;;;;;;-1:-1:-1;25941:411:0;;;;;:::i;:::-;;:::i;:::-;;37607:113;;;;;;;;;;-1:-1:-1;37695:10:0;:17;37607:113;;27308:339;;;;;;;;;;-1:-1:-1;27308:339:0;;;;;:::i;:::-;;:::i;37275:256::-;;;;;;;;;;-1:-1:-1;37275:256:0;;;;;:::i;:::-;;:::i;50645:35::-;;;;;;;;;;-1:-1:-1;50645:35:0;;;;;;;;50269:41;;;;;;;;;;;;50306:4;50269:41;;54344:89;;;;;;;;;;;;;:::i;50823:36::-;;;;;;;;;;-1:-1:-1;50823:36:0;;;;;;;;53223:106;;;;;;;;;;-1:-1:-1;53223:106:0;;;;;:::i;:::-;-1:-1:-1;;;;;53305:16:0;53281:4;53305:16;;;:10;:16;;;;;;;;;53223:106;51099:143;;;;;;;;;;;;;:::i;27718:185::-;;;;;;;;;;-1:-1:-1;27718:185:0;;;;;:::i;:::-;;:::i;50317:32::-;;;;;;;;;;;;;;;;37797:233;;;;;;;;;;-1:-1:-1;37797:233:0;;;;;:::i;:::-;;:::i;50605:33::-;;;;;;;;;;;;;;;;55356:109;;;;;;;;;;-1:-1:-1;55356:109:0;;;;;:::i;:::-;;:::i;51895:461::-;;;;;;;;;;;;;:::i;50474:57::-;;;;;;;;;;;;50514:17;50474:57;;24553:239;;;;;;;;;;-1:-1:-1;24553:239:0;;;;;:::i;:::-;;:::i;24283:208::-;;;;;;;;;;-1:-1:-1;24283:208:0;;;;;:::i;:::-;;:::i;4558:94::-;;;;;;;;;;;;;:::i;51250:489::-;;;;;;;;;;-1:-1:-1;51250:489:0;;;;;:::i;:::-;;:::i;52508:394::-;;;;;;;;;;-1:-1:-1;52508:394:0;;;;;:::i;:::-;;:::i;50552:46::-;;;;;;;;;;;;50597:1;50552:46;;3907:87;;;;;;;;;;-1:-1:-1;3980:6:0;;-1:-1:-1;;;;;3980:6:0;3907:87;;25028:104;;;;;;;;;;;;;:::i;54441:748::-;;;;;;:::i;:::-;;:::i;26711:295::-;;;;;;;;;;-1:-1:-1;26711:295:0;;;;;:::i;:::-;;:::i;52910:305::-;;;;;;;;;;-1:-1:-1;52910:305:0;;;;;:::i;:::-;;:::i;27974:328::-;;;;;;;;;;-1:-1:-1;27974:328:0;;;;;:::i;:::-;;:::i;50358:54::-;;;;;;;;;;;;50395:17;50358:54;;55473:391;;;;;;;;;;-1:-1:-1;55473:391:0;;;;;:::i;:::-;;:::i;51786:101::-;;;;;;;;;;;;;:::i;27077:164::-;;;;;;;;;;-1:-1:-1;27077:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27077:164;50433:32;;;;;;;;;;-1:-1:-1;50433:32:0;;;;;;;;4807:192;;;;;;;;;;-1:-1:-1;4807:192:0;;;;;:::i;:::-;;:::i;53337:964::-;;;;;;:::i;:::-;;:::i;52402:98::-;;;;;;;;;;;;;:::i;56133:212::-;56272:4;56301:36;56325:11;56301:23;:36::i;:::-;56294:43;56133:212;-1:-1:-1;;56133:212:0:o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;26514:73;;;;-1:-1:-1;;;26514:73:0;;15313:2:1;26514:73:0;;;15295:21:1;15352:2;15332:18;;;15325:30;15391:34;15371:18;;;15364:62;15462:14;15442:18;;;15435:42;15494:19;;26514:73:0;;;;;;;;;-1:-1:-1;26607:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26607:24:0;;26418:221::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;-1:-1:-1;;;;;26080:11:0;:2;-1:-1:-1;;;;;26080:11:0;;;26072:57;;;;-1:-1:-1;;;26072:57:0;;17268:2:1;26072:57:0;;;17250:21:1;17307:2;17287:18;;;17280:30;17346:34;17326:18;;;17319:62;17417:3;17397:18;;;17390:31;17438:19;;26072:57:0;17066:397:1;26072:57:0;2775:10;-1:-1:-1;;;;;26164:21:0;;;;:62;;-1:-1:-1;26189:37:0;26206:5;2775:10;27077:164;:::i;26189:37::-;26142:168;;;;-1:-1:-1;;;26142:168:0;;12987:2:1;26142:168:0;;;12969:21:1;13026:2;13006:18;;;12999:30;13065:34;13045:18;;;13038:62;13136:26;13116:18;;;13109:54;13180:19;;26142:168:0;12785:420:1;26142:168:0;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;27308:339::-;27503:41;2775:10;27536:7;27503:18;:41::i;:::-;27495:103;;;;-1:-1:-1;;;27495:103:0;;17670:2:1;27495:103:0;;;17652:21:1;17709:2;17689:18;;;17682:30;17748:34;17728:18;;;17721:62;17819:19;17799:18;;;17792:47;17856:19;;27495:103:0;17468:413:1;27495:103:0;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;-1:-1:-1;;;37392:87:0;;8640:2:1;37392:87:0;;;8622:21:1;8679:2;8659:18;;;8652:30;8718:34;8698:18;;;8691:62;8789:13;8769:18;;;8762:41;8820:19;;37392:87:0;8438:407:1;37392:87:0;-1:-1:-1;;;;;;37497:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37275:256::o;54344:89::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;54413:12:::1;::::0;;-1:-1:-1;;54397:28:0;::::1;54413:12;::::0;;::::1;54412:13;54397:28;::::0;;54344:89::o;51099:143::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;51197:37:::1;::::0;51165:21:::1;::::0;51205:10:::1;::::0;51197:37;::::1;;;::::0;51165:21;;51147:15:::1;51197:37:::0;51147:15;51197:37;51165:21;51205:10;51197:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51136:106;51099:143::o:0;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;37797:233::-;37872:7;37908:30;37695:10;:17;;37607:113;37908:30;37900:5;:38;37892:95;;;;-1:-1:-1;;;37892:95:0;;18088:2:1;37892:95:0;;;18070:21:1;18127:2;18107:18;;;18100:30;18166:34;18146:18;;;18139:62;18237:14;18217:18;;;18210:42;18269:19;;37892:95:0;17886:408:1;37892:95:0;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;37998:24;;37797:233;;;:::o;55356:109::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;55430:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;51895:461::-:0;51941:16;;;;51933:66;;;;-1:-1:-1;;;51933:66:0;;12168:2:1;51933:66:0;;;12150:21:1;12207:2;12187:18;;;12180:30;12246:34;12226:18;;;12219:62;12317:7;12297:18;;;12290:35;12342:19;;51933:66:0;11966:401:1;51933:66:0;52046:10;52032:25;;;;:13;:25;;;;;;;;:34;52010:113;;;;-1:-1:-1;;;52010:113:0;;18501:2:1;52010:113:0;;;18483:21:1;18540:2;18520:18;;;18513:30;18579:31;18559:18;;;18552:59;18628:18;;52010:113:0;18299:353:1;52010:113:0;52158:1;52142:13;;:17;52134:66;;;;-1:-1:-1;;;52134:66:0;;10643:2:1;52134:66:0;;;10625:21:1;10682:2;10662:18;;;10655:30;10721:34;10701:18;;;10694:62;10792:6;10772:18;;;10765:34;10816:19;;52134:66:0;10441:400:1;52134:66:0;52213:43;52223:10;52235:20;52253:1;52235:13;37695:10;:17;;37607:113;52235:13;:17;;:20::i;:::-;52213:9;:43::i;:::-;52283:10;52269:25;;;;:13;:25;;;;;:32;;-1:-1:-1;;52269:32:0;52297:4;52269:32;;;;;;52328:13;;:20;;:17;:20::i;:::-;52312:13;:36;51895:461::o;24553:239::-;24625:7;24661:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24661:16:0;24696:19;24688:73;;;;-1:-1:-1;;;24688:73:0;;13823:2:1;24688:73:0;;;13805:21:1;13862:2;13842:18;;;13835:30;13901:34;13881:18;;;13874:62;13972:11;13952:18;;;13945:39;14001:19;;24688:73:0;13621:405:1;24283:208:0;24355:7;-1:-1:-1;;;;;24383:19:0;;24375:74;;;;-1:-1:-1;;;24375:74:0;;13412:2:1;24375:74:0;;;13394:21:1;13451:2;13431:18;;;13424:30;13490:34;13470:18;;;13463:62;13561:12;13541:18;;;13534:40;13591:19;;24375:74:0;13210:406:1;24375:74:0;-1:-1:-1;;;;;;24467:16:0;;;;;:9;:16;;;;;;;24283:208::o;4558:94::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;51250:489::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;51364:1:::1;51345:9;:16;:20;:55;;;;;51389:11;;51369:9;:16;:31;;51345:55;51323:137;;;::::0;-1:-1:-1;;;51323:137:0;;11048:2:1;51323:137:0::1;::::0;::::1;11030:21:1::0;;;11067:18;;;11060:30;11126:34;11106:18;;;11099:62;11178:18;;51323:137:0::1;10846:356:1::0;51323:137:0::1;51478:9;51473:199;51497:9;:16;51493:1;:20;51473:199;;;51567:1;-1:-1:-1::0;;;;;51543:26:0::1;:9;51553:1;51543:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51543:26:0::1;;;51535:65;;;::::0;-1:-1:-1;;;51535:65:0;;16087:2:1;51535:65:0::1;::::0;::::1;16069:21:1::0;16126:2;16106:18;;;16099:30;16165:28;16145:18;;;16138:56;16211:18;;51535:65:0::1;15885:350:1::0;51535:65:0::1;51615:45;51625:9;51635:1;51625:12;;;;;;;;:::i;:::-;;;;;;;51639:20;51657:1;51639:13;37695:10:::0;:17;;37607:113;51615:45:::1;51515:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51473:199;;;-1:-1:-1::0;51714:16:0;;51698:11:::1;::::0;:33:::1;::::0;:15:::1;:33::i;:::-;51684:11;:47:::0;-1:-1:-1;51250:489:0:o;52508:394::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;52593:9:::1;52588:307;52612:9;:16;52608:1;:20;52588:307;;;52682:1;-1:-1:-1::0;;;;;52658:26:0::1;:9;52668:1;52658:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;52658:26:0::1;;;52650:65;;;::::0;-1:-1:-1;;;52650:65:0;;16087:2:1;52650:65:0::1;::::0;::::1;16069:21:1::0;16126:2;16106:18;;;16099:30;16165:28;16145:18;;;16138:56;16211:18;;52650:65:0::1;15885:350:1::0;52650:65:0::1;52759:4;52732:10;:24;52743:9;52753:1;52743:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;52732:24:0::1;-1:-1:-1::0;;;;;52732:24:0::1;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;52811:1;52778:16;:30;52795:9;52805:1;52795:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;52778:30:0::1;-1:-1:-1::0;;;;;52778:30:0::1;;;;;;;;;;;;;:34;:105;;52882:1;52778:105;;;52832:16;:30;52849:9;52859:1;52849:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;52832:30:0::1;-1:-1:-1::0;;;;;52832:30:0::1;;;;;;;;;;;;;52778:105;-1:-1:-1::0;52630:3:0;::::1;::::0;::::1;:::i;:::-;;;;52588:307;;25028:104:::0;25084:13;25117:7;25110:14;;;;;:::i;54441:748::-;54513:12;;;;54505:57;;;;-1:-1:-1;;;54505:57:0;;19262:2:1;54505:57:0;;;19244:21:1;;;19281:18;;;19274:30;19340:34;19320:18;;;19313:62;19392:18;;54505:57:0;19060:356:1;54505:57:0;54612:1;54595:14;:18;54573:119;;;;-1:-1:-1;;;54573:119:0;;8220:2:1;54573:119:0;;;8202:21:1;8259:2;8239:18;;;8232:30;8298:34;8278:18;;;8271:62;8369:21;8349:18;;;8342:49;8408:19;;54573:119:0;8018:415:1;54573:119:0;54777:11;;54762:27;;50306:4;;54762:14;:27::i;:::-;54725:33;54743:14;54725:13;37695:10;:17;;37607:113;54725:33;:64;;54703:146;;;;-1:-1:-1;;;54703:146:0;;14591:2:1;54703:146:0;;;14573:21:1;;;14610:18;;;14603:30;14669:34;14649:18;;;14642:62;14721:18;;54703:146:0;14389:356:1;54703:146:0;54916:9;54882:30;50395:17;54897:14;54882;:30::i;:::-;:43;;54860:122;;;;-1:-1:-1;;;54860:122:0;;14233:2:1;54860:122:0;;;14215:21:1;14272:2;14252:18;;;14245:30;14311:31;14291:18;;;14284:59;14360:18;;54860:122:0;14031:353:1;54860:122:0;55000:9;54995:115;55019:14;55015:1;:18;54995:115;;;55055:43;55065:10;55077:20;55095:1;55077:13;37695:10;:17;;37607:113;55055:43;55035:3;;;;:::i;:::-;;;;54995:115;;;-1:-1:-1;55130:24:0;;-1:-1:-1;;;;;55130:24:0;55122:59;55165:13;55175:3;55165:9;:13;:::i;:::-;:15;;55179:1;55165:15;:::i;:::-;55122:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26711:295;-1:-1:-1;;;;;26814:24:0;;2775:10;26814:24;;26806:62;;;;-1:-1:-1;;;26806:62:0;;11814:2:1;26806:62:0;;;11796:21:1;11853:2;11833:18;;;11826:30;11892:27;11872:18;;;11865:55;11937:18;;26806:62:0;11612:349:1;26806:62:0;2775:10;26881:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26881:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26881:53:0;;;;;;;;;;26950:48;;7338:41:1;;;26881:42:0;;2775:10;26950:48;;7311:18:1;26950:48:0;;;;;;;26711:295;;:::o;52910:305::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;53027:9:::1;53022:186;53042:20:::0;;::::1;53022:186;;;53116:1;53092:9:::0;;53102:1;53092:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53092:26:0::1;;;53084:65;;;::::0;-1:-1:-1;;;53084:65:0;;16087:2:1;53084:65:0::1;::::0;::::1;16069:21:1::0;16126:2;16106:18;;;16099:30;16165:28;16145:18;;;16138:56;16211:18;;53084:65:0::1;15885:350:1::0;53084:65:0::1;53191:5;53164:10;:24;53175:9;;53185:1;53175:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53164:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;53164:24:0;:32;;-1:-1:-1;;53164:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53064:3;::::1;::::0;::::1;:::i;:::-;;;;53022:186;;27974:328:::0;28149:41;2775:10;28182:7;28149:18;:41::i;:::-;28141:103;;;;-1:-1:-1;;;28141:103:0;;17670:2:1;28141:103:0;;;17652:21:1;17709:2;17689:18;;;17682:30;17748:34;17728:18;;;17721:62;17819:19;17799:18;;;17792:47;17856:19;;28141:103:0;17468:413:1;28141:103:0;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;55473:391::-;29877:4;29901:16;;;:7;:16;;;;;;55591:13;;-1:-1:-1;;;;;29901:16:0;55622:113;;;;-1:-1:-1;;;55622:113:0;;16852:2:1;55622:113:0;;;16834:21:1;16891:2;16871:18;;;16864:30;16930:34;16910:18;;;16903:62;17001:17;16981:18;;;16974:45;17036:19;;55622:113:0;16650:411:1;55622:113:0;55748:18;55769:10;:8;:10::i;:::-;55748:31;;55821:4;55827:18;:7;:16;:18::i;:::-;55804:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55790:66;;;55473:391;;;:::o;51786:101::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;51863:16:::1;::::0;;-1:-1:-1;;51843:36:0;::::1;51863:16;::::0;;::::1;51862:17;51843:36;::::0;;51786:101::o;4807:192::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;-1:-1:-1;;;;;4896:22:0;::::1;4888:73;;;::::0;-1:-1:-1;;;4888:73:0;;9471:2:1;4888:73:0::1;::::0;::::1;9453:21:1::0;9510:2;9490:18;;;9483:30;9549:34;9529:18;;;9522:62;9620:8;9600:18;;;9593:36;9646:19;;4888:73:0::1;9269:402:1::0;4888:73:0::1;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;53337:964::-;53416:15;;;;53408:63;;;;-1:-1:-1;;;53408:63:0;;7816:2:1;53408:63:0;;;7798:21:1;7855:2;7835:18;;;7828:30;7894:34;7874:18;;;7867:62;7965:5;7945:18;;;7938:33;7988:19;;53408:63:0;7614:399:1;53408:63:0;53521:10;53504:28;;;;:16;:28;;;;;;50597:1;;53504:48;;53537:14;53504:32;:48::i;:::-;:87;;53482:176;;;;-1:-1:-1;;;53482:176:0;;10235:2:1;53482:176:0;;;10217:21:1;10274:2;10254:18;;;10247:30;10313:34;10293:18;;;10286:62;10384:9;10364:18;;;10357:37;10411:19;;53482:176:0;10033:403:1;53482:176:0;53708:1;53691:14;:18;53669:119;;;;-1:-1:-1;;;53669:119:0;;8220:2:1;53669:119:0;;;8202:21:1;8259:2;8239:18;;;8232:30;8298:34;8278:18;;;8271:62;8369:21;8349:18;;;8342:49;8408:19;;53669:119:0;8018:415:1;53669:119:0;53839:12;;53821:14;:30;;53799:114;;;;-1:-1:-1;;;53799:114:0;;18859:2:1;53799:114:0;;;18841:21:1;18898:2;18878:18;;;18871:30;18937:34;18917:18;;;18910:62;19008:4;18988:18;;;18981:32;19030:19;;53799:114:0;18657:398:1;53799:114:0;53983:9;53946:33;50514:17;53964:14;53946:17;:33::i;:::-;:46;;53924:125;;;;-1:-1:-1;;;53924:125:0;;14233:2:1;53924:125:0;;;14215:21:1;14272:2;14252:18;;;14245:30;14311:31;14291:18;;;14284:59;14360:18;;53924:125:0;14031:353:1;53924:125:0;54067:9;54062:115;54086:14;54082:1;:18;54062:115;;;54122:43;54132:10;54144:20;54162:1;54144:13;37695:10;:17;;37607:113;54122:43;54102:3;;;;:::i;:::-;;;;54062:115;;;-1:-1:-1;54206:10:0;54189:28;;;;:16;:28;;;;;:46;;54221:14;;54189:28;:46;;54221:14;;54189:46;:::i;:::-;;;;-1:-1:-1;;54261:12:0;;:32;;54278:14;54261:16;:32::i;:::-;54246:12;:47;-1:-1:-1;53337:964:0:o;52402:98::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;15726:2:1;4119:68:0;;;15708:21:1;;;15745:18;;;15738:30;15804:34;15784:18;;;15777:62;15856:18;;4119:68:0;15524:356:1;4119:68:0;52477:15:::1;::::0;;-1:-1:-1;;52458:34:0;::::1;52477:15;::::0;;::::1;52476:16;52458:34;::::0;;52402:98::o;36967:224::-;37069:4;37093:50;;;37108:35;37093:50;;:90;;;37147:36;37171:11;37147:23;:36::i;33794:174::-;33869:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;33869:29:0;;;;;;;;:24;;33923:23;33869:24;33923:14;:23::i;:::-;-1:-1:-1;;;;;33914:46:0;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;30216:73;;;;-1:-1:-1;;;30216:73:0;;12574:2:1;30216:73:0;;;12556:21:1;12613:2;12593:18;;;12586:30;12652:34;12632:18;;;12625:62;12723:14;12703:18;;;12696:42;12755:19;;30216:73:0;12372:408:1;30216:73:0;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;-1:-1:-1;;;;;30358:16:0;:7;-1:-1:-1;;;;;30358:16:0;;:51;;;;30402:7;-1:-1:-1;;;;;30378:31:0;:20;30390:7;30378:11;:20::i;:::-;-1:-1:-1;;;;;30378:31:0;;30358:51;:87;;;-1:-1:-1;;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30413:32;30350:96;30106:348;-1:-1:-1;;;;30106:348:0:o;33098:578::-;33257:4;-1:-1:-1;;;;;33230:31:0;:23;33245:7;33230:14;:23::i;:::-;-1:-1:-1;;;;;33230:31:0;;33222:85;;;;-1:-1:-1;;;33222:85:0;;16442:2:1;33222:85:0;;;16424:21:1;16481:2;16461:18;;;16454:30;16520:34;16500:18;;;16493:62;16591:11;16571:18;;;16564:39;16620:19;;33222:85:0;16240:405:1;33222:85:0;-1:-1:-1;;;;;33326:16:0;;33318:65;;;;-1:-1:-1;;;33318:65:0;;11409:2:1;33318:65:0;;;11391:21:1;11448:2;11428:18;;;11421:30;11487:34;11467:18;;;11460:62;11558:6;11538:18;;;11531:34;11582:19;;33318:65:0;11207:400:1;33318:65:0;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;-1:-1:-1;;;;;33542:15:0;;;;;;:9;:15;;;;;:20;;33561:1;;33542:15;:20;;33561:1;;33542:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33573:13:0;;;;;;:9;:13;;;;;:18;;33590:1;;33573:13;:18;;33590:1;;33573:18;:::i;:::-;;;;-1:-1:-1;;33602:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;33602:21:0;;;;;;;;;33641:27;;33602:16;;33641:27;;;;;;;33098:578;;;:::o;45907:98::-;45965:7;45992:5;45996:1;45992;:5;:::i;:::-;45985:12;45907:98;-1:-1:-1;;;45907:98:0:o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;46288:98::-;46346:7;46373:5;46377:1;46373;:5;:::i;5007:173::-;5082:6;;;-1:-1:-1;;;;;5099:17:0;;;;;;;;;;;5132:40;;5082:6;;;5099:17;5082:6;;5132:40;;5063:16;;5132:40;5052:128;5007:173;:::o;46645:98::-;46703:7;46730:5;46734:1;46730;:5;:::i;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;-1:-1:-1;;;29380:111:0;;9052:2:1;29380:111:0;;;9034:21:1;9091:2;9071:18;;;9064:30;9130:34;9110:18;;;9103:62;9201:20;9181:18;;;9174:48;9239:19;;29380:111:0;8850:414:1;55231:117:0;55291:13;55324:16;55317:23;;;;;:::i;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;;;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;23914:305;24016:4;24053:40;;;24068:25;24053:40;;:105;;-1:-1:-1;24110:48:0;;;24125:33;24110:48;24053:105;:158;;;-1:-1:-1;16017:25:0;16002:40;;;;24175:36;15893:157;55910:215;56072:45;56099:4;56105:2;56109:7;56072:26;:45::i;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;-1:-1:-1;;;31292:154:0;;9052:2:1;31292:154:0;;;9034:21:1;9091:2;9071:18;;;9064:30;9130:34;9110:18;;;9103:62;9201:20;9181:18;;;9174:48;9239:19;;31292:154:0;8850:414:1;34533:799:0;34688:4;-1:-1:-1;;;;;34709:13:0;;6276:20;6324:8;34705:620;;34745:72;;;;;-1:-1:-1;;;;;34745:36:0;;;;;:72;;2775:10;;34796:4;;34802:7;;34811:5;;34745:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34745:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34987:13:0;;34983:272;;35030:60;;-1:-1:-1;;;35030:60:0;;9052:2:1;35030:60:0;;;9034:21:1;9091:2;9071:18;;;9064:30;9130:34;9110:18;;;9103:62;9201:20;9181:18;;;9174:48;9239:19;;35030:60:0;8850:414:1;34983:272:0;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;34868:51;;34878:41;34868:51;;-1:-1:-1;34861:58:0;;34705:620;-1:-1:-1;35309:4:0;34533:799;;;;;;:::o;38643:589::-;-1:-1:-1;;;;;38849:18:0;;38845:187;;38884:40;38916:7;40059:10;:17;;40032:24;;;;:15;:24;;;;;:44;;;40087:24;;;;;;;;;;;;39955:164;38884:40;38845:187;;;38954:2;-1:-1:-1;;;;;38946:10:0;:4;-1:-1:-1;;;;;38946:10:0;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;-1:-1:-1;;;;;39046:16:0;;39042:183;;39079:45;39116:7;39079:36;:45::i;39042:183::-;39152:4;-1:-1:-1;;;;;39146:10:0;:2;-1:-1:-1;;;;;39146:10:0;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;31790:382::-;-1:-1:-1;;;;;31870:16:0;;31862:61;;;;-1:-1:-1;;;31862:61:0;;14952:2:1;31862:61:0;;;14934:21:1;;;14971:18;;;14964:30;15030:34;15010:18;;;15003:62;15082:18;;31862:61:0;14750:356:1;31862:61:0;29877:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;:30;31934:58;;;;-1:-1:-1;;;31934:58:0;;9878:2:1;31934:58:0;;;9860:21:1;9917:2;9897:18;;;9890:30;9956;9936:18;;;9929:58;10004:18;;31934:58:0;9676:352:1;31934:58:0;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;-1:-1:-1;;;;;32063:13:0;;;;;;:9;:13;;;;;:18;;32080:1;;32063:13;:18;;32080:1;;32063:18;:::i;:::-;;;;-1:-1:-1;;32092:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;32092:21:0;;;;;;;;32131:33;;32092:16;;;32131:33;;32092:16;;32131:33;31790:382;;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41074:18;41095:26;;;:17;:26;;;;;;41012:51;;-1:-1:-1;41228:28:0;;;41224:328;;-1:-1:-1;;;;;41295:18:0;;41273:19;41295:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41346:30;;;;;;:44;;;41463:30;;:17;:30;;;;;:43;;;41224:328;-1:-1:-1;41648:26:0;;;;:17;:26;;;;;;;;41641:33;;;-1:-1:-1;;;;;41692:18:0;;;;;:12;:18;;;;;:34;;;;;;;41685:41;40746:988::o;42029:1079::-;42307:10;:17;42282:22;;42307:21;;42327:1;;42307:21;:::i;:::-;42339:18;42360:24;;;:15;:24;;;;;;42733:10;:26;;42282:46;;-1:-1:-1;42360:24:0;;42282:46;;42733:26;;;;;;:::i;:::-;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42877:28;;;:15;:28;;;;;;;:41;;;43049:24;;;;;43042:31;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;-1:-1:-1;;;;;39666:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39711:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39533:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:465:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:116;282:4;213:66;208:2;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:45;;;368:1;365;358:12;327:45;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;14:465;;;;;:::o;484:196::-;552:20;;-1:-1:-1;;;;;601:54:1;;591:65;;581:93;;670:1;667;660:12;581:93;484:196;;;:::o;685:186::-;744:6;797:2;785:9;776:7;772:23;768:32;765:52;;;813:1;810;803:12;765:52;836:29;855:9;836:29;:::i;876:260::-;944:6;952;1005:2;993:9;984:7;980:23;976:32;973:52;;;1021:1;1018;1011:12;973:52;1044:29;1063:9;1044:29;:::i;:::-;1034:39;;1092:38;1126:2;1115:9;1111:18;1092:38;:::i;:::-;1082:48;;876:260;;;;;:::o;1141:328::-;1218:6;1226;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:52;;;1303:1;1300;1293:12;1255:52;1326:29;1345:9;1326:29;:::i;:::-;1316:39;;1374:38;1408:2;1397:9;1393:18;1374:38;:::i;:::-;1364:48;;1459:2;1448:9;1444:18;1431:32;1421:42;;1141:328;;;;;:::o;1474:666::-;1569:6;1577;1585;1593;1646:3;1634:9;1625:7;1621:23;1617:33;1614:53;;;1663:1;1660;1653:12;1614:53;1686:29;1705:9;1686:29;:::i;:::-;1676:39;;1734:38;1768:2;1757:9;1753:18;1734:38;:::i;:::-;1724:48;;1819:2;1808:9;1804:18;1791:32;1781:42;;1874:2;1863:9;1859:18;1846:32;1901:18;1893:6;1890:30;1887:50;;;1933:1;1930;1923:12;1887:50;1956:22;;2009:4;2001:13;;1997:27;-1:-1:-1;1987:55:1;;2038:1;2035;2028:12;1987:55;2061:73;2126:7;2121:2;2108:16;2103:2;2099;2095:11;2061:73;:::i;:::-;2051:83;;;1474:666;;;;;;;:::o;2145:347::-;2210:6;2218;2271:2;2259:9;2250:7;2246:23;2242:32;2239:52;;;2287:1;2284;2277:12;2239:52;2310:29;2329:9;2310:29;:::i;:::-;2300:39;;2389:2;2378:9;2374:18;2361:32;2436:5;2429:13;2422:21;2415:5;2412:32;2402:60;;2458:1;2455;2448:12;2402:60;2481:5;2471:15;;;2145:347;;;;;:::o;2497:254::-;2565:6;2573;2626:2;2614:9;2605:7;2601:23;2597:32;2594:52;;;2642:1;2639;2632:12;2594:52;2665:29;2684:9;2665:29;:::i;:::-;2655:39;2741:2;2726:18;;;;2713:32;;-1:-1:-1;;;2497:254:1:o;2756:615::-;2842:6;2850;2903:2;2891:9;2882:7;2878:23;2874:32;2871:52;;;2919:1;2916;2909:12;2871:52;2959:9;2946:23;2988:18;3029:2;3021:6;3018:14;3015:34;;;3045:1;3042;3035:12;3015:34;3083:6;3072:9;3068:22;3058:32;;3128:7;3121:4;3117:2;3113:13;3109:27;3099:55;;3150:1;3147;3140:12;3099:55;3190:2;3177:16;3216:2;3208:6;3205:14;3202:34;;;3232:1;3229;3222:12;3202:34;3285:7;3280:2;3270:6;3267:1;3263:14;3259:2;3255:23;3251:32;3248:45;3245:65;;;3306:1;3303;3296:12;3245:65;3337:2;3329:11;;;;;3359:6;;-1:-1:-1;2756:615:1;;-1:-1:-1;;;;2756:615:1:o;3376:963::-;3460:6;3491:2;3534;3522:9;3513:7;3509:23;3505:32;3502:52;;;3550:1;3547;3540:12;3502:52;3590:9;3577:23;3619:18;3660:2;3652:6;3649:14;3646:34;;;3676:1;3673;3666:12;3646:34;3714:6;3703:9;3699:22;3689:32;;3759:7;3752:4;3748:2;3744:13;3740:27;3730:55;;3781:1;3778;3771:12;3730:55;3817:2;3804:16;3839:2;3835;3832:10;3829:36;;;3845:18;;:::i;:::-;3891:2;3888:1;3884:10;3874:20;;3914:28;3938:2;3934;3930:11;3914:28;:::i;:::-;3976:15;;;4007:12;;;;4039:11;;;4069;;;4065:20;;4062:33;-1:-1:-1;4059:53:1;;;4108:1;4105;4098:12;4059:53;4130:1;4121:10;;4140:169;4154:2;4151:1;4148:9;4140:169;;;4211:23;4230:3;4211:23;:::i;:::-;4199:36;;4172:1;4165:9;;;;;4255:12;;;;4287;;4140:169;;;-1:-1:-1;4328:5:1;3376:963;-1:-1:-1;;;;;;;;3376:963:1:o;4344:245::-;4402:6;4455:2;4443:9;4434:7;4430:23;4426:32;4423:52;;;4471:1;4468;4461:12;4423:52;4510:9;4497:23;4529:30;4553:5;4529:30;:::i;4594:249::-;4663:6;4716:2;4704:9;4695:7;4691:23;4687:32;4684:52;;;4732:1;4729;4722:12;4684:52;4764:9;4758:16;4783:30;4807:5;4783:30;:::i;4848:450::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;5026:9;5013:23;5059:18;5051:6;5048:30;5045:50;;;5091:1;5088;5081:12;5045:50;5114:22;;5167:4;5159:13;;5155:27;-1:-1:-1;5145:55:1;;5196:1;5193;5186:12;5145:55;5219:73;5284:7;5279:2;5266:16;5261:2;5257;5253:11;5219:73;:::i;5303:180::-;5362:6;5415:2;5403:9;5394:7;5390:23;5386:32;5383:52;;;5431:1;5428;5421:12;5383:52;-1:-1:-1;5454:23:1;;5303:180;-1:-1:-1;5303:180:1:o;5488:316::-;5529:3;5567:5;5561:12;5594:6;5589:3;5582:19;5610:63;5666:6;5659:4;5654:3;5650:14;5643:4;5636:5;5632:16;5610:63;:::i;:::-;5718:2;5706:15;5723:66;5702:88;5693:98;;;;5793:4;5689:109;;5488:316;-1:-1:-1;;5488:316:1:o;5809:637::-;6089:3;6127:6;6121:13;6143:53;6189:6;6184:3;6177:4;6169:6;6165:17;6143:53;:::i;:::-;6259:13;;6218:16;;;;6281:57;6259:13;6218:16;6315:4;6303:17;;6281:57;:::i;:::-;6403:7;6360:20;;6389:22;;;6438:1;6427:13;;5809:637;-1:-1:-1;;;;5809:637:1:o;6682:511::-;6876:4;-1:-1:-1;;;;;6986:2:1;6978:6;6974:15;6963:9;6956:34;7038:2;7030:6;7026:15;7021:2;7010:9;7006:18;6999:43;;7078:6;7073:2;7062:9;7058:18;7051:34;7121:3;7116:2;7105:9;7101:18;7094:31;7142:45;7182:3;7171:9;7167:19;7159:6;7142:45;:::i;:::-;7134:53;6682:511;-1:-1:-1;;;;;;6682:511:1:o;7390:219::-;7539:2;7528:9;7521:21;7502:4;7559:44;7599:2;7588:9;7584:18;7576:6;7559:44;:::i;19603:334::-;19674:2;19668:9;19730:2;19720:13;;19735:66;19716:86;19704:99;;19833:18;19818:34;;19854:22;;;19815:62;19812:88;;;19880:18;;:::i;:::-;19916:2;19909:22;19603:334;;-1:-1:-1;19603:334:1:o;19942:128::-;19982:3;20013:1;20009:6;20006:1;20003:13;20000:39;;;20019:18;;:::i;:::-;-1:-1:-1;20055:9:1;;19942:128::o;20075:120::-;20115:1;20141;20131:35;;20146:18;;:::i;:::-;-1:-1:-1;20180:9:1;;20075:120::o;20200:228::-;20240:7;20366:1;20298:66;20294:74;20291:1;20288:81;20283:1;20276:9;20269:17;20265:105;20262:131;;;20373:18;;:::i;:::-;-1:-1:-1;20413:9:1;;20200:228::o;20433:125::-;20473:4;20501:1;20498;20495:8;20492:34;;;20506:18;;:::i;:::-;-1:-1:-1;20543:9:1;;20433:125::o;20563:258::-;20635:1;20645:113;20659:6;20656:1;20653:13;20645:113;;;20735:11;;;20729:18;20716:11;;;20709:39;20681:2;20674:10;20645:113;;;20776:6;20773:1;20770:13;20767:48;;;-1:-1:-1;;20811:1:1;20793:16;;20786:27;20563:258::o;20826:437::-;20905:1;20901:12;;;;20948;;;20969:61;;21023:4;21015:6;21011:17;21001:27;;20969:61;21076:2;21068:6;21065:14;21045:18;21042:38;21039:218;;;21113:77;21110:1;21103:88;21214:4;21211:1;21204:15;21242:4;21239:1;21232:15;21039:218;;20826:437;;;:::o;21268:195::-;21307:3;21338:66;21331:5;21328:77;21325:103;;;21408:18;;:::i;:::-;-1:-1:-1;21455:1:1;21444:13;;21268:195::o;21468:112::-;21500:1;21526;21516:35;;21531:18;;:::i;:::-;-1:-1:-1;21565:9:1;;21468:112::o;21585:184::-;21637:77;21634:1;21627:88;21734:4;21731:1;21724:15;21758:4;21755:1;21748:15;21774:184;21826:77;21823:1;21816:88;21923:4;21920:1;21913:15;21947:4;21944:1;21937:15;21963:184;22015:77;22012:1;22005:88;22112:4;22109:1;22102:15;22136:4;22133:1;22126:15;22152:184;22204:77;22201:1;22194:88;22301:4;22298:1;22291:15;22325:4;22322:1;22315:15;22341:184;22393:77;22390:1;22383:88;22490:4;22487:1;22480:15;22514:4;22511:1;22504:15;22530:177;22615:66;22608:5;22604:78;22597:5;22594:89;22584:117;;22697:1;22694;22687:12

Swarm Source

ipfs://984ae1356be4ffc478e11e253f89c4587c2af079a61f6b10cbbfe196a0822782
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.