ETH Price: $3,390.89 (-1.98%)
Gas: 4 Gwei

Token

RogueBots (RB)
 

Overview

Max Total Supply

5,505 RB

Holders

442

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 RB
0xb0355d860fe9bfa338f289482644e4b2627d4717
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:
RogueBots

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

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

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

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

interface IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 /* firstTokenId */,
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}
/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}


address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}


abstract contract Ownable is Context {
    address private _owner;
    address private _dev;

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

    constructor() {
        _transferOwnership(address(0x042985c1eB919748508b4AA028688DFE43b083aA));
        _dev = _msgSender();
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    modifier onlyDev() {
        _checkDev();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function dev() public view virtual returns (address) {
        return _dev;
    }

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function _checkDev() internal view virtual {
        require(dev() == _msgSender(), "Ownable: caller is not the dev");
    }

    function renounceOwnership() external virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) external virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }

    function transferDevOwnership(address newOwner) external virtual onlyDev {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _dev = newOwner;
    }
}

contract RogueBots is ERC721, Ownable, ReentrancyGuard, DefaultOperatorFilterer {

    IERC721 bggOG = IERC721(0x711D12aAA8C151570ea7Ae84835EA90077bBd476);

    bool internal publicMintOpen = false;
    bool internal allowListMintOpen = false;

    uint internal constant totalPossible = 6500;
    uint internal constant mintPrice = 10000000000000000; // 0.01 ETH

    string internal URI = "ipfs://xxxxxxxxxxxxxx/";
    string internal baseExt = ".json";
    bool internal isRevealed = false;
    bytes32 internal root = 0x5b355259755580ffb527974ba41d7bbb7d73da0aa2c3c92011381c658d326482;

    uint internal totalMintedManually = 0;
    uint internal totalClaimed = 0;
    uint internal teamMintAmt = 0;

    bool internal canOnlyMintOnce = true;
    mapping(uint => bool) hasBeenClaimed;

    modifier onlyTenPerTx(uint amount) {
        require(amount <= 10, "Max 10 per tx");
        _;
    }

    constructor() ERC721("RogueBots", "RB") {

    }

    function totalSupply() external view virtual returns (uint256) {
        unchecked {
            return totalMintedManually + totalClaimed + teamMintAmt;
        }
    }

    function claim(uint[] calldata ids) external nonReentrant {
        for(uint i = 0; i < ids.length;) {
            require(ids[i] >= 1 && ids[i] <= 950, "Invalid ID");
            require(hasBeenClaimed[ids[i]] == false, "Already has been claimed");
            hasBeenClaimed[ids[i]] = true;
            _mint(bggOG.ownerOf(ids[i]), ids[i]);
            unchecked {
                i++;
            }
        }
        unchecked {
            totalClaimed += ids.length;
        }
    }

    function teamMint() external nonReentrant onlyOwner {
        require(canOnlyMintOnce, "Can only mint once");
        canOnlyMintOnce = false;

        for(uint id = 951; id <= 1000;) {
            _mint(address(0xB538A75298F81c5aec361Dc827902e00fA17B4C2), id);
            unchecked {
                id++;
            }
        }

        teamMintAmt = 50;
    }

    function allowListMint(uint amount, bytes32[] calldata _merkleProof) payable external onlyTenPerTx(amount) nonReentrant {
        require(allowListMintOpen, "Allowlist is not open yet.");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, root, leaf), "Incorrect proof");

        require(msg.value >= (mintPrice * amount), "Mint costs 0.01 ETH");

        unchecked {
            require(totalMintedManually + amount <= totalPossible, "SOLD OUT");
            uint startMintID = 1001 + totalMintedManually;
            totalMintedManually += amount;
            for(uint i = 0; i < amount; i++) {
                _mint(msg.sender, startMintID + i);
            }
        }
    }

    function publicMint(uint amount) payable external onlyTenPerTx(amount) nonReentrant {
        require(publicMintOpen, "Public is not open yet.");
        require(msg.value >= (mintPrice * amount), "Mint costs 0.01 ETH");

        unchecked {
            require(totalMintedManually + amount <= totalPossible, "SOLD OUT");
            uint startMintID = 1001 + totalMintedManually;
            totalMintedManually += amount;
            for(uint i = 0; i < amount; i++) {
                _mint(msg.sender, startMintID + i);
            }
        }
    }

    function zCollectETH() external onlyOwner {
        (bool sent, ) = payable(owner()).call{value: address(this).balance}("");
        require(sent, "Failed to send Ether");
    }

    function zDev() external onlyDev {
        (bool sent, ) = payable(dev()).call{value: address(this).balance}("");
        require(sent, "Failed to send Ether");
    }

    function setURI(string calldata _URI) external onlyDev {
        URI = _URI;
    }

    function togglePublic() external onlyDev {
        publicMintOpen = !publicMintOpen;
    }

    function toggleAllowList() external onlyDev {
        allowListMintOpen = !allowListMintOpen;
    }

    function toggleReveal() external onlyDev {
        isRevealed = !isRevealed;
    }

    function setURIExtension(string calldata _baseExt) external onlyDev {
        baseExt = _baseExt;
    }

    function setRoot(bytes32 _root) external onlyDev {
        root = _root;
    }

    function isPublicActive() external view returns (bool) {
        return publicMintOpen;
    }
    
    function isAllowListActive() external view returns (bool) {
        return allowListMintOpen;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if(isRevealed) { 
            return string(abi.encodePacked(URI, _toString(tokenId), baseExt));
        } else {
            return string(abi.encodePacked("ipfs://Qmdg3ixAMoh9NwfaHJKMrntxEmDcVJH7G4Q77xrQTb8hPm"));
        }
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
 }

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExt","type":"string"}],"name":"setURIExtension","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":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","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":"newOwner","type":"address"}],"name":"transferDevOwnership","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zCollectETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zDev","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600980546001600160b01b03191673711d12aaa8c151570ea7ae84835ea90077bbd47617905560c0604052601660809081527f697066733a2f2f78787878787878787878787878782f0000000000000000000060a052600a90620000649082620003e2565b50604080518082019091526005815264173539b7b760d91b6020820152600b90620000909082620003e2565b50600c805460ff199081169091557f5b355259755580ffb527974ba41d7bbb7d73da0aa2c3c92011381c658d326482600d556000600e819055600f819055601055601180549091166001179055348015620000ea57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb6600160405180604001604052806009815260200168526f677565426f747360b81b81525060405180604001604052806002815260200161292160f11b8152508160009081620001509190620003e2565b5060016200015f8282620003e2565b5050506200018773042985c1eb919748508b4aa028688dfe43b083aa620002eb60201b60201c565b600780546001600160a01b0319163317905560016008556daaeb6d7670e522a718067333cd4e3b15620002e35780156200023157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200021257600080fd5b505af115801562000227573d6000803e3d6000fd5b50505050620002e3565b6001600160a01b03821615620002825760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001f7565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620002c957600080fd5b505af1158015620002de573d6000803e3d6000fd5b505050505b5050620004ae565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200036857607f821691505b6020821081036200038957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003dd57600081815260208120601f850160051c81016020861015620003b85750805b601f850160051c820191505b81811015620003d957828155600101620003c4565b5050505b505050565b81516001600160401b03811115620003fe57620003fe6200033d565b62000416816200040f845462000353565b846200038f565b602080601f8311600181146200044e5760008415620004355750858301515b600019600386901b1c1916600185901b178555620003d9565b600085815260208120601f198616915b828110156200047f578886015182559484019460019091019084016200045e565b50858210156200049e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61259580620004be6000396000f3fe6080604052600436106101f85760003560e01c80638da5cb5b1161010d578063a3330d25116100a0578063c87b56dd1161006f578063c87b56dd1461056c578063dab5f3401461058c578063e985e9c5146105ac578063ec8bda8e146105cc578063f2fde38b146105df57600080fd5b8063a3330d2514610503578063adf8b26014610522578063b88d4fde14610537578063ba7a86b81461055757600080fd5b806395d89b41116100dc57806395d89b41146104a4578063981d8771146104b9578063988934af146104ce578063a22cb465146104e357600080fd5b80638da5cb5b14610433578063907097511461045157806391cca3db1461047157806392bfa5e91461048f57600080fd5b806329fc6bae116101905780635b8ad4291161015f5780635b8ad429146103a95780636352211e146103be5780636ba4c138146103de57806370a08231146103fe578063715018a61461041e57600080fd5b806329fc6bae146103355780632db115441461035457806341f434341461036757806342842e0e1461038957600080fd5b8063081812fc116101cc578063081812fc14610296578063095ea7b3146102ce57806318160ddd146102ee57806323b872dd1461031557600080fd5b8062cf7f22146101fd57806301ffc9a71461021f57806302fe53051461025457806306fdde0314610274575b600080fd5b34801561020957600080fd5b5061021d610218366004611d41565b6105ff565b005b34801561022b57600080fd5b5061023f61023a366004611d74565b610658565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061021d61026f366004611d91565b6106aa565b34801561028057600080fd5b506102896106c4565b60405161024b9190611e53565b3480156102a257600080fd5b506102b66102b1366004611e66565b610756565b6040516001600160a01b03909116815260200161024b565b3480156102da57600080fd5b5061021d6102e9366004611e7f565b61077d565b3480156102fa57600080fd5b50601054600f54600e5401015b60405190815260200161024b565b34801561032157600080fd5b5061021d610330366004611eab565b610791565b34801561034157600080fd5b50600954600160a81b900460ff1661023f565b61021d610362366004611e66565b6107bc565b34801561037357600080fd5b506102b66daaeb6d7670e522a718067333cd4e81565b34801561039557600080fd5b5061021d6103a4366004611eab565b610933565b3480156103b557600080fd5b5061021d610958565b3480156103ca57600080fd5b506102b66103d9366004611e66565b610974565b3480156103ea57600080fd5b5061021d6103f9366004611f38565b6109d4565b34801561040a57600080fd5b50610307610419366004611d41565b610be9565b34801561042a57600080fd5b5061021d610c6f565b34801561043f57600080fd5b506006546001600160a01b03166102b6565b34801561045d57600080fd5b5061021d61046c366004611d91565b610c83565b34801561047d57600080fd5b506007546001600160a01b03166102b6565b34801561049b57600080fd5b5061021d610c98565b3480156104b057600080fd5b50610289610d4e565b3480156104c557600080fd5b5061021d610d5d565b3480156104da57600080fd5b5061021d610d86565b3480156104ef57600080fd5b5061021d6104fe366004611f88565b610daf565b34801561050f57600080fd5b50600954600160a01b900460ff1661023f565b34801561052e57600080fd5b5061021d610dc3565b34801561054357600080fd5b5061021d610552366004611fd7565b610ddf565b34801561056357600080fd5b5061021d610e0c565b34801561057857600080fd5b50610289610587366004611e66565b610eb0565b34801561059857600080fd5b5061021d6105a7366004611e66565b610f44565b3480156105b857600080fd5b5061023f6105c73660046120b7565b610f51565b61021d6105da3660046120e5565b610f7f565b3480156105eb57600080fd5b5061021d6105fa366004611d41565b6111ab565b6106076111e2565b6001600160a01b0381166106365760405162461bcd60e51b815260040161062d90612131565b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061068957506001600160e01b03198216635b5e139f60e01b145b806106a457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6106b26111e2565b600a6106bf8284836121ff565b505050565b6060600080546106d390612177565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff90612177565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b60006107618261123c565b506000908152600460205260409020546001600160a01b031690565b816107878161129b565b6106bf8383611354565b826001600160a01b03811633146107ab576107ab3361129b565b6107b6848484611464565b50505050565b80600a8111156107fe5760405162461bcd60e51b815260206004820152600d60248201526c09ac2f040626040e0cae440e8f609b1b604482015260640161062d565b610806611495565b600954600160a01b900460ff1661085f5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206973206e6f74206f70656e207965742e000000000000000000604482015260640161062d565b61087082662386f26fc100006122d5565b3410156108b55760405162461bcd60e51b815260206004820152601360248201527209ad2dce840c6dee6e8e640605c6062408aa89606b1b604482015260640161062d565b61196482600e540111156108f65760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b604482015260640161062d565b600e80548381019091556103e90160005b838110156109235761091b338284016114ee565b600101610907565b505061092f6001600855565b5050565b826001600160a01b038116331461094d5761094d3361129b565b6107b6848484611687565b6109606111e2565b600c805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806106a45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161062d565b6109dc611495565b60005b81811015610bd65760018383838181106109fb576109fb6122ec565b9050602002013510158015610a2a57506103b6838383818110610a2057610a206122ec565b9050602002013511155b610a635760405162461bcd60e51b815260206004820152600a602482015269125b9d985b1a5908125160b21b604482015260640161062d565b60126000848484818110610a7957610a796122ec565b602090810292909201358352508101919091526040016000205460ff1615610ae35760405162461bcd60e51b815260206004820152601860248201527f416c726561647920686173206265656e20636c61696d65640000000000000000604482015260640161062d565b600160126000858585818110610afb57610afb6122ec565b60209081029290920135835250810191909152604001600020805460ff1916911515919091179055600954610bce906001600160a01b0316636352211e858585818110610b4a57610b4a6122ec565b905060200201356040518263ffffffff1660e01b8152600401610b6f91815260200190565b602060405180830381865afa158015610b8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb09190612302565b848484818110610bc257610bc26122ec565b905060200201356114ee565b6001016109df565b50600f80548201905561092f6001600855565b60006001600160a01b038216610c535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161062d565b506001600160a01b031660009081526003602052604090205490565b610c776116a2565b610c8160006116fc565b565b610c8b6111e2565b600b6106bf8284836121ff565b610ca06116a2565b6000610cb46006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cfe576040519150601f19603f3d011682016040523d82523d6000602084013e610d03565b606091505b5050905080610d4b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b604482015260640161062d565b50565b6060600180546106d390612177565b610d656111e2565b6009805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610d8e6111e2565b6009805460ff60a81b198116600160a81b9182900460ff1615909102179055565b81610db98161129b565b6106bf838361174e565b610dcb6111e2565b6000610cb46007546001600160a01b031690565b836001600160a01b0381163314610df957610df93361129b565b610e0585858585611759565b5050505050565b610e14611495565b610e1c6116a2565b60115460ff16610e635760405162461bcd60e51b815260206004820152601260248201527143616e206f6e6c79206d696e74206f6e636560701b604482015260640161062d565b6011805460ff191690556103b75b6103e88111610ea057610e9873b538a75298f81c5aec361dc827902e00fa17b4c2826114ee565b600101610e71565b506032601055610c816001600855565b600c5460609060ff1615610ef357600a610ec98361178b565b600b604051602001610edd93929190612392565b6040516020818303038152906040529050919050565b604051602001610edd907f697066733a2f2f516d6467336978414d6f68394e776661484a4b4d726e7478458152746d4463564a4837473451373778725154623868506d60581b602082015260350190565b610f4c6111e2565b600d55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b82600a811115610fc15760405162461bcd60e51b815260206004820152600d60248201526c09ac2f040626040e0cae440e8f609b1b604482015260640161062d565b610fc9611495565b600954600160a81b900460ff166110225760405162461bcd60e51b815260206004820152601a60248201527f416c6c6f776c697374206973206e6f74206f70656e207965742e000000000000604482015260640161062d565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061109c84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d5491508490506117cf565b6110da5760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b604482015260640161062d565b6110eb85662386f26fc100006122d5565b3410156111305760405162461bcd60e51b815260206004820152601360248201527209ad2dce840c6dee6e8e640605c6062408aa89606b1b604482015260640161062d565b61196485600e540111156111715760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b604482015260640161062d565b600e80548681019091556103e90160005b8681101561119e57611196338284016114ee565b600101611182565b5050506107b66001600855565b6111b36116a2565b6001600160a01b0381166111d95760405162461bcd60e51b815260040161062d90612131565b610d4b816116fc565b6007546001600160a01b03163314610c815760405162461bcd60e51b815260206004820152601e60248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206465760000604482015260640161062d565b6000818152600260205260409020546001600160a01b0316610d4b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161062d565b6daaeb6d7670e522a718067333cd4e3b15610d4b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132c91906123c5565b610d4b57604051633b79c77360e21b81526001600160a01b038216600482015260240161062d565b600061135f82610974565b9050806001600160a01b0316836001600160a01b0316036113cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161062d565b336001600160a01b03821614806113e857506113e88133610f51565b61145a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161062d565b6106bf83836117e5565b61146e3382611853565b61148a5760405162461bcd60e51b815260040161062d906123e2565b6106bf8383836118b2565b6002600854036114e75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161062d565b6002600855565b6001600160a01b0382166115445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161062d565b6000818152600260205260409020546001600160a01b0316156115a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161062d565b6115b7600083836001611a23565b6000818152600260205260409020546001600160a01b03161561161c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161062d565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6106bf83838360405180602001604052806000815250610ddf565b6006546001600160a01b03163314610c815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161062d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61092f338383611aab565b6117633383611853565b61177f5760405162461bcd60e51b815260040161062d906123e2565b6107b684848484611b79565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806117a55750819003601f19909101908152919050565b6000826117dc8584611bac565b14949350505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181a82610974565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061185f83610974565b9050806001600160a01b0316846001600160a01b0316148061188657506118868185610f51565b806118aa5750836001600160a01b031661189f84610756565b6001600160a01b0316145b949350505050565b826001600160a01b03166118c582610974565b6001600160a01b0316146118eb5760405162461bcd60e51b815260040161062d9061242f565b6001600160a01b03821661194d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161062d565b61195a8383836001611a23565b826001600160a01b031661196d82610974565b6001600160a01b0316146119935760405162461bcd60e51b815260040161062d9061242f565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60018111156107b6576001600160a01b03841615611a69576001600160a01b03841660009081526003602052604081208054839290611a63908490612474565b90915550505b6001600160a01b038316156107b6576001600160a01b03831660009081526003602052604081208054839290611aa0908490612487565b909155505050505050565b816001600160a01b0316836001600160a01b031603611b0c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161062d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b848484846118b2565b611b9084848484611bf9565b6107b65760405162461bcd60e51b815260040161062d9061249a565b600081815b8451811015611bf157611bdd82868381518110611bd057611bd06122ec565b6020026020010151611cfa565b915080611be9816124ec565b915050611bb1565b509392505050565b60006001600160a01b0384163b15611cef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c3d903390899088908890600401612505565b6020604051808303816000875af1925050508015611c78575060408051601f3d908101601f19168201909252611c7591810190612542565b60015b611cd5573d808015611ca6576040519150601f19603f3d011682016040523d82523d6000602084013e611cab565b606091505b508051600003611ccd5760405162461bcd60e51b815260040161062d9061249a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118aa565b506001949350505050565b6000818310611d16576000828152602084905260409020611d25565b60008381526020839052604090205b9392505050565b6001600160a01b0381168114610d4b57600080fd5b600060208284031215611d5357600080fd5b8135611d2581611d2c565b6001600160e01b031981168114610d4b57600080fd5b600060208284031215611d8657600080fd5b8135611d2581611d5e565b60008060208385031215611da457600080fd5b823567ffffffffffffffff80821115611dbc57600080fd5b818501915085601f830112611dd057600080fd5b813581811115611ddf57600080fd5b866020828501011115611df157600080fd5b60209290920196919550909350505050565b60005b83811015611e1e578181015183820152602001611e06565b50506000910152565b60008151808452611e3f816020860160208601611e03565b601f01601f19169290920160200192915050565b602081526000611d256020830184611e27565b600060208284031215611e7857600080fd5b5035919050565b60008060408385031215611e9257600080fd5b8235611e9d81611d2c565b946020939093013593505050565b600080600060608486031215611ec057600080fd5b8335611ecb81611d2c565b92506020840135611edb81611d2c565b929592945050506040919091013590565b60008083601f840112611efe57600080fd5b50813567ffffffffffffffff811115611f1657600080fd5b6020830191508360208260051b8501011115611f3157600080fd5b9250929050565b60008060208385031215611f4b57600080fd5b823567ffffffffffffffff811115611f6257600080fd5b611f6e85828601611eec565b90969095509350505050565b8015158114610d4b57600080fd5b60008060408385031215611f9b57600080fd5b8235611fa681611d2c565b91506020830135611fb681611f7a565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611fed57600080fd5b8435611ff881611d2c565b9350602085013561200881611d2c565b925060408501359150606085013567ffffffffffffffff8082111561202c57600080fd5b818701915087601f83011261204057600080fd5b81358181111561205257612052611fc1565b604051601f8201601f19908116603f0116810190838211818310171561207a5761207a611fc1565b816040528281528a602084870101111561209357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120ca57600080fd5b82356120d581611d2c565b91506020830135611fb681611d2c565b6000806000604084860312156120fa57600080fd5b83359250602084013567ffffffffffffffff81111561211857600080fd5b61212486828701611eec565b9497909650939450505050565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b600181811c9082168061218b57607f821691505b6020821081036121ab57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106bf57600081815260208120601f850160051c810160208610156121d85750805b601f850160051c820191505b818110156121f7578281556001016121e4565b505050505050565b67ffffffffffffffff83111561221757612217611fc1565b61222b836122258354612177565b836121b1565b6000601f84116001811461225f57600085156122475750838201355b600019600387901b1c1916600186901b178355610e05565b600083815260209020601f19861690835b828110156122905786850135825560209485019460019092019101612270565b50868210156122ad5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106a4576106a46122bf565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561231457600080fd5b8151611d2581611d2c565b6000815461232c81612177565b60018281168015612344576001811461235957612388565b60ff1984168752821515830287019450612388565b8560005260208060002060005b8581101561237f5781548a820152908401908201612366565b50505082870194505b5050505092915050565b600061239e828661231f565b84516123ae818360208901611e03565b6123ba8183018661231f565b979650505050505050565b6000602082840312156123d757600080fd5b8151611d2581611f7a565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b818103818111156106a4576106a46122bf565b808201808211156106a4576106a46122bf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600182016124fe576124fe6122bf565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253890830184611e27565b9695505050505050565b60006020828403121561255457600080fd5b8151611d2581611d5e56fea264697066735822122091afcb361a76ac3bacb96ec543e44e67152ac43c3c2c2eb82c1e398690c265b564736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101f85760003560e01c80638da5cb5b1161010d578063a3330d25116100a0578063c87b56dd1161006f578063c87b56dd1461056c578063dab5f3401461058c578063e985e9c5146105ac578063ec8bda8e146105cc578063f2fde38b146105df57600080fd5b8063a3330d2514610503578063adf8b26014610522578063b88d4fde14610537578063ba7a86b81461055757600080fd5b806395d89b41116100dc57806395d89b41146104a4578063981d8771146104b9578063988934af146104ce578063a22cb465146104e357600080fd5b80638da5cb5b14610433578063907097511461045157806391cca3db1461047157806392bfa5e91461048f57600080fd5b806329fc6bae116101905780635b8ad4291161015f5780635b8ad429146103a95780636352211e146103be5780636ba4c138146103de57806370a08231146103fe578063715018a61461041e57600080fd5b806329fc6bae146103355780632db115441461035457806341f434341461036757806342842e0e1461038957600080fd5b8063081812fc116101cc578063081812fc14610296578063095ea7b3146102ce57806318160ddd146102ee57806323b872dd1461031557600080fd5b8062cf7f22146101fd57806301ffc9a71461021f57806302fe53051461025457806306fdde0314610274575b600080fd5b34801561020957600080fd5b5061021d610218366004611d41565b6105ff565b005b34801561022b57600080fd5b5061023f61023a366004611d74565b610658565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061021d61026f366004611d91565b6106aa565b34801561028057600080fd5b506102896106c4565b60405161024b9190611e53565b3480156102a257600080fd5b506102b66102b1366004611e66565b610756565b6040516001600160a01b03909116815260200161024b565b3480156102da57600080fd5b5061021d6102e9366004611e7f565b61077d565b3480156102fa57600080fd5b50601054600f54600e5401015b60405190815260200161024b565b34801561032157600080fd5b5061021d610330366004611eab565b610791565b34801561034157600080fd5b50600954600160a81b900460ff1661023f565b61021d610362366004611e66565b6107bc565b34801561037357600080fd5b506102b66daaeb6d7670e522a718067333cd4e81565b34801561039557600080fd5b5061021d6103a4366004611eab565b610933565b3480156103b557600080fd5b5061021d610958565b3480156103ca57600080fd5b506102b66103d9366004611e66565b610974565b3480156103ea57600080fd5b5061021d6103f9366004611f38565b6109d4565b34801561040a57600080fd5b50610307610419366004611d41565b610be9565b34801561042a57600080fd5b5061021d610c6f565b34801561043f57600080fd5b506006546001600160a01b03166102b6565b34801561045d57600080fd5b5061021d61046c366004611d91565b610c83565b34801561047d57600080fd5b506007546001600160a01b03166102b6565b34801561049b57600080fd5b5061021d610c98565b3480156104b057600080fd5b50610289610d4e565b3480156104c557600080fd5b5061021d610d5d565b3480156104da57600080fd5b5061021d610d86565b3480156104ef57600080fd5b5061021d6104fe366004611f88565b610daf565b34801561050f57600080fd5b50600954600160a01b900460ff1661023f565b34801561052e57600080fd5b5061021d610dc3565b34801561054357600080fd5b5061021d610552366004611fd7565b610ddf565b34801561056357600080fd5b5061021d610e0c565b34801561057857600080fd5b50610289610587366004611e66565b610eb0565b34801561059857600080fd5b5061021d6105a7366004611e66565b610f44565b3480156105b857600080fd5b5061023f6105c73660046120b7565b610f51565b61021d6105da3660046120e5565b610f7f565b3480156105eb57600080fd5b5061021d6105fa366004611d41565b6111ab565b6106076111e2565b6001600160a01b0381166106365760405162461bcd60e51b815260040161062d90612131565b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061068957506001600160e01b03198216635b5e139f60e01b145b806106a457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6106b26111e2565b600a6106bf8284836121ff565b505050565b6060600080546106d390612177565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff90612177565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b60006107618261123c565b506000908152600460205260409020546001600160a01b031690565b816107878161129b565b6106bf8383611354565b826001600160a01b03811633146107ab576107ab3361129b565b6107b6848484611464565b50505050565b80600a8111156107fe5760405162461bcd60e51b815260206004820152600d60248201526c09ac2f040626040e0cae440e8f609b1b604482015260640161062d565b610806611495565b600954600160a01b900460ff1661085f5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206973206e6f74206f70656e207965742e000000000000000000604482015260640161062d565b61087082662386f26fc100006122d5565b3410156108b55760405162461bcd60e51b815260206004820152601360248201527209ad2dce840c6dee6e8e640605c6062408aa89606b1b604482015260640161062d565b61196482600e540111156108f65760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b604482015260640161062d565b600e80548381019091556103e90160005b838110156109235761091b338284016114ee565b600101610907565b505061092f6001600855565b5050565b826001600160a01b038116331461094d5761094d3361129b565b6107b6848484611687565b6109606111e2565b600c805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806106a45760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161062d565b6109dc611495565b60005b81811015610bd65760018383838181106109fb576109fb6122ec565b9050602002013510158015610a2a57506103b6838383818110610a2057610a206122ec565b9050602002013511155b610a635760405162461bcd60e51b815260206004820152600a602482015269125b9d985b1a5908125160b21b604482015260640161062d565b60126000848484818110610a7957610a796122ec565b602090810292909201358352508101919091526040016000205460ff1615610ae35760405162461bcd60e51b815260206004820152601860248201527f416c726561647920686173206265656e20636c61696d65640000000000000000604482015260640161062d565b600160126000858585818110610afb57610afb6122ec565b60209081029290920135835250810191909152604001600020805460ff1916911515919091179055600954610bce906001600160a01b0316636352211e858585818110610b4a57610b4a6122ec565b905060200201356040518263ffffffff1660e01b8152600401610b6f91815260200190565b602060405180830381865afa158015610b8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb09190612302565b848484818110610bc257610bc26122ec565b905060200201356114ee565b6001016109df565b50600f80548201905561092f6001600855565b60006001600160a01b038216610c535760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161062d565b506001600160a01b031660009081526003602052604090205490565b610c776116a2565b610c8160006116fc565b565b610c8b6111e2565b600b6106bf8284836121ff565b610ca06116a2565b6000610cb46006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cfe576040519150601f19603f3d011682016040523d82523d6000602084013e610d03565b606091505b5050905080610d4b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b604482015260640161062d565b50565b6060600180546106d390612177565b610d656111e2565b6009805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610d8e6111e2565b6009805460ff60a81b198116600160a81b9182900460ff1615909102179055565b81610db98161129b565b6106bf838361174e565b610dcb6111e2565b6000610cb46007546001600160a01b031690565b836001600160a01b0381163314610df957610df93361129b565b610e0585858585611759565b5050505050565b610e14611495565b610e1c6116a2565b60115460ff16610e635760405162461bcd60e51b815260206004820152601260248201527143616e206f6e6c79206d696e74206f6e636560701b604482015260640161062d565b6011805460ff191690556103b75b6103e88111610ea057610e9873b538a75298f81c5aec361dc827902e00fa17b4c2826114ee565b600101610e71565b506032601055610c816001600855565b600c5460609060ff1615610ef357600a610ec98361178b565b600b604051602001610edd93929190612392565b6040516020818303038152906040529050919050565b604051602001610edd907f697066733a2f2f516d6467336978414d6f68394e776661484a4b4d726e7478458152746d4463564a4837473451373778725154623868506d60581b602082015260350190565b610f4c6111e2565b600d55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b82600a811115610fc15760405162461bcd60e51b815260206004820152600d60248201526c09ac2f040626040e0cae440e8f609b1b604482015260640161062d565b610fc9611495565b600954600160a81b900460ff166110225760405162461bcd60e51b815260206004820152601a60248201527f416c6c6f776c697374206973206e6f74206f70656e207965742e000000000000604482015260640161062d565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061109c84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d5491508490506117cf565b6110da5760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b604482015260640161062d565b6110eb85662386f26fc100006122d5565b3410156111305760405162461bcd60e51b815260206004820152601360248201527209ad2dce840c6dee6e8e640605c6062408aa89606b1b604482015260640161062d565b61196485600e540111156111715760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b604482015260640161062d565b600e80548681019091556103e90160005b8681101561119e57611196338284016114ee565b600101611182565b5050506107b66001600855565b6111b36116a2565b6001600160a01b0381166111d95760405162461bcd60e51b815260040161062d90612131565b610d4b816116fc565b6007546001600160a01b03163314610c815760405162461bcd60e51b815260206004820152601e60248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206465760000604482015260640161062d565b6000818152600260205260409020546001600160a01b0316610d4b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161062d565b6daaeb6d7670e522a718067333cd4e3b15610d4b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132c91906123c5565b610d4b57604051633b79c77360e21b81526001600160a01b038216600482015260240161062d565b600061135f82610974565b9050806001600160a01b0316836001600160a01b0316036113cc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161062d565b336001600160a01b03821614806113e857506113e88133610f51565b61145a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161062d565b6106bf83836117e5565b61146e3382611853565b61148a5760405162461bcd60e51b815260040161062d906123e2565b6106bf8383836118b2565b6002600854036114e75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161062d565b6002600855565b6001600160a01b0382166115445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161062d565b6000818152600260205260409020546001600160a01b0316156115a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161062d565b6115b7600083836001611a23565b6000818152600260205260409020546001600160a01b03161561161c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161062d565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6106bf83838360405180602001604052806000815250610ddf565b6006546001600160a01b03163314610c815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161062d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61092f338383611aab565b6117633383611853565b61177f5760405162461bcd60e51b815260040161062d906123e2565b6107b684848484611b79565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806117a55750819003601f19909101908152919050565b6000826117dc8584611bac565b14949350505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181a82610974565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061185f83610974565b9050806001600160a01b0316846001600160a01b0316148061188657506118868185610f51565b806118aa5750836001600160a01b031661189f84610756565b6001600160a01b0316145b949350505050565b826001600160a01b03166118c582610974565b6001600160a01b0316146118eb5760405162461bcd60e51b815260040161062d9061242f565b6001600160a01b03821661194d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161062d565b61195a8383836001611a23565b826001600160a01b031661196d82610974565b6001600160a01b0316146119935760405162461bcd60e51b815260040161062d9061242f565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60018111156107b6576001600160a01b03841615611a69576001600160a01b03841660009081526003602052604081208054839290611a63908490612474565b90915550505b6001600160a01b038316156107b6576001600160a01b03831660009081526003602052604081208054839290611aa0908490612487565b909155505050505050565b816001600160a01b0316836001600160a01b031603611b0c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161062d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b848484846118b2565b611b9084848484611bf9565b6107b65760405162461bcd60e51b815260040161062d9061249a565b600081815b8451811015611bf157611bdd82868381518110611bd057611bd06122ec565b6020026020010151611cfa565b915080611be9816124ec565b915050611bb1565b509392505050565b60006001600160a01b0384163b15611cef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c3d903390899088908890600401612505565b6020604051808303816000875af1925050508015611c78575060408051601f3d908101601f19168201909252611c7591810190612542565b60015b611cd5573d808015611ca6576040519150601f19603f3d011682016040523d82523d6000602084013e611cab565b606091505b508051600003611ccd5760405162461bcd60e51b815260040161062d9061249a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118aa565b506001949350505050565b6000818310611d16576000828152602084905260409020611d25565b60008381526020839052604090205b9392505050565b6001600160a01b0381168114610d4b57600080fd5b600060208284031215611d5357600080fd5b8135611d2581611d2c565b6001600160e01b031981168114610d4b57600080fd5b600060208284031215611d8657600080fd5b8135611d2581611d5e565b60008060208385031215611da457600080fd5b823567ffffffffffffffff80821115611dbc57600080fd5b818501915085601f830112611dd057600080fd5b813581811115611ddf57600080fd5b866020828501011115611df157600080fd5b60209290920196919550909350505050565b60005b83811015611e1e578181015183820152602001611e06565b50506000910152565b60008151808452611e3f816020860160208601611e03565b601f01601f19169290920160200192915050565b602081526000611d256020830184611e27565b600060208284031215611e7857600080fd5b5035919050565b60008060408385031215611e9257600080fd5b8235611e9d81611d2c565b946020939093013593505050565b600080600060608486031215611ec057600080fd5b8335611ecb81611d2c565b92506020840135611edb81611d2c565b929592945050506040919091013590565b60008083601f840112611efe57600080fd5b50813567ffffffffffffffff811115611f1657600080fd5b6020830191508360208260051b8501011115611f3157600080fd5b9250929050565b60008060208385031215611f4b57600080fd5b823567ffffffffffffffff811115611f6257600080fd5b611f6e85828601611eec565b90969095509350505050565b8015158114610d4b57600080fd5b60008060408385031215611f9b57600080fd5b8235611fa681611d2c565b91506020830135611fb681611f7a565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611fed57600080fd5b8435611ff881611d2c565b9350602085013561200881611d2c565b925060408501359150606085013567ffffffffffffffff8082111561202c57600080fd5b818701915087601f83011261204057600080fd5b81358181111561205257612052611fc1565b604051601f8201601f19908116603f0116810190838211818310171561207a5761207a611fc1565b816040528281528a602084870101111561209357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120ca57600080fd5b82356120d581611d2c565b91506020830135611fb681611d2c565b6000806000604084860312156120fa57600080fd5b83359250602084013567ffffffffffffffff81111561211857600080fd5b61212486828701611eec565b9497909650939450505050565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b600181811c9082168061218b57607f821691505b6020821081036121ab57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106bf57600081815260208120601f850160051c810160208610156121d85750805b601f850160051c820191505b818110156121f7578281556001016121e4565b505050505050565b67ffffffffffffffff83111561221757612217611fc1565b61222b836122258354612177565b836121b1565b6000601f84116001811461225f57600085156122475750838201355b600019600387901b1c1916600186901b178355610e05565b600083815260209020601f19861690835b828110156122905786850135825560209485019460019092019101612270565b50868210156122ad5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106a4576106a46122bf565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561231457600080fd5b8151611d2581611d2c565b6000815461232c81612177565b60018281168015612344576001811461235957612388565b60ff1984168752821515830287019450612388565b8560005260208060002060005b8581101561237f5781548a820152908401908201612366565b50505082870194505b5050505092915050565b600061239e828661231f565b84516123ae818360208901611e03565b6123ba8183018661231f565b979650505050505050565b6000602082840312156123d757600080fd5b8151611d2581611f7a565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b818103818111156106a4576106a46122bf565b808201808211156106a4576106a46122bf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600182016124fe576124fe6122bf565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253890830184611e27565b9695505050505050565b60006020828403121561255457600080fd5b8151611d2581611d5e56fea264697066735822122091afcb361a76ac3bacb96ec543e44e67152ac43c3c2c2eb82c1e398690c265b564736f6c63430008110033

