ETH Price: $3,122.11 (+4.55%)
Gas: 7 Gwei

Token

Atlanta3D (ATLANTA3D)
 

Overview

Max Total Supply

540 ATLANTA3D

Holders

288

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lordbog.eth
Balance
1 ATLANTA3D
0x6232d7a6085d0ab8f885292078eeb723064a376b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A gift to holders of Kinesis Art's inaugural drop "Atlanta", Atlanta3D is a 3D rendering of your Atlanta piece Atlanta contains moments of profound synchronicity that emerge out of a seemingly jumbled chaos. As shapes align, the viewer is invited to reflect upon moments of al...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Atlanta3D

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2020-11-27
*/

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File contracts/libs/IERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 */
interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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

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

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


pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

abstract contract KinesisERC721Enumerable is ERC721Enumerable {
    function showTokenHashes(uint _tokenId) external view virtual returns (bytes32[] memory);
}

// SPDX-License-Identifier: MIT
// File: contracts/Kinesis.sol
pragma solidity ^0.8.0;

contract Atlanta3D is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;
    using ECDSA for bytes32;

    event Mint(
        address indexed _to,
        uint256 indexed _tokenId
    );
    uint256 constant ONE_MILLION = 1_000_000;
    uint256 public tokenIdStart = 0;
    uint256 public tokenIdEnd = 3599;
    uint256 public numTokens = 3600;
    uint256 public numClaimed = 0;

    bool public active = false;
    string public projectName = "Atlanta3D";
    string public artist = "Grant.oe";
    string public website = "";
    string public description = "";
    string public script = "";
    string public projectBaseURI = "";

    address public kinesisContractAddress = 0xeb113c5d09bfc3a7b27A75Da4432FB3484f90c6A;
    KinesisERC721Enumerable public kinesisContract;
    mapping(uint256 => bool) public tokenIdClaimed;

    mapping(uint256 => bytes32[]) internal tokenIdToHashes;

    address public admin;
    mapping(address => bool) public isAuthorized;

    modifier onlyValidTokenId(uint256 _tokenId) {
        require(_exists(_tokenId), "Token ID does not exist");
        _;
    }

    modifier onlyAdmin() {
        require(msg.sender == admin, "Only admin");
        _;
    }

    modifier onlyAuthorized() {
        require(isAuthorized[msg.sender], "Only authorized");
        _;
    }

    constructor() ERC721("Atlanta3D", "ATLANTA3D") {
        transferOwnership(msg.sender);
        admin = msg.sender;
        isAuthorized[msg.sender] = true;
        kinesisContract = KinesisERC721Enumerable(kinesisContractAddress);
    }

    /// @notice Claim Atlanta3D for given Atlanta token
    /// @param tokenId The tokenId of the Atlanta NFT
    function claimById(uint256 tokenId) external {
        // Follow the Checks-Effects-Interactions pattern to prevent reentrancy
        // attacks

        // Checks

        // Check that the msgSender owns the token that is being claimed
        require(
            _msgSender() == kinesisContract.ownerOf(tokenId),
            "MUST_OWN_TOKEN_ID"
        );

        // Further Checks, Effects, and Interactions are contained within the
        // _claim() function
        _claim(tokenId, _msgSender());
    }
    
    /// @notice Claim Atlanta3D for all Atlanta tokens owned by the sender
    /// @notice This function will run out of gas if you have too many Atlantas! If
    /// this is a concern, you should use claimRangeForOwner and claim Atlanta3D in batches.
    function claimAllForOwner() external {
        uint256 tokenBalanceOwner = kinesisContract.balanceOf(_msgSender());

        // Checks
        require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED");
        uint256 tokenId;
        // i < tokenBalanceOwner because tokenBalanceOwner is 1-indexed
        for (uint256 i = 0; i < tokenBalanceOwner; i++) {
            // Further Checks, Effects, and Interactions are contained within
            // the _claim() function
            tokenId = kinesisContract.tokenOfOwnerByIndex(_msgSender(), i);
            if (tokenId < ONE_MILLION) {
                _claim(
                    tokenId,
                    _msgSender()
                );
            }
        }
    }

    /// @notice Claim Atlanta3D for all tokens owned by the sender within a
    /// given range
    /// @notice This function is useful if you own too much bloot to claim all at
    /// once or if you want to leave some bloot unclaimed. If you leave bloot
    /// unclaimed, however, you cannot claim it once the next season starts.
    function claimRangeForOwner(uint256 ownerIndexStart, uint256 ownerIndexEnd)
        external
    {
        uint256 tokenBalanceOwner = kinesisContract.balanceOf(_msgSender());

        // Checks
        require(tokenBalanceOwner > 0, "NO_TOKENS_OWNED");

        // We use < for ownerIndexEnd and tokenBalanceOwner because
        // tokenOfOwnerByIndex is 0-indexed while the token balance is 1-indexed
        require(
            ownerIndexStart >= 0 && ownerIndexEnd < tokenBalanceOwner,
            "INDEX_OUT_OF_RANGE"
        );
        
        uint256 tokenId;
        // i <= ownerIndexEnd because ownerIndexEnd is 0-indexed
        for (uint256 i = ownerIndexStart; i <= ownerIndexEnd; i++) {
            // Further Checks, Effects, and Interactions are contained within
            // the _claim() function
            tokenId = kinesisContract.tokenOfOwnerByIndex(_msgSender(), i);
            if (tokenId < ONE_MILLION) {
                _claim(
                    tokenId,
                    _msgSender()
                );
            }
        }
    }

    /// @dev Internal function to mint Atlanta3D upon claiming
    function _claim(uint256 tokenId, address tokenOwner) internal {
        // Checks
        // Check that the token ID is in range
        // We use >= and <= to here because all of the token IDs are 0-indexed
        require(
            tokenId >= tokenIdStart && tokenId <= tokenIdEnd,
            "TOKEN_ID_OUT_OF_RANGE"
        );
        
        require(
            active, "Project not active!"
        );

        // Check that Atlanta3D has not already been claimed for a given tokenId
        require(
            !tokenIdClaimed[tokenId],
            "TOKEN_ALREADY_CLAIMED"
        );

        // Effects

        // Mark that Atlanta3D has been claimed for this season for the
        // given tokenId
        tokenIdClaimed[tokenId] = true;
        numClaimed = numClaimed + 1;
        tokenIdToHashes[tokenId] = kinesisContract.showTokenHashes(tokenId);
        // Interactions

        // Send Atlanta3D to the owner of the token ID
        _safeMint(tokenOwner, tokenId);

        emit Mint(tokenOwner, tokenId);
    }

    function addAuthorized(address _address) public onlyAdmin {
        isAuthorized[_address] = true;
    }

    function removeAuthorized(address _address) public onlyAdmin {
        isAuthorized[_address] = false;
    }

    function toggleProjectIsActive() public onlyAuthorized {
        active = !active;
    }

    function updateProjectName(string memory _projectName) onlyAuthorized external {
        projectName = _projectName;
    }

    function updateProjectArtistName(string memory _projectArtistName) onlyAuthorized external {
        artist = _projectArtistName;
    }

    function updateProjectDescription(string memory _projectDescription) onlyAuthorized external {
        description = _projectDescription;
    }

    function updateProjectWebsite(string memory _projectWebsite) onlyAuthorized external {
        website = _projectWebsite;
    }

    function setProjectScript(string memory _script) onlyAuthorized() external {
        script = _script;
    }

    function updateProjectBaseURI(string memory _newBaseURI) onlyAuthorized external {
        projectBaseURI = _newBaseURI;
    }

    function showTokenHashes(uint _tokenId) public view returns (bytes32[] memory){
        return tokenIdToHashes[_tokenId];
    }

    function tokenURI(uint256 _tokenId) public view virtual override onlyValidTokenId(_tokenId) returns (string memory) {
        return string(abi.encodePacked(projectBaseURI, Strings.toString(_tokenId)));
    }

    function transferOwnership(address newOwner) public override onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        admin = newOwner;
        isAuthorized[newOwner] = true;
        super.transferOwnership(newOwner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Mint","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":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artist","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAllForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimById","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ownerIndexStart","type":"uint256"},{"internalType":"uint256","name":"ownerIndexEnd","type":"uint256"}],"name":"claimRangeForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kinesisContract","outputs":[{"internalType":"contract KinesisERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kinesisContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"script","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_script","type":"string"}],"name":"setProjectScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"showTokenHashes","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"view","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":"toggleProjectIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_projectArtistName","type":"string"}],"name":"updateProjectArtistName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateProjectBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_projectDescription","type":"string"}],"name":"updateProjectDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_projectName","type":"string"}],"name":"updateProjectName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_projectWebsite","type":"string"}],"name":"updateProjectWebsite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6000600b819055610e0f600c55610e10600d55600e55600f805460ff1916905560c06040526009608081905268105d1b185b9d184cd160ba1b60a09081526200004c91601091906200043d565b50604080518082019091526008808252674772616e742e6f6560c01b60209092019182526200007e916011916200043d565b506040805160208101918290526000908190526200009f916012916200043d565b50604080516020810191829052600090819052620000c0916013916200043d565b50604080516020810191829052600090819052620000e1916014916200043d565b5060408051602081019182905260009081905262000102916015916200043d565b50601680546001600160a01b03191673eb113c5d09bfc3a7b27a75da4432fb3484f90c6a1790553480156200013657600080fd5b5060405180604001604052806009815260200168105d1b185b9d184cd160ba1b81525060405180604001604052806009815260200168105513105395104cd160ba1b8152508160009080519060200190620001939291906200043d565b508051620001a99060019060208401906200043d565b5050506000620001be6200025560201b60201c565b600a80546001600160a01b0319166001600160a01b0383169081179091556040519192509060009060008051602062003042833981519152908290a350620002063362000259565b601a8054336001600160a01b031991821681179092556000918252601b6020526040909120805460ff19166001179055601654601780546001600160a01b039092169190921617905562000520565b3390565b600a546001600160a01b03163314620002a85760405162461bcd60e51b815260206004820181905260248201526000805160206200302283398151915260448201526064015b60405180910390fd5b6001600160a01b038116620002fe5760405162461bcd60e51b815260206004820152602660248201526000805160206200306283398151915260448201526564647265737360d01b60648201526084016200029f565b601a80546001600160a01b0319166001600160a01b0383169081179091556000908152601b60209081526040909120805460ff191660011790556200034e90829062000351811b620015d517901c565b50565b600a546001600160a01b031633146200039c5760405162461bcd60e51b815260206004820181905260248201526000805160206200302283398151915260448201526064016200029f565b6001600160a01b038116620003f25760405162461bcd60e51b815260206004820152602660248201526000805160206200306283398151915260448201526564647265737360d01b60648201526084016200029f565b600a546040516001600160a01b038084169216906000805160206200304283398151915290600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b8280546200044b90620004e3565b90600052602060002090601f0160209004810192826200046f5760008555620004ba565b82601f106200048a57805160ff1916838001178555620004ba565b82800160010185558215620004ba579182015b82811115620004ba5782518255916020019190600101906200049d565b50620004c8929150620004cc565b5090565b5b80821115620004c85760008155600101620004cd565b600181811c90821680620004f857607f821691505b602082108114156200051a57634e487b7160e01b600052602260045260246000fd5b50919050565b612af280620005306000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c8063878e7ea511610167578063bfc812a5116100ce578063d8fb80e511610087578063d8fb80e51461056d578063e985e9c514610590578063ebe9eb9f146105cc578063f2fde38b146105d4578063f851a440146105e7578063fe9fbb80146105fa57600080fd5b8063bfc812a514610511578063c6da612814610524578063c797bac914610537578063c87b56dd1461053f578063cbf0b27614610552578063cf1c316a1461055a57600080fd5b8063a22cb46511610120578063a22cb465146104aa578063b25e48ee146104bd578063b88d4fde146104d0578063bcc5a2c3146104e3578063beb0a416146104f6578063becf7741146104fe57600080fd5b8063878e7ea5146104645780638da5cb5b146104775780638e499bcf1461048857806395d89b41146104915780639a33e300146104995780639c2f2a42146104a157600080fd5b806342842e0e1161020b57806359ed3617116101c457806359ed3617146104085780636352211e1461041b578063701fd0ca1461042e57806370a0823114610441578063715018a6146104545780637284e4161461045c57600080fd5b806342842e0e146103ab57806343bc1612146103be57806343f42802146103c6578063485d7d94146103cf5780634c3bda65146103e25780634f6ccce7146103f557600080fd5b806318160ddd1161025d57806318160ddd1461033757806323a22bcb1461034957806323b872dd1461035c578063271aaab41461036f5780632a3890621461038f5780632f745c591461039857600080fd5b806301ffc9a7146102a557806302fb0c5e146102cd57806306fdde03146102da578063081812fc146102ef578063095ea7b31461031a5780630fa670ff1461032f575b600080fd5b6102b86102b336600461257e565b61061d565b60405190151581526020015b60405180910390f35b600f546102b89060ff1681565b6102e2610648565b6040516102c491906127c5565b6103026102fd366004612601565b6106da565b6040516001600160a01b0390911681526020016102c4565b61032d6103283660046124a5565b610774565b005b61032d61088a565b6008545b6040519081526020016102c4565b61032d6103573660046125b8565b6108cd565b61032d61036a3660046123b1565b610913565b61038261037d366004612601565b610944565b6040516102c49190612781565b61033b600b5481565b61033b6103a63660046124a5565b6109a6565b61032d6103b93660046123b1565b610a3c565b6102e2610a57565b61033b600c5481565b61032d6103dd366004612337565b610ae5565b601654610302906001600160a01b031681565b61033b610403366004612601565b610b4d565b61032d6104163660046125b8565b610be0565b610302610429366004612601565b610c22565b61032d61043c3660046125b8565b610c99565b61033b61044f366004612337565b610cdb565b61032d610d62565b6102e2610dd6565b61032d610472366004612633565b610de3565b600a546001600160a01b0316610302565b61033b600d5481565b6102e2610fc2565b6102e2610fd1565b61033b600e5481565b61032d6104b8366004612472565b610fde565b601754610302906001600160a01b031681565b61032d6104de3660046123f2565b6110a3565b61032d6104f13660046125b8565b6110db565b6102e261111d565b61032d61050c366004612601565b61112a565b61032d61051f3660046125b8565b611207565b61032d6105323660046125b8565b611249565b6102e261128b565b6102e261054d366004612601565b611298565b61032d61133c565b61032d610568366004612337565b6114d1565b6102b861057b366004612601565b60186020526000908152604090205460ff1681565b6102b861059e366004612378565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102e261153c565b61032d6105e2366004612337565b611549565b601a54610302906001600160a01b031681565b6102b8610608366004612337565b601b6020526000908152604090205460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610642575061064282611681565b92915050565b606060008054610657906129bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610683906129bf565b80156106d05780601f106106a5576101008083540402835291602001916106d0565b820191906000526020600020905b8154815290600101906020018083116106b357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077f82610c22565b9050806001600160a01b0316836001600160a01b031614156107ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074f565b336001600160a01b03821614806108095750610809813361059e565b61087b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074f565b61088583836116d1565b505050565b336000908152601b602052604090205460ff166108b95760405162461bcd60e51b815260040161074f906127d8565b600f805460ff19811660ff90911615179055565b336000908152601b602052604090205460ff166108fc5760405162461bcd60e51b815260040161074f906127d8565b805161090f90601390602084019061220c565b5050565b61091d338261173f565b6109395760405162461bcd60e51b815260040161074f906128ce565b610885838383611836565b60008181526019602090815260409182902080548351818402810184019094528084526060939283018282801561099a57602002820191906000526020600020905b815481526020019060010190808311610986575b50505050509050919050565b60006109b183610cdb565b8210610a135760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610885838383604051806020016040528060008152506110a3565b60118054610a64906129bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a90906129bf565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b505050505081565b601a546001600160a01b03163314610b2c5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b604482015260640161074f565b6001600160a01b03166000908152601b60205260409020805460ff19169055565b6000610b5860085490565b8210610bbb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074f565b60088281548110610bce57610bce612a65565b90600052602060002001549050919050565b336000908152601b602052604090205460ff16610c0f5760405162461bcd60e51b815260040161074f906127d8565b805161090f90601490602084019061220c565b6000818152600260205260408120546001600160a01b0316806106425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074f565b336000908152601b602052604090205460ff16610cc85760405162461bcd60e51b815260040161074f906127d8565b805161090f90601590602084019061220c565b60006001600160a01b038216610d465760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d8c5760405162461bcd60e51b815260040161074f90612899565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60138054610a64906129bf565b6017546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b158015610e3757600080fd5b505afa158015610e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6f919061261a565b905060008111610eb35760405162461bcd60e51b815260206004820152600f60248201526e1393d7d513d2d15394d7d3d5d39151608a1b604482015260640161074f565b808210610ef75760405162461bcd60e51b8152602060048201526012602482015271494e4445585f4f55545f4f465f52414e474560701b604482015260640161074f565b6000835b838111610fbb576017546001600160a01b0316632f745c59336040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024810184905260440160206040518083038186803b158015610f5a57600080fd5b505afa158015610f6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f92919061261a565b9150620f4240821015610fa957610fa982336119e1565b80610fb3816129f4565b915050610efb565b5050505050565b606060018054610657906129bf565b60108054610a64906129bf565b6001600160a01b0382163314156110375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ad338361173f565b6110c95760405162461bcd60e51b815260040161074f906128ce565b6110d584848484611beb565b50505050565b336000908152601b602052604090205460ff1661110a5760405162461bcd60e51b815260040161074f906127d8565b805161090f90601290602084019061220c565b60128054610a64906129bf565b6017546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e9060240160206040518083038186803b15801561116e57600080fd5b505afa158015611182573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a6919061235b565b6001600160a01b0316336001600160a01b0316146111fa5760405162461bcd60e51b8152602060048201526011602482015270135554d517d3d5d397d513d2d15397d251607a1b604482015260640161074f565b61120481336119e1565b50565b336000908152601b602052604090205460ff166112365760405162461bcd60e51b815260040161074f906127d8565b805161090f90601190602084019061220c565b336000908152601b602052604090205460ff166112785760405162461bcd60e51b815260040161074f906127d8565b805161090f90601090602084019061220c565b60158054610a64906129bf565b6060816112bc816000908152600260205260409020546001600160a01b0316151590565b6113085760405162461bcd60e51b815260206004820152601760248201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604482015260640161074f565b601561131384611c1e565b60405160200161132492919061269d565b60405160208183030381529060405291505b50919050565b6017546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561139057600080fd5b505afa1580156113a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c8919061261a565b90506000811161140c5760405162461bcd60e51b815260206004820152600f60248201526e1393d7d513d2d15394d7d3d5d39151608a1b604482015260640161074f565b6000805b82811015610885576017546001600160a01b0316632f745c59336040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024810184905260440160206040518083038186803b15801561147057600080fd5b505afa158015611484573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a8919061261a565b9150620f42408210156114bf576114bf82336119e1565b806114c9816129f4565b915050611410565b601a546001600160a01b031633146115185760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b604482015260640161074f565b6001600160a01b03166000908152601b60205260409020805460ff19166001179055565b60148054610a64906129bf565b600a546001600160a01b031633146115735760405162461bcd60e51b815260040161074f90612899565b6001600160a01b0381166115995760405162461bcd60e51b815260040161074f90612853565b601a80546001600160a01b0319166001600160a01b0383169081179091556000908152601b60205260409020805460ff19166001179055611204815b600a546001600160a01b031633146115ff5760405162461bcd60e51b815260040161074f90612899565b6001600160a01b0381166116255760405162461bcd60e51b815260040161074f90612853565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806116b257506001600160e01b03198216635b5e139f60e01b145b8061064257506301ffc9a760e01b6001600160e01b0319831614610642565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061170682610c22565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074f565b60006117c383610c22565b9050806001600160a01b0316846001600160a01b031614806117fe5750836001600160a01b03166117f3846106da565b6001600160a01b0316145b8061182e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661184982610c22565b6001600160a01b0316146118b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161074f565b6001600160a01b0382166119135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074f565b61191e838383611d1c565b6119296000826116d1565b6001600160a01b038316600090815260036020526040812080546001929061195290849061297c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611980908490612950565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5482101580156119f55750600c548211155b611a395760405162461bcd60e51b8152602060048201526015602482015274544f4b454e5f49445f4f55545f4f465f52414e474560581b604482015260640161074f565b600f5460ff16611a815760405162461bcd60e51b815260206004820152601360248201527250726f6a656374206e6f74206163746976652160681b604482015260640161074f565b60008281526018602052604090205460ff1615611ad85760405162461bcd60e51b81526020600482015260156024820152741513d2d15397d053149150511657d0d31052535151605a1b604482015260640161074f565b6000828152601860205260409020805460ff19166001908117909155600e54611b0091612950565b600e556017546040516309c6aaad60e21b8152600481018490526001600160a01b039091169063271aaab49060240160006040518083038186803b158015611b4757600080fd5b505afa158015611b5b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b8391908101906124d1565b60008381526019602090815260409091208251611ba69391929190910190612290565b50611bb18183611dd4565b60405182906001600160a01b038316907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a35050565b611bf6848484611836565b611c0284848484611dee565b6110d55760405162461bcd60e51b815260040161074f90612801565b606081611c425750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c6c5780611c56816129f4565b9150611c659050600a83612968565b9150611c46565b60008167ffffffffffffffff811115611c8757611c87612a7b565b6040519080825280601f01601f191660200182016040528015611cb1576020820181803683370190505b5090505b841561182e57611cc660018361297c565b9150611cd3600a86612a0f565b611cde906030612950565b60f81b818381518110611cf357611cf3612a65565b60200101906001600160f81b031916908160001a905350611d15600a86612968565b9450611cb5565b6001600160a01b038316611d7757611d7281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d9a565b816001600160a01b0316836001600160a01b031614611d9a57611d9a8382611efb565b6001600160a01b038216611db15761088581611f98565b826001600160a01b0316826001600160a01b031614610885576108858282612047565b61090f82826040518060200160405280600081525061208b565b60006001600160a01b0384163b15611ef057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e32903390899088908890600401612744565b602060405180830381600087803b158015611e4c57600080fd5b505af1925050508015611e7c575060408051601f3d908101601f19168201909252611e799181019061259b565b60015b611ed6573d808015611eaa576040519150601f19603f3d011682016040523d82523d6000602084013e611eaf565b606091505b508051611ece5760405162461bcd60e51b815260040161074f90612801565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061182e565b506001949350505050565b60006001611f0884610cdb565b611f12919061297c565b600083815260076020526040902054909150808214611f65576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611faa9060019061297c565b60008381526009602052604081205460088054939450909284908110611fd257611fd2612a65565b906000526020600020015490508060088381548110611ff357611ff3612a65565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061202b5761202b612a4f565b6001900381819060005260206000200160009055905550505050565b600061205283610cdb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61209583836120be565b6120a26000848484611dee565b6108855760405162461bcd60e51b815260040161074f90612801565b6001600160a01b0382166121145760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074f565b6000818152600260205260409020546001600160a01b0316156121795760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074f565b61218560008383611d1c565b6001600160a01b03821660009081526003602052604081208054600192906121ae908490612950565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612218906129bf565b90600052602060002090601f01602090048101928261223a5760008555612280565b82601f1061225357805160ff1916838001178555612280565b82800160010185558215612280579182015b82811115612280578251825591602001919060010190612265565b5061228c9291506122ca565b5090565b8280548282559060005260206000209081019282156122805791602002820182811115612280578251825591602001919060010190612265565b5b8082111561228c57600081556001016122cb565b600067ffffffffffffffff8311156122f9576122f9612a7b565b61230c601f8401601f191660200161291f565b905082815283838301111561232057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561234957600080fd5b813561235481612a91565b9392505050565b60006020828403121561236d57600080fd5b815161235481612a91565b6000806040838503121561238b57600080fd5b823561239681612a91565b915060208301356123a681612a91565b809150509250929050565b6000806000606084860312156123c657600080fd5b83356123d181612a91565b925060208401356123e181612a91565b929592945050506040919091013590565b6000806000806080858703121561240857600080fd5b843561241381612a91565b9350602085013561242381612a91565b925060408501359150606085013567ffffffffffffffff81111561244657600080fd5b8501601f8101871361245757600080fd5b612466878235602084016122df565b91505092959194509250565b6000806040838503121561248557600080fd5b823561249081612a91565b9150602083013580151581146123a657600080fd5b600080604083850312156124b857600080fd5b82356124c381612a91565b946020939093013593505050565b600060208083850312156124e457600080fd5b825167ffffffffffffffff808211156124fc57600080fd5b818501915085601f83011261251057600080fd5b81518181111561252257612522612a7b565b8060051b915061253384830161291f565b8181528481019084860184860187018a101561254e57600080fd5b600095505b83861015612571578051835260019590950194918601918601612553565b5098975050505050505050565b60006020828403121561259057600080fd5b813561235481612aa6565b6000602082840312156125ad57600080fd5b815161235481612aa6565b6000602082840312156125ca57600080fd5b813567ffffffffffffffff8111156125e157600080fd5b8201601f810184136125f257600080fd5b61182e848235602084016122df565b60006020828403121561261357600080fd5b5035919050565b60006020828403121561262c57600080fd5b5051919050565b6000806040838503121561264657600080fd5b50508035926020909101359150565b6000815180845261266d816020860160208601612993565b601f01601f19169290920160200192915050565b60008151612693818560208601612993565b9290920192915050565b600080845481600182811c9150808316806126b957607f831692505b60208084108214156126d957634e487b7160e01b86526022600452602486fd5b8180156126ed57600181146126fe5761272b565b60ff1986168952848901965061272b565b60008b81526020902060005b868110156127235781548b82015290850190830161270a565b505084890196505b50505050505061273b8185612681565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277790830184612655565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127b95783518352928401929184019160010161279d565b50909695505050505050565b6020815260006123546020830184612655565b6020808252600f908201526e13db9b1e48185d5d1a1bdc9a5e9959608a1b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561294857612948612a7b565b604052919050565b6000821982111561296357612963612a23565b500190565b60008261297757612977612a39565b500490565b60008282101561298e5761298e612a23565b500390565b60005b838110156129ae578181015183820152602001612996565b838111156110d55750506000910152565b600181811c908216806129d357607f821691505b6020821081141561133657634e487b7160e01b600052602260045260246000fd5b6000600019821415612a0857612a08612a23565b5060010190565b600082612a1e57612a1e612a39565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461120457600080fd5b6001600160e01b03198116811461120457600080fdfea264697066735822122082ba48e8672f0d76a8b06c12c07a33832602a4dfe2d74346865d8a273c4e872d64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e04f776e61626c653a206e6577206f776e657220697320746865207a65726f2061

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c8063878e7ea511610167578063bfc812a5116100ce578063d8fb80e511610087578063d8fb80e51461056d578063e985e9c514610590578063ebe9eb9f146105cc578063f2fde38b146105d4578063f851a440146105e7578063fe9fbb80146105fa57600080fd5b8063bfc812a514610511578063c6da612814610524578063c797bac914610537578063c87b56dd1461053f578063cbf0b27614610552578063cf1c316a1461055a57600080fd5b8063a22cb46511610120578063a22cb465146104aa578063b25e48ee146104bd578063b88d4fde146104d0578063bcc5a2c3146104e3578063beb0a416146104f6578063becf7741146104fe57600080fd5b8063878e7ea5146104645780638da5cb5b146104775780638e499bcf1461048857806395d89b41146104915780639a33e300146104995780639c2f2a42146104a157600080fd5b806342842e0e1161020b57806359ed3617116101c457806359ed3617146104085780636352211e1461041b578063701fd0ca1461042e57806370a0823114610441578063715018a6146104545780637284e4161461045c57600080fd5b806342842e0e146103ab57806343bc1612146103be57806343f42802146103c6578063485d7d94146103cf5780634c3bda65146103e25780634f6ccce7146103f557600080fd5b806318160ddd1161025d57806318160ddd1461033757806323a22bcb1461034957806323b872dd1461035c578063271aaab41461036f5780632a3890621461038f5780632f745c591461039857600080fd5b806301ffc9a7146102a557806302fb0c5e146102cd57806306fdde03146102da578063081812fc146102ef578063095ea7b31461031a5780630fa670ff1461032f575b600080fd5b6102b86102b336600461257e565b61061d565b60405190151581526020015b60405180910390f35b600f546102b89060ff1681565b6102e2610648565b6040516102c491906127c5565b6103026102fd366004612601565b6106da565b6040516001600160a01b0390911681526020016102c4565b61032d6103283660046124a5565b610774565b005b61032d61088a565b6008545b6040519081526020016102c4565b61032d6103573660046125b8565b6108cd565b61032d61036a3660046123b1565b610913565b61038261037d366004612601565b610944565b6040516102c49190612781565b61033b600b5481565b61033b6103a63660046124a5565b6109a6565b61032d6103b93660046123b1565b610a3c565b6102e2610a57565b61033b600c5481565b61032d6103dd366004612337565b610ae5565b601654610302906001600160a01b031681565b61033b610403366004612601565b610b4d565b61032d6104163660046125b8565b610be0565b610302610429366004612601565b610c22565b61032d61043c3660046125b8565b610c99565b61033b61044f366004612337565b610cdb565b61032d610d62565b6102e2610dd6565b61032d610472366004612633565b610de3565b600a546001600160a01b0316610302565b61033b600d5481565b6102e2610fc2565b6102e2610fd1565b61033b600e5481565b61032d6104b8366004612472565b610fde565b601754610302906001600160a01b031681565b61032d6104de3660046123f2565b6110a3565b61032d6104f13660046125b8565b6110db565b6102e261111d565b61032d61050c366004612601565b61112a565b61032d61051f3660046125b8565b611207565b61032d6105323660046125b8565b611249565b6102e261128b565b6102e261054d366004612601565b611298565b61032d61133c565b61032d610568366004612337565b6114d1565b6102b861057b366004612601565b60186020526000908152604090205460ff1681565b6102b861059e366004612378565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102e261153c565b61032d6105e2366004612337565b611549565b601a54610302906001600160a01b031681565b6102b8610608366004612337565b601b6020526000908152604090205460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610642575061064282611681565b92915050565b606060008054610657906129bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610683906129bf565b80156106d05780601f106106a5576101008083540402835291602001916106d0565b820191906000526020600020905b8154815290600101906020018083116106b357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077f82610c22565b9050806001600160a01b0316836001600160a01b031614156107ed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074f565b336001600160a01b03821614806108095750610809813361059e565b61087b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074f565b61088583836116d1565b505050565b336000908152601b602052604090205460ff166108b95760405162461bcd60e51b815260040161074f906127d8565b600f805460ff19811660ff90911615179055565b336000908152601b602052604090205460ff166108fc5760405162461bcd60e51b815260040161074f906127d8565b805161090f90601390602084019061220c565b5050565b61091d338261173f565b6109395760405162461bcd60e51b815260040161074f906128ce565b610885838383611836565b60008181526019602090815260409182902080548351818402810184019094528084526060939283018282801561099a57602002820191906000526020600020905b815481526020019060010190808311610986575b50505050509050919050565b60006109b183610cdb565b8210610a135760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610885838383604051806020016040528060008152506110a3565b60118054610a64906129bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610a90906129bf565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b505050505081565b601a546001600160a01b03163314610b2c5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b604482015260640161074f565b6001600160a01b03166000908152601b60205260409020805460ff19169055565b6000610b5860085490565b8210610bbb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074f565b60088281548110610bce57610bce612a65565b90600052602060002001549050919050565b336000908152601b602052604090205460ff16610c0f5760405162461bcd60e51b815260040161074f906127d8565b805161090f90601490602084019061220c565b6000818152600260205260408120546001600160a01b0316806106425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074f565b336000908152601b602052604090205460ff16610cc85760405162461bcd60e51b815260040161074f906127d8565b805161090f90601590602084019061220c565b60006001600160a01b038216610d465760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d8c5760405162461bcd60e51b815260040161074f90612899565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60138054610a64906129bf565b6017546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b158015610e3757600080fd5b505afa158015610e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6f919061261a565b905060008111610eb35760405162461bcd60e51b815260206004820152600f60248201526e1393d7d513d2d15394d7d3d5d39151608a1b604482015260640161074f565b808210610ef75760405162461bcd60e51b8152602060048201526012602482015271494e4445585f4f55545f4f465f52414e474560701b604482015260640161074f565b6000835b838111610fbb576017546001600160a01b0316632f745c59336040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024810184905260440160206040518083038186803b158015610f5a57600080fd5b505afa158015610f6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f92919061261a565b9150620f4240821015610fa957610fa982336119e1565b80610fb3816129f4565b915050610efb565b5050505050565b606060018054610657906129bf565b60108054610a64906129bf565b6001600160a01b0382163314156110375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110ad338361173f565b6110c95760405162461bcd60e51b815260040161074f906128ce565b6110d584848484611beb565b50505050565b336000908152601b602052604090205460ff1661110a5760405162461bcd60e51b815260040161074f906127d8565b805161090f90601290602084019061220c565b60128054610a64906129bf565b6017546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e9060240160206040518083038186803b15801561116e57600080fd5b505afa158015611182573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a6919061235b565b6001600160a01b0316336001600160a01b0316146111fa5760405162461bcd60e51b8152602060048201526011602482015270135554d517d3d5d397d513d2d15397d251607a1b604482015260640161074f565b61120481336119e1565b50565b336000908152601b602052604090205460ff166112365760405162461bcd60e51b815260040161074f906127d8565b805161090f90601190602084019061220c565b336000908152601b602052604090205460ff166112785760405162461bcd60e51b815260040161074f906127d8565b805161090f90601090602084019061220c565b60158054610a64906129bf565b6060816112bc816000908152600260205260409020546001600160a01b0316151590565b6113085760405162461bcd60e51b815260206004820152601760248201527f546f6b656e20494420646f6573206e6f74206578697374000000000000000000604482015260640161074f565b601561131384611c1e565b60405160200161132492919061269d565b60405160208183030381529060405291505b50919050565b6017546000906001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561139057600080fd5b505afa1580156113a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c8919061261a565b90506000811161140c5760405162461bcd60e51b815260206004820152600f60248201526e1393d7d513d2d15394d7d3d5d39151608a1b604482015260640161074f565b6000805b82811015610885576017546001600160a01b0316632f745c59336040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024810184905260440160206040518083038186803b15801561147057600080fd5b505afa158015611484573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a8919061261a565b9150620f42408210156114bf576114bf82336119e1565b806114c9816129f4565b915050611410565b601a546001600160a01b031633146115185760405162461bcd60e51b815260206004820152600a60248201526927b7363c9030b236b4b760b11b604482015260640161074f565b6001600160a01b03166000908152601b60205260409020805460ff19166001179055565b60148054610a64906129bf565b600a546001600160a01b031633146115735760405162461bcd60e51b815260040161074f90612899565b6001600160a01b0381166115995760405162461bcd60e51b815260040161074f90612853565b601a80546001600160a01b0319166001600160a01b0383169081179091556000908152601b60205260409020805460ff19166001179055611204815b600a546001600160a01b031633146115ff5760405162461bcd60e51b815260040161074f90612899565b6001600160a01b0381166116255760405162461bcd60e51b815260040161074f90612853565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806116b257506001600160e01b03198216635b5e139f60e01b145b8061064257506301ffc9a760e01b6001600160e01b0319831614610642565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061170682610c22565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074f565b60006117c383610c22565b9050806001600160a01b0316846001600160a01b031614806117fe5750836001600160a01b03166117f3846106da565b6001600160a01b0316145b8061182e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661184982610c22565b6001600160a01b0316146118b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161074f565b6001600160a01b0382166119135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074f565b61191e838383611d1c565b6119296000826116d1565b6001600160a01b038316600090815260036020526040812080546001929061195290849061297c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611980908490612950565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5482101580156119f55750600c548211155b611a395760405162461bcd60e51b8152602060048201526015602482015274544f4b454e5f49445f4f55545f4f465f52414e474560581b604482015260640161074f565b600f5460ff16611a815760405162461bcd60e51b815260206004820152601360248201527250726f6a656374206e6f74206163746976652160681b604482015260640161074f565b60008281526018602052604090205460ff1615611ad85760405162461bcd60e51b81526020600482015260156024820152741513d2d15397d053149150511657d0d31052535151605a1b604482015260640161074f565b6000828152601860205260409020805460ff19166001908117909155600e54611b0091612950565b600e556017546040516309c6aaad60e21b8152600481018490526001600160a01b039091169063271aaab49060240160006040518083038186803b158015611b4757600080fd5b505afa158015611b5b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b8391908101906124d1565b60008381526019602090815260409091208251611ba69391929190910190612290565b50611bb18183611dd4565b60405182906001600160a01b038316907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a35050565b611bf6848484611836565b611c0284848484611dee565b6110d55760405162461bcd60e51b815260040161074f90612801565b606081611c425750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c6c5780611c56816129f4565b9150611c659050600a83612968565b9150611c46565b60008167ffffffffffffffff811115611c8757611c87612a7b565b6040519080825280601f01601f191660200182016040528015611cb1576020820181803683370190505b5090505b841561182e57611cc660018361297c565b9150611cd3600a86612a0f565b611cde906030612950565b60f81b818381518110611cf357611cf3612a65565b60200101906001600160f81b031916908160001a905350611d15600a86612968565b9450611cb5565b6001600160a01b038316611d7757611d7281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d9a565b816001600160a01b0316836001600160a01b031614611d9a57611d9a8382611efb565b6001600160a01b038216611db15761088581611f98565b826001600160a01b0316826001600160a01b031614610885576108858282612047565b61090f82826040518060200160405280600081525061208b565b60006001600160a01b0384163b15611ef057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e32903390899088908890600401612744565b602060405180830381600087803b158015611e4c57600080fd5b505af1925050508015611e7c575060408051601f3d908101601f19168201909252611e799181019061259b565b60015b611ed6573d808015611eaa576040519150601f19603f3d011682016040523d82523d6000602084013e611eaf565b606091505b508051611ece5760405162461bcd60e51b815260040161074f90612801565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061182e565b506001949350505050565b60006001611f0884610cdb565b611f12919061297c565b600083815260076020526040902054909150808214611f65576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611faa9060019061297c565b60008381526009602052604081205460088054939450909284908110611fd257611fd2612a65565b906000526020600020015490508060088381548110611ff357611ff3612a65565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061202b5761202b612a4f565b6001900381819060005260206000200160009055905550505050565b600061205283610cdb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61209583836120be565b6120a26000848484611dee565b6108855760405162461bcd60e51b815260040161074f90612801565b6001600160a01b0382166121145760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074f565b6000818152600260205260409020546001600160a01b0316156121795760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074f565b61218560008383611d1c565b6001600160a01b03821660009081526003602052604081208054600192906121ae908490612950565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612218906129bf565b90600052602060002090601f01602090048101928261223a5760008555612280565b82601f1061225357805160ff1916838001178555612280565b82800160010185558215612280579182015b82811115612280578251825591602001919060010190612265565b5061228c9291506122ca565b5090565b8280548282559060005260206000209081019282156122805791602002820182811115612280578251825591602001919060010190612265565b5b8082111561228c57600081556001016122cb565b600067ffffffffffffffff8311156122f9576122f9612a7b565b61230c601f8401601f191660200161291f565b905082815283838301111561232057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561234957600080fd5b813561235481612a91565b9392505050565b60006020828403121561236d57600080fd5b815161235481612a91565b6000806040838503121561238b57600080fd5b823561239681612a91565b915060208301356123a681612a91565b809150509250929050565b6000806000606084860312156123c657600080fd5b83356123d181612a91565b925060208401356123e181612a91565b929592945050506040919091013590565b6000806000806080858703121561240857600080fd5b843561241381612a91565b9350602085013561242381612a91565b925060408501359150606085013567ffffffffffffffff81111561244657600080fd5b8501601f8101871361245757600080fd5b612466878235602084016122df565b91505092959194509250565b6000806040838503121561248557600080fd5b823561249081612a91565b9150602083013580151581146123a657600080fd5b600080604083850312156124b857600080fd5b82356124c381612a91565b946020939093013593505050565b600060208083850312156124e457600080fd5b825167ffffffffffffffff808211156124fc57600080fd5b818501915085601f83011261251057600080fd5b81518181111561252257612522612a7b565b8060051b915061253384830161291f565b8181528481019084860184860187018a101561254e57600080fd5b600095505b83861015612571578051835260019590950194918601918601612553565b5098975050505050505050565b60006020828403121561259057600080fd5b813561235481612aa6565b6000602082840312156125ad57600080fd5b815161235481612aa6565b6000602082840312156125ca57600080fd5b813567ffffffffffffffff8111156125e157600080fd5b8201601f810184136125f257600080fd5b61182e848235602084016122df565b60006020828403121561261357600080fd5b5035919050565b60006020828403121561262c57600080fd5b5051919050565b6000806040838503121561264657600080fd5b50508035926020909101359150565b6000815180845261266d816020860160208601612993565b601f01601f19169290920160200192915050565b60008151612693818560208601612993565b9290920192915050565b600080845481600182811c9150808316806126b957607f831692505b60208084108214156126d957634e487b7160e01b86526022600452602486fd5b8180156126ed57600181146126fe5761272b565b60ff1986168952848901965061272b565b60008b81526020902060005b868110156127235781548b82015290850190830161270a565b505084890196505b50505050505061273b8185612681565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277790830184612655565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127b95783518352928401929184019160010161279d565b50909695505050505050565b6020815260006123546020830184612655565b6020808252600f908201526e13db9b1e48185d5d1a1bdc9a5e9959608a1b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561294857612948612a7b565b604052919050565b6000821982111561296357612963612a23565b500190565b60008261297757612977612a39565b500490565b60008282101561298e5761298e612a23565b500390565b60005b838110156129ae578181015183820152602001612996565b838111156110d55750506000910152565b600181811c908216806129d357607f821691505b6020821081141561133657634e487b7160e01b600052602260045260246000fd5b6000600019821415612a0857612a08612a23565b5060010190565b600082612a1e57612a1e612a39565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461120457600080fd5b6001600160e01b03198116811461120457600080fdfea264697066735822122082ba48e8672f0d76a8b06c12c07a33832602a4dfe2d74346865d8a273c4e872d64736f6c63430008070033

Deployed Bytecode Sourcemap

58977:7663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39330:224;;;;;;:::i;:::-;;:::i;:::-;;;9278:14:1;;9271:22;9253:41;;9241:2;9226:18;39330:224:0;;;;;;;;59418:26;;;;;;;;;26406:100;;;:::i;:::-;;;;;;;:::i;27965:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7660:32:1;;;7642:51;;7630:2;7615:18;27965:221:0;7496:203:1;27488:411:0;;;;;;:::i;:::-;;:::i;:::-;;65089:90;;;:::i;39970:113::-;40058:10;:17;39970:113;;;19826:25:1;;;19814:2;19799:18;39970:113:0;19680:177:1;65464:145:0;;;;;;:::i;:::-;;:::i;28855:339::-;;;;;;:::i;:::-;;:::i;66008:129::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59265:31::-;;;;;;39638:256;;;;;;:::i;:::-;;:::i;29265:185::-;;;;;;:::i;:::-;;:::i;59497:33::-;;;:::i;59303:32::-;;;;;;64971:110;;;;;;:::i;:::-;;:::i;59681:82::-;;;;;-1:-1:-1;;;;;59681:82:0;;;40160:233;;;;;;:::i;:::-;;:::i;65754:110::-;;;;;;:::i;:::-;;:::i;26100:239::-;;;;;;:::i;:::-;;:::i;65872:128::-;;;;;;:::i;:::-;;:::i;25830:208::-;;;;;;:::i;:::-;;:::i;47217:148::-;;;:::i;59570:30::-;;;:::i;62612:1098::-;;;;;;:::i;:::-;;:::i;46566:87::-;46639:6;;-1:-1:-1;;;;;46639:6:0;46566:87;;59342:31;;;;;;26575:104;;;:::i;59451:39::-;;;:::i;59380:29::-;;;;;;28258:295;;;;;;:::i;:::-;;:::i;59770:46::-;;;;;-1:-1:-1;;;;;59770:46:0;;;29521:328;;;;;;:::i;:::-;;:::i;65617:129::-;;;;;;:::i;:::-;;:::i;59537:26::-;;;:::i;60738:528::-;;;;;;:::i;:::-;;:::i;65319:137::-;;;;;;:::i;:::-;;:::i;65187:124::-;;;;;;:::i;:::-;;:::i;59639:33::-;;;:::i;66145:210::-;;;;;;:::i;:::-;;:::i;61533:733::-;;;:::i;64857:106::-;;;;;;:::i;:::-;;:::i;59823:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28624:164;;;;;;:::i;:::-;-1:-1:-1;;;;;28745:25:0;;;28721:4;28745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28624:164;59607:25;;;:::i;66363:274::-;;;;;;:::i;:::-;;:::i;59941:20::-;;;;;-1:-1:-1;;;;;59941:20:0;;;59968:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;39330:224;39432:4;-1:-1:-1;;;;;;39456:50:0;;-1:-1:-1;;;39456:50:0;;:90;;;39510:36;39534:11;39510:23;:36::i;:::-;39449:97;39330:224;-1:-1:-1;;39330:224:0:o;26406:100::-;26460:13;26493:5;26486:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26406:100;:::o;27965:221::-;28041:7;31448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31448:16:0;28061:73;;;;-1:-1:-1;;;28061:73:0;;16421:2:1;28061:73:0;;;16403:21:1;16460:2;16440:18;;;16433:30;16499:34;16479:18;;;16472:62;-1:-1:-1;;;16550:18:1;;;16543:42;16602:19;;28061:73:0;;;;;;;;;-1:-1:-1;28154:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28154:24:0;;27965:221::o;27488:411::-;27569:13;27585:23;27600:7;27585:14;:23::i;:::-;27569:39;;27633:5;-1:-1:-1;;;;;27627:11:0;:2;-1:-1:-1;;;;;27627:11:0;;;27619:57;;;;-1:-1:-1;;;27619:57:0;;17605:2:1;27619:57:0;;;17587:21:1;17644:2;17624:18;;;17617:30;17683:34;17663:18;;;17656:62;-1:-1:-1;;;17734:18:1;;;17727:31;17775:19;;27619:57:0;17403:397:1;27619:57:0;717:10;-1:-1:-1;;;;;27711:21:0;;;;:62;;-1:-1:-1;27736:37:0;27753:5;717:10;28624:164;:::i;27736:37::-;27689:168;;;;-1:-1:-1;;;27689:168:0;;14466:2:1;27689:168:0;;;14448:21:1;14505:2;14485:18;;;14478:30;14544:34;14524:18;;;14517:62;14615:26;14595:18;;;14588:54;14659:19;;27689:168:0;14264:420:1;27689:168:0;27870:21;27879:2;27883:7;27870:8;:21::i;:::-;27558:341;27488:411;;:::o;65089:90::-;60317:10;60304:24;;;;:12;:24;;;;;;;;60296:52;;;;-1:-1:-1;;;60296:52:0;;;;;;;:::i;:::-;65165:6:::1;::::0;;-1:-1:-1;;65155:16:0;::::1;65165:6;::::0;;::::1;65164:7;65155:16;::::0;;65089:90::o;65464:145::-;60317:10;60304:24;;;;:12;:24;;;;;;;;60296:52;;;;-1:-1:-1;;;60296:52:0;;;;;;;:::i;:::-;65568:33;;::::1;::::0;:11:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;65464:145:::0;:::o;28855:339::-;29050:41;717:10;29083:7;29050:18;:41::i;:::-;29042:103;;;;-1:-1:-1;;;29042:103:0;;;;;;;:::i;:::-;29158:28;29168:4;29174:2;29178:7;29158:9;:28::i;66008:129::-;66104:25;;;;:15;:25;;;;;;;;;66097:32;;;;;;;;;;;;;;;;;66069:16;;66097:32;;;66104:25;66097:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66008:129;;;:::o;39638:256::-;39735:7;39771:23;39788:5;39771:16;:23::i;:::-;39763:5;:31;39755:87;;;;-1:-1:-1;;;39755:87:0;;10662:2:1;39755:87:0;;;10644:21:1;10701:2;10681:18;;;10674:30;10740:34;10720:18;;;10713:62;-1:-1:-1;;;10791:18:1;;;10784:41;10842:19;;39755:87:0;10460:407:1;39755:87:0;-1:-1:-1;;;;;;39860:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39638:256::o;29265:185::-;29403:39;29420:4;29426:2;29430:7;29403:39;;;;;;;;;;;;:16;:39::i;59497:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64971:110::-;60211:5;;-1:-1:-1;;;;;60211:5:0;60197:10;:19;60189:42;;;;-1:-1:-1;;;60189:42:0;;13368:2:1;60189:42:0;;;13350:21:1;13407:2;13387:18;;;13380:30;-1:-1:-1;;;13426:18:1;;;13419:40;13476:18;;60189:42:0;13166:334:1;60189:42:0;-1:-1:-1;;;;;65043:22:0::1;65068:5;65043:22:::0;;;:12:::1;:22;::::0;;;;:30;;-1:-1:-1;;65043:30:0::1;::::0;;64971:110::o;40160:233::-;40235:7;40271:30;40058:10;:17;;39970:113;40271:30;40263:5;:38;40255:95;;;;-1:-1:-1;;;40255:95:0;;19125:2:1;40255:95:0;;;19107:21:1;19164:2;19144:18;;;19137:30;19203:34;19183:18;;;19176:62;-1:-1:-1;;;19254:18:1;;;19247:42;19306:19;;40255:95:0;18923:408:1;40255:95:0;40368:10;40379:5;40368:17;;;;;;;;:::i;:::-;;;;;;;;;40361:24;;40160:233;;;:::o;65754:110::-;60317:10;60304:24;;;;:12;:24;;;;;;;;60296:52;;;;-1:-1:-1;;;60296:52:0;;;;;;;:::i;:::-;65840:16;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;26100:239::-:0;26172:7;26208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26208:16:0;26243:19;26235:73;;;;-1:-1:-1;;;26235:73:0;;15302:2:1;26235:73:0;;;15284:21:1;15341:2;15321:18;;;15314:30;15380:34;15360:18;;;15353:62;-1:-1:-1;;;15431:18:1;;;15424:39;15480:19;;26235:73:0;15100:405:1;65872:128:0;60317:10;60304:24;;;;:12;:24;;;;;;;;60296:52;;;;-1:-1:-1;;;60296:52:0;;;;;;;:::i;:::-;65964:28;;::::1;::::0;:14:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;25830:208::-:0;25902:7;-1:-1:-1;;;;;25930:19:0;;25922:74;;;;-1:-1:-1;;;25922:74:0;;14891:2:1;25922:74:0;;;14873:21:1;14930:2;14910:18;;;14903:30;14969:34;14949:18;;;14942:62;-1:-1:-1;;;15020:18:1;;;15013:40;15070:19;;25922:74:0;14689:406:1;25922:74:0;-1:-1:-1;;;;;;26014:16:0;;;;;:9;:16;;;;;;;25830:208::o;47217:148::-;46639:6;;-1:-1:-1;;;;;46639:6:0;717:10;46786:23;46778:68;;;;-1:-1:-1;;;46778:68:0;;;;;;;:::i;:::-;47308:6:::1;::::0;47287:40:::1;::::0;47324:1:::1;::::0;-1:-1:-1;;;;;47308:6:0::1;::::0;47287:40:::1;::::0;47324:1;;47287:40:::1;47338:6;:19:::0;;-1:-1:-1;;;;;;47338:19:0::1;::::0;;47217:148::o;59570:30::-;;;;;;;:::i;62612:1098::-;62750:15;;62722:25;;-1:-1:-1;;;;;62750:15:0;:25;717:10;62750:39;;-1:-1:-1;;;;;;62750:39:0;;;;;;;-1:-1:-1;;;;;7660:32:1;;;62750:39:0;;;7642:51:1;7615:18;;62750:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62722:67;;62849:1;62829:17;:21;62821:49;;;;-1:-1:-1;;;62821:49:0;;19538:2:1;62821:49:0;;;19520:21:1;19577:2;19557:18;;;19550:30;-1:-1:-1;;;19596:18:1;;;19589:45;19651:18;;62821:49:0;19336:339:1;62821:49:0;63096:17;63080:13;:33;63034:125;;;;-1:-1:-1;;;63034:125:0;;10315:2:1;63034:125:0;;;10297:21:1;10354:2;10334:18;;;10327:30;-1:-1:-1;;;10373:18:1;;;10366:48;10431:18;;63034:125:0;10113:342:1;63034:125:0;63180:15;63289;63272:431;63311:13;63306:1;:18;63272:431;;63473:15;;-1:-1:-1;;;;;63473:15:0;:35;717:10;63473:52;;-1:-1:-1;;;;;;63473:52:0;;;;;;;-1:-1:-1;;;;;8389:32:1;;;63473:52:0;;;8371:51:1;8438:18;;;8431:34;;;8344:18;;63473:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63463:62;;59249:9;63544:7;:21;63540:152;;;63586:90;63615:7;717:10;63586:6;:90::i;:::-;63326:3;;;;:::i;:::-;;;;63272:431;;;;62711:999;;62612:1098;;:::o;26575:104::-;26631:13;26664:7;26657:14;;;;;:::i;59451:39::-;;;;;;;:::i;28258:295::-;-1:-1:-1;;;;;28361:24:0;;717:10;28361:24;;28353:62;;;;-1:-1:-1;;;28353:62:0;;12662:2:1;28353:62:0;;;12644:21:1;12701:2;12681:18;;;12674:30;12740:27;12720:18;;;12713:55;12785:18;;28353:62:0;12460:349:1;28353:62:0;717:10;28428:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28428:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28428:53:0;;;;;;;;;;28497:48;;9253:41:1;;;28428:42:0;;717:10;28497:48;;9226:18:1;28497:48:0;;;;;;;28258:295;;:::o;29521:328::-;29696:41;717:10;29729:7;29696:18;:41::i;:::-;29688:103;;;;-1:-1:-1;;;29688:103:0;;;;;;;:::i;:::-;29802:39;29816:4;29822:2;29826:7;29835:5;29802:13;:39::i;:::-;29521:328;;;;:::o;65617:129::-;60317:10;60304:24;;;;:12;:24;;;;;;;;60296:52;;;;-1:-1:-1;;;60296:52:0;;;;;;;:::i;:::-;65713:25;;::::1;::::0;:7:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;59537:26::-:0;;;;;;;:::i;60738:528::-;61030:15;;:32;;-1:-1:-1;;;61030:32:0;;;;;19826:25:1;;;-1:-1:-1;;;;;61030:15:0;;;;:23;;19799:18:1;;61030:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61014:48:0;717:10;-1:-1:-1;;;;;61014:48:0;;60992:115;;;;-1:-1:-1;;;60992:115:0;;14120:2:1;60992:115:0;;;14102:21:1;14159:2;14139:18;;;14132:30;-1:-1:-1;;;14178:18:1;;;14171:47;14235:18;;60992:115:0;13918:341:1;60992:115:0;61229:29;61236:7;717:10;63586:6;:90::i;61229:29::-;60738:528;:::o;65319:137::-;60317:10;60304:24;;;;:12;:24;;;;;;;;60296:52;;;;-1:-1:-1;;;60296:52:0;;;;;;;:::i;:::-;65421:27;;::::1;::::0;:6:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;65187:124::-:0;60317:10;60304:24;;;;:12;:24;;;;;;;;60296:52;;;;-1:-1:-1;;;60296:52:0;;;;;;;:::i;:::-;65277:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;59639:33::-:0;;;;;;;:::i;66145:210::-;66246:13;66227:8;60084:17;60092:8;31424:4;31448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31448:16:0;:30;;;31359:127;60084:17;60076:53;;;;-1:-1:-1;;;60076:53:0;;13016:2:1;60076:53:0;;;12998:21:1;13055:2;13035:18;;;13028:30;13094:25;13074:18;;;13067:53;13137:18;;60076:53:0;12814:347:1;60076:53:0;66303:14:::1;66319:26;66336:8;66319:16;:26::i;:::-;66286:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66272:75;;60140:1;66145:210:::0;;;;:::o;61533:733::-;61609:15;;61581:25;;-1:-1:-1;;;;;61609:15:0;:25;717:10;61609:39;;-1:-1:-1;;;;;;61609:39:0;;;;;;;-1:-1:-1;;;;;7660:32:1;;;61609:39:0;;;7642:51:1;7615:18;;61609:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61581:67;;61708:1;61688:17;:21;61680:49;;;;-1:-1:-1;;;61680:49:0;;19538:2:1;61680:49:0;;;19520:21:1;19577:2;19557:18;;;19550:30;-1:-1:-1;;;19596:18:1;;;19589:45;19651:18;;61680:49:0;19336:339:1;61680:49:0;61740:15;;61839:420;61863:17;61859:1;:21;61839:420;;;62029:15;;-1:-1:-1;;;;;62029:15:0;:35;717:10;62029:52;;-1:-1:-1;;;;;;62029:52:0;;;;;;;-1:-1:-1;;;;;8389:32:1;;;62029:52:0;;;8371:51:1;8438:18;;;8431:34;;;8344:18;;62029:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62019:62;;59249:9;62100:7;:21;62096:152;;;62142:90;62171:7;717:10;63586:6;:90::i;62142:::-;61882:3;;;;:::i;:::-;;;;61839:420;;64857:106;60211:5;;-1:-1:-1;;;;;60211:5:0;60197:10;:19;60189:42;;;;-1:-1:-1;;;60189:42:0;;13368:2:1;60189:42:0;;;13350:21:1;13407:2;13387:18;;;13380:30;-1:-1:-1;;;13426:18:1;;;13419:40;13476:18;;60189:42:0;13166:334:1;60189:42:0;-1:-1:-1;;;;;64926:22:0::1;;::::0;;;:12:::1;:22;::::0;;;;:29;;-1:-1:-1;;64926:29:0::1;64951:4;64926:29;::::0;;64857:106::o;59607:25::-;;;;;;;:::i;66363:274::-;46639:6;;-1:-1:-1;;;;;46639:6:0;717:10;46786:23;46778:68;;;;-1:-1:-1;;;46778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66453:22:0;::::1;66445:73;;;;-1:-1:-1::0;;;66445:73:0::1;;;;;;;:::i;:::-;66529:5;:16:::0;;-1:-1:-1;;;;;;66529:16:0::1;-1:-1:-1::0;;;;;66529:16:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;66556:22:0;;;:12:::1;:22;::::0;;;;:29;;-1:-1:-1;;66556:29:0::1;-1:-1:-1::0;66556:29:0::1;::::0;;66596:33:::1;66529:16:::0;47520:244;46639:6;;-1:-1:-1;;;;;46639:6:0;717:10;46786:23;46778:68;;;;-1:-1:-1;;;46778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47609:22:0;::::1;47601:73;;;;-1:-1:-1::0;;;47601:73:0::1;;;;;;;:::i;:::-;47711:6;::::0;47690:38:::1;::::0;-1:-1:-1;;;;;47690:38:0;;::::1;::::0;47711:6:::1;::::0;47690:38:::1;::::0;47711:6:::1;::::0;47690:38:::1;47739:6;:17:::0;;-1:-1:-1;;;;;;47739:17:0::1;-1:-1:-1::0;;;;;47739:17:0;;;::::1;::::0;;;::::1;::::0;;47520:244::o;25461:305::-;25563:4;-1:-1:-1;;;;;;25600:40:0;;-1:-1:-1;;;25600:40:0;;:105;;-1:-1:-1;;;;;;;25657:48:0;;-1:-1:-1;;;25657:48:0;25600:105;:158;;;-1:-1:-1;;;;;;;;;;1585:40:0;;;25722:36;1476:157;35341:174;35416:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35416:29:0;-1:-1:-1;;;;;35416:29:0;;;;;;;;:24;;35470:23;35416:24;35470:14;:23::i;:::-;-1:-1:-1;;;;;35461:46:0;;;;;;;;;;;35341:174;;:::o;31653:348::-;31746:4;31448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31448:16:0;31763:73;;;;-1:-1:-1;;;31763:73:0;;13707:2:1;31763:73:0;;;13689:21:1;13746:2;13726:18;;;13719:30;13785:34;13765:18;;;13758:62;-1:-1:-1;;;13836:18:1;;;13829:42;13888:19;;31763:73:0;13505:408:1;31763:73:0;31847:13;31863:23;31878:7;31863:14;:23::i;:::-;31847:39;;31916:5;-1:-1:-1;;;;;31905:16:0;:7;-1:-1:-1;;;;;31905:16:0;;:51;;;;31949:7;-1:-1:-1;;;;;31925:31:0;:20;31937:7;31925:11;:20::i;:::-;-1:-1:-1;;;;;31925:31:0;;31905:51;:87;;;-1:-1:-1;;;;;;28745:25:0;;;28721:4;28745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31960:32;31897:96;31653:348;-1:-1:-1;;;;31653:348:0:o;34645:578::-;34804:4;-1:-1:-1;;;;;34777:31:0;:23;34792:7;34777:14;:23::i;:::-;-1:-1:-1;;;;;34777:31:0;;34769:85;;;;-1:-1:-1;;;34769:85:0;;17195:2:1;34769:85:0;;;17177:21:1;17234:2;17214:18;;;17207:30;17273:34;17253:18;;;17246:62;-1:-1:-1;;;17324:18:1;;;17317:39;17373:19;;34769:85:0;16993:405:1;34769:85:0;-1:-1:-1;;;;;34873:16:0;;34865:65;;;;-1:-1:-1;;;34865:65:0;;12257:2:1;34865:65:0;;;12239:21:1;12296:2;12276:18;;;12269:30;12335:34;12315:18;;;12308:62;-1:-1:-1;;;12386:18:1;;;12379:34;12430:19;;34865:65:0;12055:400:1;34865:65:0;34943:39;34964:4;34970:2;34974:7;34943:20;:39::i;:::-;35047:29;35064:1;35068:7;35047:8;:29::i;:::-;-1:-1:-1;;;;;35089:15:0;;;;;;:9;:15;;;;;:20;;35108:1;;35089:15;:20;;35108:1;;35089:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35120:13:0;;;;;;:9;:13;;;;;:18;;35137:1;;35120:13;:18;;35137:1;;35120:18;:::i;:::-;;;;-1:-1:-1;;35149:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35149:21:0;-1:-1:-1;;;;;35149:21:0;;;;;;;;;35188:27;;35149:16;;35188:27;;;;;;;34645:578;;;:::o;63782:1067::-;64035:12;;64024:7;:23;;:48;;;;;64062:10;;64051:7;:21;;64024:48;64002:119;;;;-1:-1:-1;;;64002:119:0;;18775:2:1;64002:119:0;;;18757:21:1;18814:2;18794:18;;;18787:30;-1:-1:-1;;;18833:18:1;;;18826:51;18894:18;;64002:119:0;18573:345:1;64002:119:0;64164:6;;;;64142:62;;;;-1:-1:-1;;;64142:62:0;;15712:2:1;64142:62:0;;;15694:21:1;15751:2;15731:18;;;15724:30;-1:-1:-1;;;15770:18:1;;;15763:49;15829:18;;64142:62:0;15510:343:1;64142:62:0;64322:23;;;;:14;:23;;;;;;;;64321:24;64299:95;;;;-1:-1:-1;;;64299:95:0;;18007:2:1;64299:95:0;;;17989:21:1;18046:2;18026:18;;;18019:30;-1:-1:-1;;;18065:18:1;;;18058:51;18126:18;;64299:95:0;17805:345:1;64299:95:0;64528:23;;;;:14;:23;;;;;:30;;-1:-1:-1;;64528:30:0;64554:4;64528:30;;;;;;64582:10;;:14;;;:::i;:::-;64569:10;:27;64634:15;;:40;;-1:-1:-1;;;64634:40:0;;;;;19826:25:1;;;-1:-1:-1;;;;;64634:15:0;;;;:31;;19799:18:1;;64634:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;64634:40:0;;;;;;;;;;;;:::i;:::-;64607:24;;;;:15;:24;;;;;;;;:67;;;;:24;;:67;;;;;;:::i;:::-;;64768:30;64778:10;64790:7;64768:9;:30::i;:::-;64816:25;;64833:7;;-1:-1:-1;;;;;64816:25:0;;;;;;;;63782:1067;;:::o;30731:315::-;30888:28;30898:4;30904:2;30908:7;30888:9;:28::i;:::-;30935:48;30958:4;30964:2;30968:7;30977:5;30935:22;:48::i;:::-;30927:111;;;;-1:-1:-1;;;30927:111:0;;;;;;;:::i;48024:723::-;48080:13;48301:10;48297:53;;-1:-1:-1;;48328:10:0;;;;;;;;;;;;-1:-1:-1;;;48328:10:0;;;;;48024:723::o;48297:53::-;48375:5;48360:12;48416:78;48423:9;;48416:78;;48449:8;;;;:::i;:::-;;-1:-1:-1;48472:10:0;;-1:-1:-1;48480:2:0;48472:10;;:::i;:::-;;;48416:78;;;48504:19;48536:6;48526:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48526:17:0;;48504:39;;48554:154;48561:10;;48554:154;;48588:11;48598:1;48588:11;;:::i;:::-;;-1:-1:-1;48657:10:0;48665:2;48657:5;:10;:::i;:::-;48644:24;;:2;:24;:::i;:::-;48631:39;;48614:6;48621;48614:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;48614:56:0;;;;;;;;-1:-1:-1;48685:11:0;48694:2;48685:11;;:::i;:::-;;;48554:154;;41006:589;-1:-1:-1;;;;;41212:18:0;;41208:187;;41247:40;41279:7;42422:10;:17;;42395:24;;;;:15;:24;;;;;:44;;;42450:24;;;;;;;;;;;;42318:164;41247:40;41208:187;;;41317:2;-1:-1:-1;;;;;41309:10:0;:4;-1:-1:-1;;;;;41309:10:0;;41305:90;;41336:47;41369:4;41375:7;41336:32;:47::i;:::-;-1:-1:-1;;;;;41409:16:0;;41405:183;;41442:45;41479:7;41442:36;:45::i;41405:183::-;41515:4;-1:-1:-1;;;;;41509:10:0;:2;-1:-1:-1;;;;;41509:10:0;;41505:83;;41536:40;41564:2;41568:7;41536:27;:40::i;32343:110::-;32419:26;32429:2;32433:7;32419:26;;;;;;;;;;;;:9;:26::i;36080:799::-;36235:4;-1:-1:-1;;;;;36256:13:0;;14304:20;14352:8;36252:620;;36292:72;;-1:-1:-1;;;36292:72:0;;-1:-1:-1;;;;;36292:36:0;;;;;:72;;717:10;;36343:4;;36349:7;;36358:5;;36292:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36292:72:0;;;;;;;;-1:-1:-1;;36292:72:0;;;;;;;;;;;;:::i;:::-;;;36288:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36534:13:0;;36530:272;;36577:60;;-1:-1:-1;;;36577:60:0;;;;;;;:::i;36530:272::-;36752:6;36746:13;36737:6;36733:2;36729:15;36722:38;36288:529;-1:-1:-1;;;;;;36415:51:0;-1:-1:-1;;;36415:51:0;;-1:-1:-1;36408:58:0;;36252:620;-1:-1:-1;36856:4:0;36080:799;;;;;;:::o;43109:988::-;43375:22;43425:1;43400:22;43417:4;43400:16;:22::i;:::-;:26;;;;:::i;:::-;43437:18;43458:26;;;:17;:26;;;;;;43375:51;;-1:-1:-1;43591:28:0;;;43587:328;;-1:-1:-1;;;;;43658:18:0;;43636:19;43658:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43709:30;;;;;;:44;;;43826:30;;:17;:30;;;;;:43;;;43587:328;-1:-1:-1;44011:26:0;;;;:17;:26;;;;;;;;44004:33;;;-1:-1:-1;;;;;44055:18:0;;;;;:12;:18;;;;;:34;;;;;;;44048:41;43109:988::o;44392:1079::-;44670:10;:17;44645:22;;44670:21;;44690:1;;44670:21;:::i;:::-;44702:18;44723:24;;;:15;:24;;;;;;45096:10;:26;;44645:46;;-1:-1:-1;44723:24:0;;44645:46;;45096:26;;;;;;:::i;:::-;;;;;;;;;45074:48;;45160:11;45135:10;45146;45135:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45240:28;;;:15;:28;;;;;;;:41;;;45412:24;;;;;45405:31;45447:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44463:1008;;;44392:1079;:::o;41896:221::-;41981:14;41998:20;42015:2;41998:16;:20::i;:::-;-1:-1:-1;;;;;42029:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42074:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41896:221:0:o;32680:321::-;32810:18;32816:2;32820:7;32810:5;:18::i;:::-;32861:54;32892:1;32896:2;32900:7;32909:5;32861:22;:54::i;:::-;32839:154;;;;-1:-1:-1;;;32839:154:0;;;;;;;:::i;33337:382::-;-1:-1:-1;;;;;33417:16:0;;33409:61;;;;-1:-1:-1;;;33409:61:0;;16060:2:1;33409:61:0;;;16042:21:1;;;16079:18;;;16072:30;16138:34;16118:18;;;16111:62;16190:18;;33409:61:0;15858:356:1;33409:61:0;31424:4;31448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31448:16:0;:30;33481:58;;;;-1:-1:-1;;;33481:58:0;;11900:2:1;33481:58:0;;;11882:21:1;11939:2;11919:18;;;11912:30;11978;11958:18;;;11951:58;12026:18;;33481:58:0;11698:352:1;33481:58:0;33552:45;33581:1;33585:2;33589:7;33552:20;:45::i;:::-;-1:-1:-1;;;;;33610:13:0;;;;;;:9;:13;;;;;:18;;33627:1;;33610:13;:18;;33627:1;;33610:18;:::i;:::-;;;;-1:-1:-1;;33639:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33639:21:0;-1:-1:-1;;;;;33639:21:0;;;;;;;;33678:33;;33639:16;;;33678:33;;33639:16;;33678:33;33337:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;:::-;661:5;425:247;-1:-1:-1;;;425:247:1:o;677:251::-;747:6;800:2;788:9;779:7;775:23;771:32;768:52;;;816:1;813;806:12;768:52;848:9;842:16;867:31;892:5;867:31;:::i;933:388::-;1001:6;1009;1062:2;1050:9;1041:7;1037:23;1033:32;1030:52;;;1078:1;1075;1068:12;1030:52;1117:9;1104:23;1136:31;1161:5;1136:31;:::i;:::-;1186:5;-1:-1:-1;1243:2:1;1228:18;;1215:32;1256:33;1215:32;1256:33;:::i;:::-;1308:7;1298:17;;;933:388;;;;;:::o;1326:456::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1527:9;1514:23;1546:31;1571:5;1546:31;:::i;:::-;1596:5;-1:-1:-1;1653:2:1;1638:18;;1625:32;1666:33;1625:32;1666:33;:::i;:::-;1326:456;;1718:7;;-1:-1:-1;;;1772:2:1;1757:18;;;;1744:32;;1326:456::o;1787:794::-;1882:6;1890;1898;1906;1959:3;1947:9;1938:7;1934:23;1930:33;1927:53;;;1976:1;1973;1966:12;1927:53;2015:9;2002:23;2034:31;2059:5;2034:31;:::i;:::-;2084:5;-1:-1:-1;2141:2:1;2126:18;;2113:32;2154:33;2113:32;2154:33;:::i;:::-;2206:7;-1:-1:-1;2260:2:1;2245:18;;2232:32;;-1:-1:-1;2315:2:1;2300:18;;2287:32;2342:18;2331:30;;2328:50;;;2374:1;2371;2364:12;2328:50;2397:22;;2450:4;2442:13;;2438:27;-1:-1:-1;2428:55:1;;2479:1;2476;2469:12;2428:55;2502:73;2567:7;2562:2;2549:16;2544:2;2540;2536:11;2502:73;:::i;:::-;2492:83;;;1787:794;;;;;;;:::o;2586:416::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2767:9;2754:23;2786:31;2811:5;2786:31;:::i;:::-;2836:5;-1:-1:-1;2893:2:1;2878:18;;2865:32;2935:15;;2928:23;2916:36;;2906:64;;2966:1;2963;2956:12;3007:315;3075:6;3083;3136:2;3124:9;3115:7;3111:23;3107:32;3104:52;;;3152:1;3149;3142:12;3104:52;3191:9;3178:23;3210:31;3235:5;3210:31;:::i;:::-;3260:5;3312:2;3297:18;;;;3284:32;;-1:-1:-1;;;3007:315:1:o;3327:947::-;3422:6;3453:2;3496;3484:9;3475:7;3471:23;3467:32;3464:52;;;3512:1;3509;3502:12;3464:52;3545:9;3539:16;3574:18;3615:2;3607:6;3604:14;3601:34;;;3631:1;3628;3621:12;3601:34;3669:6;3658:9;3654:22;3644:32;;3714:7;3707:4;3703:2;3699:13;3695:27;3685:55;;3736:1;3733;3726:12;3685:55;3765:2;3759:9;3787:2;3783;3780:10;3777:36;;;3793:18;;:::i;:::-;3839:2;3836:1;3832:10;3822:20;;3862:28;3886:2;3882;3878:11;3862:28;:::i;:::-;3924:15;;;3955:12;;;;3987:11;;;4017;;;4013:20;;4010:33;-1:-1:-1;4007:53:1;;;4056:1;4053;4046:12;4007:53;4078:1;4069:10;;4088:156;4102:2;4099:1;4096:9;4088:156;;;4159:10;;4147:23;;4120:1;4113:9;;;;;4190:12;;;;4222;;4088:156;;;-1:-1:-1;4263:5:1;3327:947;-1:-1:-1;;;;;;;;3327:947:1:o;4279:245::-;4337:6;4390:2;4378:9;4369:7;4365:23;4361:32;4358:52;;;4406:1;4403;4396:12;4358:52;4445:9;4432:23;4464:30;4488:5;4464:30;:::i;4529:249::-;4598:6;4651:2;4639:9;4630:7;4626:23;4622:32;4619:52;;;4667:1;4664;4657:12;4619:52;4699:9;4693:16;4718:30;4742:5;4718:30;:::i;4783:450::-;4852:6;4905:2;4893:9;4884:7;4880:23;4876:32;4873:52;;;4921:1;4918;4911:12;4873:52;4961:9;4948:23;4994:18;4986:6;4983:30;4980:50;;;5026:1;5023;5016:12;4980:50;5049:22;;5102:4;5094:13;;5090:27;-1:-1:-1;5080:55:1;;5131:1;5128;5121:12;5080:55;5154:73;5219:7;5214:2;5201:16;5196:2;5192;5188:11;5154:73;:::i;5238:180::-;5297:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:52;;;5366:1;5363;5356:12;5318:52;-1:-1:-1;5389:23:1;;5238:180;-1:-1:-1;5238:180:1:o;5423:184::-;5493:6;5546:2;5534:9;5525:7;5521:23;5517:32;5514:52;;;5562:1;5559;5552:12;5514:52;-1:-1:-1;5585:16:1;;5423:184;-1:-1:-1;5423:184:1:o;5612:248::-;5680:6;5688;5741:2;5729:9;5720:7;5716:23;5712:32;5709:52;;;5757:1;5754;5747:12;5709:52;-1:-1:-1;;5780:23:1;;;5850:2;5835:18;;;5822:32;;-1:-1:-1;5612:248:1:o;5865:257::-;5906:3;5944:5;5938:12;5971:6;5966:3;5959:19;5987:63;6043:6;6036:4;6031:3;6027:14;6020:4;6013:5;6009:16;5987:63;:::i;:::-;6104:2;6083:15;-1:-1:-1;;6079:29:1;6070:39;;;;6111:4;6066:50;;5865:257;-1:-1:-1;;5865:257:1:o;6127:185::-;6169:3;6207:5;6201:12;6222:52;6267:6;6262:3;6255:4;6248:5;6244:16;6222:52;:::i;:::-;6290:16;;;;;6127:185;-1:-1:-1;;6127:185:1:o;6317:1174::-;6493:3;6522:1;6555:6;6549:13;6585:3;6607:1;6635:9;6631:2;6627:18;6617:28;;6695:2;6684:9;6680:18;6717;6707:61;;6761:4;6753:6;6749:17;6739:27;;6707:61;6787:2;6835;6827:6;6824:14;6804:18;6801:38;6798:165;;;-1:-1:-1;;;6862:33:1;;6918:4;6915:1;6908:15;6948:4;6869:3;6936:17;6798:165;6979:18;7006:104;;;;7124:1;7119:320;;;;6972:467;;7006:104;-1:-1:-1;;7039:24:1;;7027:37;;7084:16;;;;-1:-1:-1;7006:104:1;;7119:320;20215:1;20208:14;;;20252:4;20239:18;;7214:1;7228:165;7242:6;7239:1;7236:13;7228:165;;;7320:14;;7307:11;;;7300:35;7363:16;;;;7257:10;;7228:165;;;7232:3;;7422:6;7417:3;7413:16;7406:23;;6972:467;;;;;;;7455:30;7481:3;7473:6;7455:30;:::i;:::-;7448:37;6317:1174;-1:-1:-1;;;;;6317:1174:1:o;7704:488::-;-1:-1:-1;;;;;7973:15:1;;;7955:34;;8025:15;;8020:2;8005:18;;7998:43;8072:2;8057:18;;8050:34;;;8120:3;8115:2;8100:18;;8093:31;;;7898:4;;8141:45;;8166:19;;8158:6;8141:45;:::i;:::-;8133:53;7704:488;-1:-1:-1;;;;;;7704:488:1:o;8476:632::-;8647:2;8699:21;;;8769:13;;8672:18;;;8791:22;;;8618:4;;8647:2;8870:15;;;;8844:2;8829:18;;;8618:4;8913:169;8927:6;8924:1;8921:13;8913:169;;;8988:13;;8976:26;;9057:15;;;;9022:12;;;;8949:1;8942:9;8913:169;;;-1:-1:-1;9099:3:1;;8476:632;-1:-1:-1;;;;;;8476:632:1:o;9545:219::-;9694:2;9683:9;9676:21;9657:4;9714:44;9754:2;9743:9;9739:18;9731:6;9714:44;:::i;9769:339::-;9971:2;9953:21;;;10010:2;9990:18;;;9983:30;-1:-1:-1;;;10044:2:1;10029:18;;10022:45;10099:2;10084:18;;9769:339::o;10872:414::-;11074:2;11056:21;;;11113:2;11093:18;;;11086:30;11152:34;11147:2;11132:18;;11125:62;-1:-1:-1;;;11218:2:1;11203:18;;11196:48;11276:3;11261:19;;10872:414::o;11291:402::-;11493:2;11475:21;;;11532:2;11512:18;;;11505:30;11571:34;11566:2;11551:18;;11544:62;-1:-1:-1;;;11637:2:1;11622:18;;11615:36;11683:3;11668:19;;11291:402::o;16632:356::-;16834:2;16816:21;;;16853:18;;;16846:30;16912:34;16907:2;16892:18;;16885:62;16979:2;16964:18;;16632:356::o;18155:413::-;18357:2;18339:21;;;18396:2;18376:18;;;18369:30;18435:34;18430:2;18415:18;;18408:62;-1:-1:-1;;;18501:2:1;18486:18;;18479:47;18558:3;18543:19;;18155:413::o;19862:275::-;19933:2;19927:9;19998:2;19979:13;;-1:-1:-1;;19975:27:1;19963:40;;20033:18;20018:34;;20054:22;;;20015:62;20012:88;;;20080:18;;:::i;:::-;20116:2;20109:22;19862:275;;-1:-1:-1;19862:275:1:o;20268:128::-;20308:3;20339:1;20335:6;20332:1;20329:13;20326:39;;;20345:18;;:::i;:::-;-1:-1:-1;20381:9:1;;20268:128::o;20401:120::-;20441:1;20467;20457:35;;20472:18;;:::i;:::-;-1:-1:-1;20506:9:1;;20401:120::o;20526:125::-;20566:4;20594:1;20591;20588:8;20585:34;;;20599:18;;:::i;:::-;-1:-1:-1;20636:9:1;;20526:125::o;20656:258::-;20728:1;20738:113;20752:6;20749:1;20746:13;20738:113;;;20828:11;;;20822:18;20809:11;;;20802:39;20774:2;20767:10;20738:113;;;20869:6;20866:1;20863:13;20860:48;;;-1:-1:-1;;20904:1:1;20886:16;;20879:27;20656:258::o;20919:380::-;20998:1;20994:12;;;;21041;;;21062:61;;21116:4;21108:6;21104:17;21094:27;;21062:61;21169:2;21161:6;21158:14;21138:18;21135:38;21132:161;;;21215:10;21210:3;21206:20;21203:1;21196:31;21250:4;21247:1;21240:15;21278:4;21275:1;21268:15;21304:135;21343:3;-1:-1:-1;;21364:17:1;;21361:43;;;21384:18;;:::i;:::-;-1:-1:-1;21431:1:1;21420:13;;21304:135::o;21444:112::-;21476:1;21502;21492:35;;21507:18;;:::i;:::-;-1:-1:-1;21541:9:1;;21444:112::o;21561:127::-;21622:10;21617:3;21613:20;21610:1;21603:31;21653:4;21650:1;21643:15;21677:4;21674:1;21667:15;21693:127;21754:10;21749:3;21745:20;21742:1;21735:31;21785:4;21782:1;21775:15;21809:4;21806:1;21799:15;21825:127;21886:10;21881:3;21877:20;21874:1;21867:31;21917:4;21914:1;21907:15;21941:4;21938:1;21931:15;21957:127;22018:10;22013:3;22009:20;22006:1;21999:31;22049:4;22046:1;22039:15;22073:4;22070:1;22063:15;22089:127;22150:10;22145:3;22141:20;22138:1;22131:31;22181:4;22178:1;22171:15;22205:4;22202:1;22195:15;22221:131;-1:-1:-1;;;;;22296:31:1;;22286:42;;22276:70;;22342:1;22339;22332:12;22357:131;-1:-1:-1;;;;;;22431:32:1;;22421:43;;22411:71;;22478:1;22475;22468:12

Swarm Source

ipfs://82ba48e8672f0d76a8b06c12c07a33832602a4dfe2d74346865d8a273c4e872d
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.