Deployed Bytecode Sourcemap

64376:7600:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64178:191;;;;;;;;;;-1:-1:-1;64178:191:0;;;;;:::i;:::-;;:::i;:::-;;25376:305;;;;;;;;;;-1:-1:-1;25376:305:0;;;;;:::i;:::-;;:::i;:::-;;;953:14:1;;946:22;928:41;;916:2;901:18;25376:305:0;;;;;;;;68139:84;;;;;;;;;;-1:-1:-1;68139:84:0;;;;;:::i;:::-;;:::i;26304:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27816:171::-;;;;;;;;;;-1:-1:-1;27816:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2682:32:1;;;2664:51;;2652:2;2637:18;27816:171:0;2518:203:1;69476:157:0;;;;;;;;;;-1:-1:-1;69476:157:0;;;;;:::i;:::-;;:::i;65363:173::-;;;;;;;;;;-1:-1:-1;65506:11:0;;65491:12;;65469:19;;:34;:48;65363:173;;;3192:25:1;;;3180:2;3165:18;65363:173:0;3046:177:1;69641:163:0;;;;;;;;;;-1:-1:-1;69641:163:0;;;;;:::i;:::-;;:::i;68840:101::-;;;;;;;;;;-1:-1:-1;68916:17:0;;-1:-1:-1;;;68916:17:0;;;;68840:101;;67202:564;;;;;;:::i;:::-;;:::i;59260:143::-;;;;;;;;;;;;61903:42;59260:143;;69812:171;;;;;;;;;;-1:-1:-1;69812:171:0;;;;;:::i;:::-;;:::i;68440:84::-;;;;;;;;;;;;;:::i;26014:223::-;;;;;;;;;;-1:-1:-1;26014:223:0;;;;;:::i;:::-;;:::i;65544:500::-;;;;;;;;;;-1:-1:-1;65544:500:0;;;;;:::i;:::-;;:::i;25745:207::-;;;;;;;;;;-1:-1:-1;25745:207:0;;;;;:::i;:::-;;:::i;63655:105::-;;;;;;;;;;;;;:::i;63195:87::-;;;;;;;;;;-1:-1:-1;63268:6:0;;-1:-1:-1;;;;;63268:6:0;63195:87;;68532:105;;;;;;;;;;-1:-1:-1;68532:105:0;;;;;:::i;:::-;;:::i;63290:83::-;;;;;;;;;;-1:-1:-1;63361:4:0;;-1:-1:-1;;;;;63361:4:0;63290:83;;67774:180;;;;;;;;;;;;;:::i;26473:104::-;;;;;;;;;;;;;:::i;68231:92::-;;;;;;;;;;;;;:::i;68331:101::-;;;;;;;;;;;;;:::i;69292:176::-;;;;;;;;;;-1:-1:-1;69292:176:0;;;;;:::i;:::-;;:::i;68733:95::-;;;;;;;;;;-1:-1:-1;68806:14:0;;-1:-1:-1;;;68806:14:0;;;;68733:95;;67962:169;;;;;;;;;;;;;:::i;69991:228::-;;;;;;;;;;-1:-1:-1;69991:228:0;;;;;:::i;:::-;;:::i;66052:376::-;;;;;;;;;;;;;:::i;68949:335::-;;;;;;;;;;-1:-1:-1;68949:335:0;;;;;:::i;:::-;;:::i;68645:80::-;;;;;;;;;;-1:-1:-1;68645:80:0;;;;;:::i;:::-;;:::i;28285:164::-;;;;;;;;;;-1:-1:-1;28285:164:0;;;;;:::i;:::-;;:::i;66436:758::-;;;;;;:::i;:::-;;:::i;63768:203::-;;;;;;;;;;-1:-1:-1;63768:203:0;;;;;:::i;:::-;;:::i;64178:191::-;63156:11;:9;:11::i;:::-;-1:-1:-1;;;;;64270:22:0;::::1;64262:73;;;;-1:-1:-1::0;;;64262:73:0::1;;;;;;;:::i;:::-;;;;;;;;;64346:4;:15:::0;;-1:-1:-1;;;;;;64346:15:0::1;-1:-1:-1::0;;;;;64346:15:0;;;::::1;::::0;;;::::1;::::0;;64178:191::o;25376:305::-;25478:4;-1:-1:-1;;;;;;25515:40:0;;-1:-1:-1;;;25515:40:0;;:105;;-1:-1:-1;;;;;;;25572:48:0;;-1:-1:-1;;;25572:48:0;25515:105;:158;;;-1:-1:-1;;;;;;;;;;24346:40:0;;;25637:36;25495:178;25376:305;-1:-1:-1;;25376:305:0:o;68139:84::-;63156:11;:9;:11::i;:::-;68205:3:::1;:10;68211:4:::0;;68205:3;:10:::1;:::i;:::-;;68139:84:::0;;:::o;26304:100::-;26358:13;26391:5;26384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26304:100;:::o;27816:171::-;27892:7;27912:23;27927:7;27912:14;:23::i;:::-;-1:-1:-1;27955:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27955:24:0;;27816:171::o;69476:157::-;69572:8;61042:30;61063:8;61042:20;:30::i;:::-;69593:32:::1;69607:8;69617:7;69593:13;:32::i;69641:163::-:0;69742:4;-1:-1:-1;;;;;60768:18:0;;60776:10;60768:18;60764:83;;60803:32;60824:10;60803:20;:32::i;:::-;69759:37:::1;69778:4;69784:2;69788:7;69759:18;:37::i;:::-;69641:163:::0;;;;:::o;67202:564::-;67265:6;65257:2;65247:6;:12;;65239:38;;;;-1:-1:-1;;;65239:38:0;;10796:2:1;65239:38:0;;;10778:21:1;10835:2;10815:18;;;10808:30;-1:-1:-1;;;10854:18:1;;;10847:43;10907:18;;65239:38:0;10594:337:1;65239:38:0;42319:21:::1;:19;:21::i;:::-;67305:14:::2;::::0;-1:-1:-1;;;67305:14:0;::::2;;;67297:50;;;::::0;-1:-1:-1;;;67297:50:0;;11138:2:1;67297:50:0::2;::::0;::::2;11120:21:1::0;11177:2;11157:18;;;11150:30;11216:25;11196:18;;;11189:53;11259:18;;67297:50:0::2;10936:347:1::0;67297:50:0::2;67380:18;67392:6:::0;64717:17:::2;67380:18;:::i;:::-;67366:9;:33;;67358:65;;;::::0;-1:-1:-1;;;67358:65:0;;11795:2:1;67358:65:0::2;::::0;::::2;11777:21:1::0;11834:2;11814:18;;;11807:30;-1:-1:-1;;;11853:18:1;;;11846:49;11912:18;;67358:65:0::2;11593:343:1::0;67358:65:0::2;64671:4;67491:6;67469:19;;:28;:45;;67461:66;;;::::0;-1:-1:-1;;;67461:66:0;;12143:2:1;67461:66:0::2;::::0;::::2;12125:21:1::0;12182:1;12162:18;;;12155:29;-1:-1:-1;;;12200:18:1;;;12193:38;12248:18;;67461:66:0::2;11941:331:1::0;67461:66:0::2;67568:19;::::0;;67602:29;;::::2;::::0;;;67561:4:::2;:26;67542:16;67646:102;67666:6;67662:1;:10;67646:102;;;67698:34;67704:10;67730:1;67716:11;:15;67698:5;:34::i;:::-;67674:3;;67646:102;;;;67436:323;42363:20:::1;41757:1:::0;42883:7;:22;42700:213;42363:20:::1;67202:564:::0;;:::o;69812:171::-;69917:4;-1:-1:-1;;;;;60768:18:0;;60776:10;60768:18;60764:83;;60803:32;60824:10;60803:20;:32::i;:::-;69934:41:::1;69957:4;69963:2;69967:7;69934:22;:41::i;68440:84::-:0;63156:11;:9;:11::i;:::-;68506:10:::1;::::0;;-1:-1:-1;;68492:24:0;::::1;68506:10;::::0;;::::1;68505:11;68492:24;::::0;;68440:84::o;26014:223::-;26086:7;30747:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30747:16:0;;26150:56;;;;-1:-1:-1;;;26150:56:0;;12479:2:1;26150:56:0;;;12461:21:1;12518:2;12498:18;;;12491:30;-1:-1:-1;;;12537:18:1;;;12530:54;12601:18;;26150:56:0;12277:348:1;65544:500:0;42319:21;:19;:21::i;:::-;65617:6:::1;65613:351;65629:14:::0;;::::1;65613:351;;;65679:1;65669:3;;65673:1;65669:6;;;;;;;:::i;:::-;;;;;;;:11;;:28;;;;;65694:3;65684;;65688:1;65684:6;;;;;;;:::i;:::-;;;;;;;:13;;65669:28;65661:51;;;::::0;-1:-1:-1;;;65661:51:0;;12964:2:1;65661:51:0::1;::::0;::::1;12946:21:1::0;13003:2;12983:18;;;12976:30;-1:-1:-1;;;13022:18:1;;;13015:40;13072:18;;65661:51:0::1;12762:334:1::0;65661:51:0::1;65735:14;:22;65750:3;;65754:1;65750:6;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;65735:22:::0;;-1:-1:-1;65735:22:0;::::1;::::0;;;;;;-1:-1:-1;65735:22:0;;::::1;;:31;65727:68;;;::::0;-1:-1:-1;;;65727:68:0;;13303:2:1;65727:68:0::1;::::0;::::1;13285:21:1::0;13342:2;13322:18;;;13315:30;13381:26;13361:18;;;13354:54;13425:18;;65727:68:0::1;13101:348:1::0;65727:68:0::1;65835:4;65810:14;:22;65825:3;;65829:1;65825:6;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;;65810:22:::0;;-1:-1:-1;65810:22:0;::::1;::::0;;;;;;-1:-1:-1;65810:22:0;:29;;-1:-1:-1;;65810:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65860:5:::1;::::0;65854:36:::1;::::0;-1:-1:-1;;;;;65860:5:0::1;:13;65874:3:::0;;65878:1;65874:6;;::::1;;;;;:::i;:::-;;;;;;;65860:21;;;;;;;;;;;;;3192:25:1::0;;3180:2;3165:18;;3046:177;65860:21:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65883:3;;65887:1;65883:6;;;;;;;:::i;:::-;;;;;;;65854:5;:36::i;:::-;65934:3;;65613:351;;;-1:-1:-1::0;65999:12:0::1;:26:::0;;;::::1;::::0;;42363:20;41757:1;42883:7;:22;42700:213;25745:207;25817:7;-1:-1:-1;;;;;25845:19:0;;25837:73;;;;-1:-1:-1;;;25837:73:0;;13912:2:1;25837:73:0;;;13894:21:1;13951:2;13931:18;;;13924:30;13990:34;13970:18;;;13963:62;-1:-1:-1;;;14041:18:1;;;14034:39;14090:19;;25837:73:0;13710:405:1;25837:73:0;-1:-1:-1;;;;;;25928:16:0;;;;;:9;:16;;;;;;;25745:207::o;63655:105::-;63085:13;:11;:13::i;:::-;63722:30:::1;63749:1;63722:18;:30::i;:::-;63655:105::o:0;68532:::-;63156:11;:9;:11::i;:::-;68611:7:::1;:18;68621:8:::0;;68611:7;:18:::1;:::i;67774:180::-:0;63085:13;:11;:13::i;:::-;67828:9:::1;67851:7;63268:6:::0;;-1:-1:-1;;;;;63268:6:0;;63195:87;67851:7:::1;-1:-1:-1::0;;;;;67843:21:0::1;67872;67843:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67827:71;;;67917:4;67909:37;;;::::0;-1:-1:-1;;;67909:37:0;;14532:2:1;67909:37:0::1;::::0;::::1;14514:21:1::0;14571:2;14551:18;;;14544:30;-1:-1:-1;;;14590:18:1;;;14583:50;14650:18;;67909:37:0::1;14330:344:1::0;67909:37:0::1;67816:138;67774:180::o:0;26473:104::-;26529:13;26562:7;26555:14;;;;;:::i;68231:92::-;63156:11;:9;:11::i;:::-;68301:14:::1;::::0;;-1:-1:-1;;;;68283:32:0;::::1;-1:-1:-1::0;;;68301:14:0;;;::::1;;;68300:15;68283:32:::0;;::::1;;::::0;;68231:92::o;68331:101::-;63156:11;:9;:11::i;:::-;68407:17:::1;::::0;;-1:-1:-1;;;;68386:38:0;::::1;-1:-1:-1::0;;;68407:17:0;;;::::1;;;68406:18;68386:38:::0;;::::1;;::::0;;68331:101::o;69292:176::-;69396:8;61042:30;61063:8;61042:20;:30::i;:::-;69417:43:::1;69441:8;69451;69417:23;:43::i;67962:169::-:0;63156:11;:9;:11::i;:::-;68007:9:::1;68030:5;63361:4:::0;;-1:-1:-1;;;;;63361:4:0;;63290:83;69991:228;70142:4;-1:-1:-1;;;;;60768:18:0;;60776:10;60768:18;60764:83;;60803:32;60824:10;60803:20;:32::i;:::-;70164:47:::1;70187:4;70193:2;70197:7;70206:4;70164:22;:47::i;:::-;69991:228:::0;;;;;:::o;66052:376::-;42319:21;:19;:21::i;:::-;63085:13:::1;:11;:13::i;:::-;66123:15:::2;::::0;::::2;;66115:46;;;::::0;-1:-1:-1;;;66115:46:0;;14881:2:1;66115:46:0::2;::::0;::::2;14863:21:1::0;14920:2;14900:18;;;14893:30;-1:-1:-1;;;14939:18:1;;;14932:48;14997:18;;66115:46:0::2;14679:342:1::0;66115:46:0::2;66172:15;:23:::0;;-1:-1:-1;;66172:23:0::2;::::0;;66222:3:::2;66208:184;66233:4;66227:2;:10;66208:184;;66255:62;66269:42;66314:2;66255:5;:62::i;:::-;66361:4;;66208:184;;;-1:-1:-1::0;66418:2:0::2;66404:11;:16:::0;42363:20;41757:1;42883:7;:22;42700:213;68949:335;69051:10;;69022:13;;69051:10;;69048:229;;;69110:3;69115:18;69125:7;69115:9;:18::i;:::-;69135:7;69093:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69079:65;;68949:335;;;:::o;69048:229::-;69191:73;;;;;;16441:34:1;16429:47;;-1:-1:-1;;;16501:2:1;16492:12;;16485:45;16555:2;16546:12;;16227:337;68645:80:0;63156:11;:9;:11::i;:::-;68705:4:::1;:12:::0;68645:80::o;28285:164::-;-1:-1:-1;;;;;28406:25:0;;;28382:4;28406:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28285:164::o;66436:758::-;66535:6;65257:2;65247:6;:12;;65239:38;;;;-1:-1:-1;;;65239:38:0;;10796:2:1;65239:38:0;;;10778:21:1;10835:2;10815:18;;;10808:30;-1:-1:-1;;;10854:18:1;;;10847:43;10907:18;;65239:38:0;10594:337:1;65239:38:0;42319:21:::1;:19;:21::i;:::-;66575:17:::2;::::0;-1:-1:-1;;;66575:17:0;::::2;;;66567:56;;;::::0;-1:-1:-1;;;66567:56:0;;16771:2:1;66567:56:0::2;::::0;::::2;16753:21:1::0;16810:2;16790:18;;;16783:30;16849:28;16829:18;;;16822:56;16895:18;;66567:56:0::2;16569:350:1::0;66567:56:0::2;66661:28;::::0;-1:-1:-1;;66678:10:0::2;17073:2:1::0;17069:15;17065:53;66661:28:0::2;::::0;::::2;17053:66:1::0;66636:12:0::2;::::0;17135::1;;66661:28:0::2;;;;;;;;;;;;66651:39;;;;;;66636:54;;66709:44;66728:12;;66709:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;66742:4:0::2;::::0;;-1:-1:-1;66748:4:0;;-1:-1:-1;66709:18:0::2;:44::i;:::-;66701:72;;;::::0;-1:-1:-1;;;66701:72:0;;17360:2:1;66701:72:0::2;::::0;::::2;17342:21:1::0;17399:2;17379:18;;;17372:30;-1:-1:-1;;;17418:18:1;;;17411:45;17473:18;;66701:72:0::2;17158:339:1::0;66701:72:0::2;66808:18;66820:6:::0;64717:17:::2;66808:18;:::i;:::-;66794:9;:33;;66786:65;;;::::0;-1:-1:-1;;;66786:65:0;;11795:2:1;66786:65:0::2;::::0;::::2;11777:21:1::0;11834:2;11814:18;;;11807:30;-1:-1:-1;;;11853:18:1;;;11846:49;11912:18;;66786:65:0::2;11593:343:1::0;66786:65:0::2;64671:4;66919:6;66897:19;;:28;:45;;66889:66;;;::::0;-1:-1:-1;;;66889:66:0;;12143:2:1;66889:66:0::2;::::0;::::2;12125:21:1::0;12182:1;12162:18;;;12155:29;-1:-1:-1;;;12200:18:1;;;12193:38;12248:18;;66889:66:0::2;11941:331:1::0;66889:66:0::2;66996:19;::::0;;67030:29;;::::2;::::0;;;66989:4:::2;:26;66970:16;67074:102;67094:6;67090:1;:10;67074:102;;;67126:34;67132:10;67158:1;67144:11;:15;67126:5;:34::i;:::-;67102:3;;67074:102;;;;66864:323;66556:638;42363:20:::1;41757:1:::0;42883:7;:22;42700:213;63768:203;63085:13;:11;:13::i;:::-;-1:-1:-1;;;;;63859:22:0;::::1;63851:73;;;;-1:-1:-1::0;;;63851:73:0::1;;;;;;;:::i;:::-;63935:28;63954:8;63935:18;:28::i;63521:126::-:0;63361:4;;-1:-1:-1;;;;;63361:4:0;7726:10;63583:21;63575:64;;;;-1:-1:-1;;;63575:64:0;;17704:2:1;63575:64:0;;;17686:21:1;17743:2;17723:18;;;17716:30;17782:32;17762:18;;;17755:60;17832:18;;63575:64:0;17502:354:1;37379:135:0;31149:4;30747:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30747:16:0;37453:53;;;;-1:-1:-1;;;37453:53:0;;12479:2:1;37453:53:0;;;12461:21:1;12518:2;12498:18;;;12491:30;-1:-1:-1;;;12537:18:1;;;12530:54;12601:18;;37453:53:0;12277:348:1;61185:647:0;61903:42;61376:45;:49;61372:453;;61675:67;;-1:-1:-1;;;61675:67:0;;61726:4;61675:67;;;18073:34:1;-1:-1:-1;;;;;18143:15:1;;18123:18;;;18116:43;61903:42:0;;61675;;18008:18:1;;61675:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61670:144;;61770:28;;-1:-1:-1;;;61770:28:0;;-1:-1:-1;;;;;2682:32:1;;61770:28:0;;;2664:51:1;2637:18;;61770:28:0;2518:203:1;27334:416:0;27415:13;27431:23;27446:7;27431:14;:23::i;:::-;27415:39;;27479:5;-1:-1:-1;;;;;27473:11:0;:2;-1:-1:-1;;;;;27473:11:0;;27465:57;;;;-1:-1:-1;;;27465:57:0;;18622:2:1;27465:57:0;;;18604:21:1;18661:2;18641:18;;;18634:30;18700:34;18680:18;;;18673:62;-1:-1:-1;;;18751:18:1;;;18744:31;18792:19;;27465:57:0;18420:397:1;27465:57:0;7726:10;-1:-1:-1;;;;;27557:21:0;;;;:62;;-1:-1:-1;27582:37:0;27599:5;7726:10;28285:164;:::i;27582:37::-;27535:173;;;;-1:-1:-1;;;27535:173:0;;19024:2:1;27535:173:0;;;19006:21:1;19063:2;19043:18;;;19036:30;19102:34;19082:18;;;19075:62;19173:31;19153:18;;;19146:59;19222:19;;27535:173:0;18822:425:1;27535:173:0;27721:21;27730:2;27734:7;27721:8;:21::i;28516:301::-;28677:41;7726:10;28710:7;28677:18;:41::i;:::-;28669:99;;;;-1:-1:-1;;;28669:99:0;;;;;;;:::i;:::-;28781:28;28791:4;28797:2;28801:7;28781:9;:28::i;42399:293::-;41801:1;42533:7;;:19;42525:63;;;;-1:-1:-1;;;42525:63:0;;19868:2:1;42525:63:0;;;19850:21:1;19907:2;19887:18;;;19880:30;19946:33;19926:18;;;19919:61;19997:18;;42525:63:0;19666:355:1;42525:63:0;41801:1;42666:7;:18;42399:293::o;32943:942::-;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;20228:2:1;33015:61:0;;;20210:21:1;;;20247:18;;;20240:30;20306:34;20286:18;;;20279:62;20358:18;;33015:61:0;20026:356:1;33015:61:0;31149:4;30747:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30747:16:0;31173:31;33087:58;;;;-1:-1:-1;;;33087:58:0;;20589:2:1;33087:58:0;;;20571:21:1;20628:2;20608:18;;;20601:30;20667;20647:18;;;20640:58;20715:18;;33087:58:0;20387:352:1;33087:58:0;33158:48;33187:1;33191:2;33195:7;33204:1;33158:20;:48::i;:::-;31149:4;30747:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30747:16:0;31173:31;33296:58;;;;-1:-1:-1;;;33296:58:0;;20589:2:1;33296:58:0;;;20571:21:1;20628:2;20608:18;;;20601:30;20667;20647:18;;;20640:58;20715:18;;33296:58:0;20387:352:1;33296:58:0;-1:-1:-1;;;;;33703:13:0;;;;;;:9;:13;;;;;;;;:18;;33720:1;33703:18;;;33745:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33745:21:0;;;;;33784:33;33753:7;;33703:13;;33784:33;;33703:13;;33784:33;67202:564;;:::o;28888:151::-;28992:39;29009:4;29015:2;29019:7;28992:39;;;;;;;;;;;;:16;:39::i;63381:132::-;63268:6;;-1:-1:-1;;;;;63268:6:0;7726:10;63445:23;63437:68;;;;-1:-1:-1;;;63437:68:0;;20946:2:1;63437:68:0;;;20928:21:1;;;20965:18;;;20958:30;21024:34;21004:18;;;20997:62;21076:18;;63437:68:0;20744:356:1;63979:191:0;64072:6;;;-1:-1:-1;;;;;64089:17:0;;;-1:-1:-1;;;;;;64089:17:0;;;;;;;64122:40;;64072:6;;;64089:17;64072:6;;64122:40;;64053:16;;64122:40;64042:128;63979:191;:::o;28059:155::-;28154:52;7726:10;28187:8;28197;28154:18;:52::i;29110:279::-;29241:41;7726:10;29274:7;29241:18;:41::i;:::-;29233:99;;;;-1:-1:-1;;;29233:99:0;;;;;;;:::i;:::-;29343:38;29357:4;29363:2;29367:7;29376:4;29343:13;:38::i;70227:1745::-;70292:17;70726:4;70719;70713:11;70709:22;70818:1;70812:4;70805:15;70893:4;70890:1;70886:12;70879:19;;;70975:1;70970:3;70963:14;71079:3;71318:5;71300:428;71366:1;71361:3;71357:11;71350:18;;71537:2;71531:4;71527:13;71523:2;71519:22;71514:3;71506:36;71631:2;71621:13;;71688:25;71300:428;71688:25;-1:-1:-1;71758:13:0;;;-1:-1:-1;;71873:14:0;;;71935:19;;;71873:14;70227:1745;-1:-1:-1;70227:1745:0:o;43575:156::-;43666:4;43719;43690:25;43703:5;43710:4;43690:12;:25::i;:::-;:33;;43575:156;-1:-1:-1;;;;43575:156:0:o;36692:174::-;36767:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36767:29:0;-1:-1:-1;;;;;36767:29:0;;;;;;;;:24;;36821:23;36767:24;36821:14;:23::i;:::-;-1:-1:-1;;;;;36812:46:0;;;;;;;;;;;36692:174;;:::o;31379:264::-;31472:4;31489:13;31505:23;31520:7;31505:14;:23::i;:::-;31489:39;;31558:5;-1:-1:-1;;;;;31547:16:0;:7;-1:-1:-1;;;;;31547:16:0;;:52;;;;31567:32;31584:5;31591:7;31567:16;:32::i;:::-;31547:87;;;;31627:7;-1:-1:-1;;;;;31603:31:0;:20;31615:7;31603:11;:20::i;:::-;-1:-1:-1;;;;;31603:31:0;;31547:87;31539:96;31379:264;-1:-1:-1;;;;31379:264:0:o;35344:1229::-;35469:4;-1:-1:-1;;;;;35442:31:0;:23;35457:7;35442:14;:23::i;:::-;-1:-1:-1;;;;;35442:31:0;;35434:81;;;;-1:-1:-1;;;35434:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35534:16:0;;35526:65;;;;-1:-1:-1;;;35526:65:0;;21713:2:1;35526:65:0;;;21695:21:1;21752:2;21732:18;;;21725:30;21791:34;21771:18;;;21764:62;-1:-1:-1;;;21842:18:1;;;21835:34;21886:19;;35526:65:0;21511:400:1;35526:65:0;35604:42;35625:4;35631:2;35635:7;35644:1;35604:20;:42::i;:::-;35776:4;-1:-1:-1;;;;;35749:31:0;:23;35764:7;35749:14;:23::i;:::-;-1:-1:-1;;;;;35749:31:0;;35741:81;;;;-1:-1:-1;;;35741:81:0;;;;;;;:::i;:::-;35894:24;;;;:15;:24;;;;;;;;35887:31;;-1:-1:-1;;;;;;35887:31:0;;;;;;-1:-1:-1;;;;;36370:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;36370:20:0;;;36405:13;;;;;;;;;:18;;35887:31;36405:18;;;36445:16;;;:7;:16;;;;;;:21;;;;;;;;;;36484:27;;35910:7;;36484:27;;;68205:10:::1;68139:84:::0;;:::o;39663:410::-;39853:1;39841:9;:13;39837:229;;;-1:-1:-1;;;;;39875:18:0;;;39871:87;;-1:-1:-1;;;;;39914:15:0;;;;;;:9;:15;;;;;:28;;39933:9;;39914:15;:28;;39933:9;;39914:28;:::i;:::-;;;;-1:-1:-1;;39871:87:0;-1:-1:-1;;;;;39976:16:0;;;39972:83;;-1:-1:-1;;;;;40013:13:0;;;;;;:9;:13;;;;;:26;;40030:9;;40013:13;:26;;40030:9;;40013:26;:::i;:::-;;;;-1:-1:-1;;39663:410:0;;;;:::o;37009:281::-;37130:8;-1:-1:-1;;;;;37121:17:0;:5;-1:-1:-1;;;;;37121:17:0;;37113:55;;;;-1:-1:-1;;;37113:55:0;;22381:2:1;37113:55:0;;;22363:21:1;22420:2;22400:18;;;22393:30;22459:27;22439:18;;;22432:55;22504:18;;37113:55:0;22179:349:1;37113:55:0;-1:-1:-1;;;;;37179:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37179:46:0;;;;;;;;;;37241:41;;928::1;;;37241::0;;901:18:1;37241:41:0;;;;;;;37009:281;;;:::o;30270:270::-;30383:28;30393:4;30399:2;30403:7;30383:9;:28::i;:::-;30430:47;30453:4;30459:2;30463:7;30472:4;30430:22;:47::i;:::-;30422:110;;;;-1:-1:-1;;;30422:110:0;;;;;;;:::i;44374:296::-;44457:7;44500:4;44457:7;44515:118;44539:5;:12;44535:1;:16;44515:118;;;44588:33;44598:12;44612:5;44618:1;44612:8;;;;;;;;:::i;:::-;;;;;;;44588:9;:33::i;:::-;44573:48;-1:-1:-1;44553:3:0;;;;:::i;:::-;;;;44515:118;;;-1:-1:-1;44650:12:0;44374:296;-1:-1:-1;;;44374:296:0:o;38078:853::-;38232:4;-1:-1:-1;;;;;38253:13:0;;7575:19;:23;38249:675;;38289:71;;-1:-1:-1;;;38289:71:0;;-1:-1:-1;;;;;38289:36:0;;;;;:71;;7726:10;;38340:4;;38346:7;;38355:4;;38289:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38289:71:0;;;;;;;;-1:-1:-1;;38289:71:0;;;;;;;;;;;;:::i;:::-;;;38285:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38530:6;:13;38547:1;38530:18;38526:328;;38573:60;;-1:-1:-1;;;38573:60:0;;;;;;;:::i;38526:328::-;38804:6;38798:13;38789:6;38785:2;38781:15;38774:38;38285:584;-1:-1:-1;;;;;;38411:51:0;-1:-1:-1;;;38411:51:0;;-1:-1:-1;38404:58:0;;38249:675;-1:-1:-1;38908:4:0;38078:853;;;;;;:::o;51578:149::-;51641:7;51672:1;51668;:5;:51;;51803:13;51897:15;;;51933:4;51926:15;;;51980:4;51964:21;;51668:51;;;51803:13;51897:15;;;51933:4;51926:15;;;51980:4;51964:21;;51676:20;51661:58;51578:149;-1:-1:-1;;;51578:149:0:o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:131::-;-1:-1:-1;;;;;;476:32:1;;466:43;;456:71;;523:1;520;513:12;538:245;596:6;649:2;637:9;628:7;624:23;620:32;617:52;;;665:1;662;655:12;617:52;704:9;691:23;723:30;747:5;723:30;:::i;980:592::-;1051:6;1059;1112:2;1100:9;1091:7;1087:23;1083:32;1080:52;;;1128:1;1125;1118:12;1080:52;1168:9;1155:23;1197:18;1238:2;1230:6;1227:14;1224:34;;;1254:1;1251;1244:12;1224:34;1292:6;1281:9;1277:22;1267:32;;1337:7;1330:4;1326:2;1322:13;1318:27;1308:55;;1359:1;1356;1349:12;1308:55;1399:2;1386:16;1425:2;1417:6;1414:14;1411:34;;;1441:1;1438;1431:12;1411:34;1486:7;1481:2;1472:6;1468:2;1464:15;1460:24;1457:37;1454:57;;;1507:1;1504;1497:12;1454:57;1538:2;1530:11;;;;;1560:6;;-1:-1:-1;980:592:1;;-1:-1:-1;;;;980:592:1:o;1577:250::-;1662:1;1672:113;1686:6;1683:1;1680:13;1672:113;;;1762:11;;;1756:18;1743:11;;;1736:39;1708:2;1701:10;1672:113;;;-1:-1:-1;;1819:1:1;1801:16;;1794:27;1577:250::o;1832:271::-;1874:3;1912:5;1906:12;1939:6;1934:3;1927:19;1955:76;2024:6;2017:4;2012:3;2008:14;2001:4;1994:5;1990:16;1955:76;:::i;:::-;2085:2;2064:15;-1:-1:-1;;2060:29:1;2051:39;;;;2092:4;2047:50;;1832:271;-1:-1:-1;;1832:271:1:o;2108:220::-;2257:2;2246:9;2239:21;2220:4;2277:45;2318:2;2307:9;2303:18;2295:6;2277:45;:::i;2333:180::-;2392:6;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;-1:-1:-1;2484:23:1;;2333:180;-1:-1:-1;2333:180:1:o;2726:315::-;2794:6;2802;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2910:9;2897:23;2929:31;2954:5;2929:31;:::i;:::-;2979:5;3031:2;3016:18;;;;3003:32;;-1:-1:-1;;;2726:315:1:o;3228:456::-;3305:6;3313;3321;3374:2;3362:9;3353:7;3349:23;3345:32;3342:52;;;3390:1;3387;3380:12;3342:52;3429:9;3416:23;3448:31;3473:5;3448:31;:::i;:::-;3498:5;-1:-1:-1;3555:2:1;3540:18;;3527:32;3568:33;3527:32;3568:33;:::i;:::-;3228:456;;3620:7;;-1:-1:-1;;;3674:2:1;3659:18;;;;3646:32;;3228:456::o;3929:367::-;3992:8;4002:6;4056:3;4049:4;4041:6;4037:17;4033:27;4023:55;;4074:1;4071;4064:12;4023:55;-1:-1:-1;4097:20:1;;4140:18;4129:30;;4126:50;;;4172:1;4169;4162:12;4126:50;4209:4;4201:6;4197:17;4185:29;;4269:3;4262:4;4252:6;4249:1;4245:14;4237:6;4233:27;4229:38;4226:47;4223:67;;;4286:1;4283;4276:12;4223:67;3929:367;;;;;:::o;4301:437::-;4387:6;4395;4448:2;4436:9;4427:7;4423:23;4419:32;4416:52;;;4464:1;4461;4454:12;4416:52;4504:9;4491:23;4537:18;4529:6;4526:30;4523:50;;;4569:1;4566;4559:12;4523:50;4608:70;4670:7;4661:6;4650:9;4646:22;4608:70;:::i;:::-;4697:8;;4582:96;;-1:-1:-1;4301:437:1;-1:-1:-1;;;;4301:437:1:o;4743:118::-;4829:5;4822:13;4815:21;4808:5;4805:32;4795:60;;4851:1;4848;4841:12;4866:382;4931:6;4939;4992:2;4980:9;4971:7;4967:23;4963:32;4960:52;;;5008:1;5005;4998:12;4960:52;5047:9;5034:23;5066:31;5091:5;5066:31;:::i;:::-;5116:5;-1:-1:-1;5173:2:1;5158:18;;5145:32;5186:30;5145:32;5186:30;:::i;:::-;5235:7;5225:17;;;4866:382;;;;;:::o;5253:127::-;5314:10;5309:3;5305:20;5302:1;5295:31;5345:4;5342:1;5335:15;5369:4;5366:1;5359:15;5385:1266;5480:6;5488;5496;5504;5557:3;5545:9;5536:7;5532:23;5528:33;5525:53;;;5574:1;5571;5564:12;5525:53;5613:9;5600:23;5632:31;5657:5;5632:31;:::i;:::-;5682:5;-1:-1:-1;5739:2:1;5724:18;;5711:32;5752:33;5711:32;5752:33;:::i;:::-;5804:7;-1:-1:-1;5858:2:1;5843:18;;5830:32;;-1:-1:-1;5913:2:1;5898:18;;5885:32;5936:18;5966:14;;;5963:34;;;5993:1;5990;5983:12;5963:34;6031:6;6020:9;6016:22;6006:32;;6076:7;6069:4;6065:2;6061:13;6057:27;6047:55;;6098:1;6095;6088:12;6047:55;6134:2;6121:16;6156:2;6152;6149:10;6146:36;;;6162:18;;:::i;:::-;6237:2;6231:9;6205:2;6291:13;;-1:-1:-1;;6287:22:1;;;6311:2;6283:31;6279:40;6267:53;;;6335:18;;;6355:22;;;6332:46;6329:72;;;6381:18;;:::i;:::-;6421:10;6417:2;6410:22;6456:2;6448:6;6441:18;6496:7;6491:2;6486;6482;6478:11;6474:20;6471:33;6468:53;;;6517:1;6514;6507:12;6468:53;6573:2;6568;6564;6560:11;6555:2;6547:6;6543:15;6530:46;6618:1;6613:2;6608;6600:6;6596:15;6592:24;6585:35;6639:6;6629:16;;;;;;;5385:1266;;;;;;;:::o;6841:388::-;6909:6;6917;6970:2;6958:9;6949:7;6945:23;6941:32;6938:52;;;6986:1;6983;6976:12;6938:52;7025:9;7012:23;7044:31;7069:5;7044:31;:::i;:::-;7094:5;-1:-1:-1;7151:2:1;7136:18;;7123:32;7164:33;7123:32;7164:33;:::i;7234:505::-;7329:6;7337;7345;7398:2;7386:9;7377:7;7373:23;7369:32;7366:52;;;7414:1;7411;7404:12;7366:52;7450:9;7437:23;7427:33;;7511:2;7500:9;7496:18;7483:32;7538:18;7530:6;7527:30;7524:50;;;7570:1;7567;7560:12;7524:50;7609:70;7671:7;7662:6;7651:9;7647:22;7609:70;:::i;:::-;7234:505;;7698:8;;-1:-1:-1;7583:96:1;;-1:-1:-1;;;;7234:505:1:o;7744:402::-;7946:2;7928:21;;;7985:2;7965:18;;;7958:30;8024:34;8019:2;8004:18;;7997:62;-1:-1:-1;;;8090:2:1;8075:18;;8068:36;8136:3;8121:19;;7744:402::o;8151:380::-;8230:1;8226:12;;;;8273;;;8294:61;;8348:4;8340:6;8336:17;8326:27;;8294:61;8401:2;8393:6;8390:14;8370:18;8367:38;8364:161;;8447:10;8442:3;8438:20;8435:1;8428:31;8482:4;8479:1;8472:15;8510:4;8507:1;8500:15;8364:161;;8151:380;;;:::o;8662:545::-;8764:2;8759:3;8756:11;8753:448;;;8800:1;8825:5;8821:2;8814:17;8870:4;8866:2;8856:19;8940:2;8928:10;8924:19;8921:1;8917:27;8911:4;8907:38;8976:4;8964:10;8961:20;8958:47;;;-1:-1:-1;8999:4:1;8958:47;9054:2;9049:3;9045:12;9042:1;9038:20;9032:4;9028:31;9018:41;;9109:82;9127:2;9120:5;9117:13;9109:82;;;9172:17;;;9153:1;9142:13;9109:82;;;9113:3;;;8662:545;;;:::o;9383:1206::-;9507:18;9502:3;9499:27;9496:53;;;9529:18;;:::i;:::-;9558:94;9648:3;9608:38;9640:4;9634:11;9608:38;:::i;:::-;9602:4;9558:94;:::i;:::-;9678:1;9703:2;9698:3;9695:11;9720:1;9715:616;;;;10375:1;10392:3;10389:93;;;-1:-1:-1;10448:19:1;;;10435:33;10389:93;-1:-1:-1;;9340:1:1;9336:11;;;9332:24;9328:29;9318:40;9364:1;9360:11;;;9315:57;10495:78;;9688:895;;9715:616;8609:1;8602:14;;;8646:4;8633:18;;-1:-1:-1;;9751:17:1;;;9852:9;9874:229;9888:7;9885:1;9882:14;9874:229;;;9977:19;;;9964:33;9949:49;;10084:4;10069:20;;;;10037:1;10025:14;;;;9904:12;9874:229;;;9878:3;10131;10122:7;10119:16;10116:159;;;10255:1;10251:6;10245:3;10239;10236:1;10232:11;10228:21;10224:34;10220:39;10207:9;10202:3;10198:19;10185:33;10181:79;10173:6;10166:95;10116:159;;;10318:1;10312:3;10309:1;10305:11;10301:19;10295:4;10288:33;9688:895;;9383:1206;;;:::o;11288:127::-;11349:10;11344:3;11340:20;11337:1;11330:31;11380:4;11377:1;11370:15;11404:4;11401:1;11394:15;11420:168;11493:9;;;11524;;11541:15;;;11535:22;;11521:37;11511:71;;11562:18;;:::i;12630:127::-;12691:10;12686:3;12682:20;12679:1;12672:31;12722:4;12719:1;12712:15;12746:4;12743:1;12736:15;13454:251;13524:6;13577:2;13565:9;13556:7;13552:23;13548:32;13545:52;;;13593:1;13590;13583:12;13545:52;13625:9;13619:16;13644:31;13669:5;13644:31;:::i;15026:722::-;15076:3;15117:5;15111:12;15146:36;15172:9;15146:36;:::i;:::-;15201:1;15218:18;;;15245:133;;;;15392:1;15387:355;;;;15211:531;;15245:133;-1:-1:-1;;15278:24:1;;15266:37;;15351:14;;15344:22;15332:35;;15323:45;;;-1:-1:-1;15245:133:1;;15387:355;15418:5;15415:1;15408:16;15447:4;15492:2;15489:1;15479:16;15517:1;15531:165;15545:6;15542:1;15539:13;15531:165;;;15623:14;;15610:11;;;15603:35;15666:16;;;;15560:10;;15531:165;;;15535:3;;;15725:6;15720:3;15716:16;15709:23;;15211:531;;;;;15026:722;;;;:::o;15753:469::-;15974:3;16002:38;16036:3;16028:6;16002:38;:::i;:::-;16069:6;16063:13;16085:65;16143:6;16139:2;16132:4;16124:6;16120:17;16085:65;:::i;:::-;16166:50;16208:6;16204:2;16200:15;16192:6;16166:50;:::i;:::-;16159:57;15753:469;-1:-1:-1;;;;;;;15753:469:1:o;18170:245::-;18237:6;18290:2;18278:9;18269:7;18265:23;18261:32;18258:52;;;18306:1;18303;18296:12;18258:52;18338:9;18332:16;18357:28;18379:5;18357:28;:::i;19252:409::-;19454:2;19436:21;;;19493:2;19473:18;;;19466:30;19532:34;19527:2;19512:18;;19505:62;-1:-1:-1;;;19598:2:1;19583:18;;19576:43;19651:3;19636:19;;19252:409::o;21105:401::-;21307:2;21289:21;;;21346:2;21326:18;;;21319:30;21385:34;21380:2;21365:18;;21358:62;-1:-1:-1;;;21451:2:1;21436:18;;21429:35;21496:3;21481:19;;21105:401::o;21916:128::-;21983:9;;;22004:11;;;22001:37;;;22018:18;;:::i;22049:125::-;22114:9;;;22135:10;;;22132:36;;;22148:18;;:::i;22533:414::-;22735:2;22717:21;;;22774:2;22754:18;;;22747:30;22813:34;22808:2;22793:18;;22786:62;-1:-1:-1;;;22879:2:1;22864:18;;22857:48;22937:3;22922:19;;22533:414::o;22952:135::-;22991:3;23012:17;;;23009:43;;23032:18;;:::i;:::-;-1:-1:-1;23079:1:1;23068:13;;22952:135::o;23092:489::-;-1:-1:-1;;;;;23361:15:1;;;23343:34;;23413:15;;23408:2;23393:18;;23386:43;23460:2;23445:18;;23438:34;;;23508:3;23503:2;23488:18;;23481:31;;;23286:4;;23529:46;;23555:19;;23547:6;23529:46;:::i;:::-;23521:54;23092:489;-1:-1:-1;;;;;;23092:489:1:o;23586:249::-;23655:6;23708:2;23696:9;23687:7;23683:23;23679:32;23676:52;;;23724:1;23721;23714:12;23676:52;23756:9;23750:16;23775:30;23799:5;23775:30;:::i

Swarm Source

ipfs://91afcb361a76ac3bacb96ec543e44e67152ac43c3c2c2eb82c1e398690c265b5
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.