ETH Price: $3,287.51 (+1.23%)
Gas: 1 Gwei

Token

Crypto Bird (CryptoBird)
 

Overview

Max Total Supply

0 CryptoBird

Holders

149

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
youngseance.eth
Balance
1 CryptoBird
0xba7529d5cce2daed40f7c54da0eee10ed4e6b5d3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoBird

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Crypto Bird
// https://app.exeedme.com/cryptobird
// https://twitter.com/exeedme
// https://www.instagram.com/exeedme

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File @openzeppelin/contracts/security/[email protected]

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner"
        );
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File contracts/helpers/ContextMixin.sol

pragma solidity ^0.8.14;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/ContextMixin.sol
 */
abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

// File contracts/helpers/Initializable.sol

pragma solidity ^0.8.14;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/Initializable.sol
 */
contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

// File contracts/helpers/EIP712Base.sol

pragma solidity ^0.8.14;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/EIP712Base.sol
 */
contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contractsa that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

// File contracts/helpers/NativeMetaTransaction.sol

pragma solidity ^0.8.14;

/**
 * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/NativeMetaTransaction.sol
 */
contract NativeMetaTransaction is EIP712Base {
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress] + 1;

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

// File contracts/CryptoBird.sol

pragma solidity ^0.8.14;

contract CryptoBird is
    ERC721Burnable,
    ContextMixin,
    NativeMetaTransaction,
    ReentrancyGuard,
    Ownable
{
    uint256 public constant MAXIMUM_SUPPLY = 1100;
    uint256 public constant OWNER_MINT_LIMIT = 100;
    uint256 public constant USER_SUPPLY = MAXIMUM_SUPPLY - OWNER_MINT_LIMIT;

    uint256 public constant STAKING_MINT_START_TIMESTAMP = 1655542800; // 2022-06-18 09:00 UTC
    uint256 public constant STAKING_MINT_END_TIMESTAMP =
        STAKING_MINT_START_TIMESTAMP + 4 hours; // 2022-06-18 13:00 UTC
    uint256 public constant WHITELIST_MINT_START_TIMESTAMP =
        STAKING_MINT_END_TIMESTAMP; // 2022-06-18 13:00 UTC
    uint256 public constant WHITELIST_MINT_END_TIMESTAMP =
        WHITELIST_MINT_START_TIMESTAMP + 24 hours; // 2022-06-19 13:00 UTC

    uint256 public constant PRICE_STAKING = 0.04 ether;
    uint256 public constant PRICE_DYNAMIC_BASE = 0.05 ether;
    uint256 public constant PRICE_DYNAMIC_INCREMENT = 0.005 ether;

    uint256 public unmintedSupply = MAXIMUM_SUPPLY;

    uint256 public publicMintAllowance = 0;

    mapping(uint8 => bytes32) public merkleRootStaking; // stakingLevel => merkleRoot
    bytes32 public merkleRootWhitelist;
    bytes32 public merkleRootPublic;

    string public metadataFolder =
        "ipfs://QmfFfycqrsJa1WSuxVvPkLvq2Qr6R1T78bKYZfDfbHX4BD/";

    mapping(address => uint256) public amountMinted; // userAddress => amountMinted

    constructor(string memory _name, string memory _symbol)
        ERC721(_name, _symbol)
    {
        _initializeEIP712(_name);

        // Mint reserved
        mint(OWNER_MINT_LIMIT);
    }

    /**
     ** Users
     */

    function mintStaking(
        uint256 _amount,
        uint8 _stakingLevel, // 1 => 1500, 2 => 3000, 3 => 4500
        bytes32[] calldata _proof
    ) external payable {
        // Check timestamps
        require(
            block.timestamp >= STAKING_MINT_START_TIMESTAMP,
            "Not available yet"
        );
        require(
            block.timestamp < STAKING_MINT_END_TIMESTAMP,
            "No longer available"
        );

        // Mint
        mintUser(
            _amount,
            5 * _stakingLevel,
            PRICE_STAKING,
            merkleRootStaking[_stakingLevel],
            _proof
        );
    }

    function mintWhitelist(uint256 _amount, bytes32[] calldata _proof)
        external
        payable
    {
        // Check timestamps
        require(
            block.timestamp >= WHITELIST_MINT_START_TIMESTAMP,
            "Not available yet"
        );
        require(
            block.timestamp < WHITELIST_MINT_END_TIMESTAMP,
            "No longer available"
        );

        // Check if still available
        require(USER_SUPPLY - unmintedSupply + _amount <= 300, "Limit reached");

        // Mint
        uint256 price = getDynamicPrice(_amount);
        mintUser(_amount, 10, price, merkleRootWhitelist, _proof);
    }

    function mintPublic(uint256 _amount, bytes32[] calldata _proof)
        external
        payable
    {
        // Check if still available
        publicMintAllowance = publicMintAllowance - _amount;

        // Mint
        uint256 price = getDynamicPrice(_amount);
        mintUser(_amount, 10, price, merkleRootPublic, _proof);
    }

    function mintUser(
        uint256 _amount,
        uint256 _maximum,
        uint256 _price,
        bytes32 _merkleRoot,
        bytes32[] calldata _proof
    ) private {
        // Check inputs
        require(_amount > 0, "Nothing to mint");
        require(_merkleRoot != bytes32(0), "Mint is disabled");

        // Check permissions
        require(
            MerkleProof.verify(
                _proof,
                _merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "User is not whitelisted"
        );

        // Check value
        require(msg.value == _amount * _price, "Invalid value");

        // Check and update user allowance
        uint256 newUserMinted = amountMinted[msg.sender] + _amount;
        require(newUserMinted <= _maximum, "User mint capacity reached");
        amountMinted[msg.sender] = newUserMinted;

        // Mint
        mint(_amount);
    }

    function mint(uint256 _amount) private nonReentrant {
        uint256 previousUnmintedSupply = unmintedSupply;
        unmintedSupply = previousUnmintedSupply - _amount;

        uint256 mintedSupply = MAXIMUM_SUPPLY - previousUnmintedSupply;
        for (uint256 i = 0; i < _amount; i++) {
            uint256 tokenId = mintedSupply + i;
            _safeMint(msg.sender, tokenId);
        }
    }

    function getDynamicPrice(uint256 _amount) public view returns (uint256) {
        uint256 newMintedSupply = USER_SUPPLY - unmintedSupply + _amount;
        uint256 incrementMultiplier = newMintedSupply / 100;
        if (incrementMultiplier > 0) {
            incrementMultiplier = incrementMultiplier - 1;
        }
        return
            PRICE_DYNAMIC_BASE + incrementMultiplier * PRICE_DYNAMIC_INCREMENT;
    }

    /**
     ** Owner
     */

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Nothing to withdraw");

        payable(owner()).transfer(balance);
    }

    function setMerkleRootsStaking(bytes32[3] calldata _merkleRoots)
        external
        onlyOwner
    {
        merkleRootStaking[1] = _merkleRoots[0]; // 1500
        merkleRootStaking[2] = _merkleRoots[1]; // 3000
        merkleRootStaking[3] = _merkleRoots[2]; // 4500
    }

    function setMerkleRootWhitelist(bytes32 _merkleRoot) external onlyOwner {
        merkleRootWhitelist = _merkleRoot;
    }

    function setMerkleRootPublic(bytes32 _merkleRoot) external onlyOwner {
        merkleRootPublic = _merkleRoot;
    }

    function setMetadataFolder(string calldata _metadataFolder)
        external
        onlyOwner
    {
        metadataFolder = _metadataFolder;
    }

    function bumpPublicMint(uint256 _allowanceDelta) external onlyOwner {
        require(_allowanceDelta > 0, "Zero allowance delta");

        require(
            block.timestamp >= WHITELIST_MINT_END_TIMESTAMP,
            "Whitelist mint still ongoing"
        );

        // Check if there are any left to allow
        uint256 mintAllowance = publicMintAllowance;
        uint256 maxAllowanceDelta = unmintedSupply - publicMintAllowance;
        require(
            _allowanceDelta <= maxAllowanceDelta,
            "Invalid allowance delta"
        );

        publicMintAllowance = mintAllowance + _allowanceDelta;
    }

    /**
     ** Standards
     */

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(
                abi.encodePacked(
                    metadataFolder,
                    Strings.toString(_tokenId),
                    ".json"
                )
            );
    }

    function _msgSender() internal view override returns (address) {
        return ContextMixin.msgSender();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_DYNAMIC_BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_DYNAMIC_INCREMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_STAKING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING_MINT_END_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING_MINT_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USER_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_END_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allowanceDelta","type":"uint256"}],"name":"bumpPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"getDynamicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPublic","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"merkleRootStaking","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWhitelist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataFolder","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_stakingLevel","type":"uint8"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintStaking","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[3]","name":"_merkleRoots","type":"bytes32[3]"}],"name":"setMerkleRootsStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataFolder","type":"string"}],"name":"setMetadataFolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unmintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6006805460ff1916905561044c600b556000600c5560e06040526036608081815290620039f360a03980516200003e91601091602090910190620006cc565b503480156200004c57600080fd5b5060405162003a2938038062003a298339810160408190526200006f916200084c565b81518290829062000088906000906020850190620006cc565b5080516200009e906001906020840190620006cc565b5050600160095550620000ba620000b4620000d9565b620000f5565b620000c58262000147565b620000d16064620001ac565b5050620009e2565b6000620000f06200027260201b620017d91760201c565b905090565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff1615620001915760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b60448201526064015b60405180910390fd5b6200019c81620002d0565b506006805460ff19166001179055565b600260095403620002005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640162000188565b6002600955600b54620002148282620008cc565b600b556000620002278261044c620008cc565b905060005b8381101562000267576000620002438284620008e6565b905062000251338262000372565b50806200025e8162000901565b9150506200022c565b505060016009555050565b6000303303620002ca57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002cd9050565b50335b90565b6040518060800160405280604f8152602001620039a4604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600755565b620003948282604051806020016040528060008152506200039860201b60201c565b5050565b620003a4838362000410565b620003b3600084848462000558565b6200040b5760405162461bcd60e51b815260206004820152603260248201526000805160206200398483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000188565b505050565b6001600160a01b038216620004685760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000188565b6000818152600260205260409020546001600160a01b031615620004cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000188565b6001600160a01b0382166000908152600360205260408120805460019290620004fa908490620008e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000579846001600160a01b0316620006bd60201b620018351760201c565b15620006b1576001600160a01b03841663150b7a0262000598620000d9565b8786866040518563ffffffff1660e01b8152600401620005bc94939291906200091d565b6020604051808303816000875af1925050508015620005fa575060408051601f3d908101601f19168201909252620005f79181019062000973565b60015b62000696573d8080156200062b576040519150601f19603f3d011682016040523d82523d6000602084013e62000630565b606091505b5080516000036200068e5760405162461bcd60e51b815260206004820152603260248201526000805160206200398483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000188565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620006b5565b5060015b949350505050565b6001600160a01b03163b151590565b828054620006da90620009a6565b90600052602060002090601f016020900481019282620006fe576000855562000749565b82601f106200071957805160ff191683800117855562000749565b8280016001018555821562000749579182015b82811115620007495782518255916020019190600101906200072c565b50620007579291506200075b565b5090565b5b808211156200075757600081556001016200075c565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620007a55781810151838201526020016200078b565b83811115620007b5576000848401525b50505050565b600082601f830112620007cd57600080fd5b81516001600160401b0380821115620007ea57620007ea62000772565b604051601f8301601f19908116603f0116810190828211818310171562000815576200081562000772565b816040528381528660208588010111156200082f57600080fd5b6200084284602083016020890162000788565b9695505050505050565b600080604083850312156200086057600080fd5b82516001600160401b03808211156200087857600080fd5b6200088686838701620007bb565b935060208501519150808211156200089d57600080fd5b50620008ac85828601620007bb565b9150509250929050565b634e487b7160e01b600052601160045260246000fd5b600082821015620008e157620008e1620008b6565b500390565b60008219821115620008fc57620008fc620008b6565b500190565b600060018201620009165762000916620008b6565b5060010190565b600060018060a01b0380871683528086166020840152508360408301526080606083015282518060808401526200095c8160a085016020870162000788565b601f01601f19169190910160a00195945050505050565b6000602082840312156200098657600080fd5b81516001600160e01b0319811681146200099f57600080fd5b9392505050565b600181811c90821680620009bb57607f821691505b602082108103620009dc57634e487b7160e01b600052602260045260246000fd5b50919050565b612f9280620009f26000396000f3fe6080604052600436106102ad5760003560e01c8063438a67e711610175578063a22cb465116100dc578063d897d74a11610095578063e96a7ecc1161006f578063e96a7ecc146107ca578063e985e9c5146107ea578063f1fa5c8414610833578063f2fde38b1461084857600080fd5b8063d897d74a1461076f578063da93a7751461078a578063deb97ba3146107aa57600080fd5b8063a22cb465146106bc578063b2d56c80146106dc578063b3731a26146106fc578063b88d4fde1461070f578063c17f25341461072f578063c87b56dd1461074f57600080fd5b806370a082311161012e57806370a0823114610628578063715018a6146106485780637ec158f21461065d5780638da5cb5b146106735780638e1f9cfe1461069157806395d89b41146106a757600080fd5b8063438a67e71461059b57806357cc39c2146105c85780635ca2034a146105dd5780635d12a6ec146105f35780636352211e14610608578063647ea8731461042157600080fd5b806319037f51116102195780633408e470116101d25780633408e470146104fd578063360bede8146105105780633ccfd60b146105305780633d0c49241461054557806342842e0e1461055b57806342966c681461057b57600080fd5b806319037f511461044e57806319fd2cc51461046157806320379ee51461047c57806323b872dd146104915780632d0335ab146104b1578063337da94b146104e757600080fd5b8063095ea7b31161026b578063095ea7b3146103ac5780630c53c51c146103cc5780630f7e5970146103df578063129f58dc1461040c57806315101c9214610421578063176b87dc1461043657600080fd5b8062295051146102b257806301ffc9a7146102f257806302f2d7ce14610322578063061431a81461033d57806306fdde0314610352578063081812fc14610374575b600080fd5b3480156102be57600080fd5b506102df6102cd36600461267b565b600d6020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156102fe57600080fd5b5061031261030d3660046126b3565b610868565b60405190151581526020016102e9565b34801561032e57600080fd5b506102df66b1a2bc2ec5000081565b61035061034b36600461271c565b6108ba565b005b34801561035e57600080fd5b506103676109ff565b6040516102e991906127c0565b34801561038057600080fd5b5061039461038f3660046127d3565b610a91565b6040516001600160a01b0390911681526020016102e9565b3480156103b857600080fd5b506103506103c7366004612803565b610b26565b6103676103da3660046128d0565b610c4d565b3480156103eb57600080fd5b50610367604051806040016040528060018152602001603160f81b81525081565b34801561041857600080fd5b50610367610e37565b34801561042d57600080fd5b506102df610ec5565b34801561044257600080fd5b506102df6362ad941081565b61035061045c366004612942565b610ed8565b34801561046d57600080fd5b506102df6611c37937e0800081565b34801561048857600080fd5b506007546102df565b34801561049d57600080fd5b506103506104ac36600461299c565b610faa565b3480156104bd57600080fd5b506102df6104cc3660046129d8565b6001600160a01b031660009081526008602052604090205490565b3480156104f357600080fd5b506102df600f5481565b34801561050957600080fd5b50466102df565b34801561051c57600080fd5b5061035061052b3660046127d3565b610fe2565b34801561053c57600080fd5b50610350611030565b34801561055157600080fd5b506102df61044c81565b34801561056757600080fd5b5061035061057636600461299c565b6110fb565b34801561058757600080fd5b506103506105963660046127d3565b611116565b3480156105a757600080fd5b506102df6105b63660046129d8565b60116020526000908152604090205481565b3480156105d457600080fd5b506102df611192565b3480156105e957600080fd5b506102df600c5481565b3480156105ff57600080fd5b506102df606481565b34801561061457600080fd5b506103946106233660046127d3565b61119f565b34801561063457600080fd5b506102df6106433660046129d8565b611216565b34801561065457600080fd5b5061035061129d565b34801561066957600080fd5b506102df600b5481565b34801561067f57600080fd5b50600a546001600160a01b0316610394565b34801561069d57600080fd5b506102df600e5481565b3480156106b357600080fd5b506103676112f2565b3480156106c857600080fd5b506103506106d73660046129f3565b611301565b3480156106e857600080fd5b506103506106f73660046127d3565b611313565b61035061070a36600461271c565b611361565b34801561071b57600080fd5b5061035061072a366004612a2f565b611390565b34801561073b57600080fd5b5061035061074a366004612a97565b6113c9565b34801561075b57600080fd5b5061036761076a3660046127d3565b61148f565b34801561077b57600080fd5b506102df668e1bc9bf04000081565b34801561079657600080fd5b506103506107a53660046127d3565b6114c3565b3480156107b657600080fd5b506102df6107c53660046127d3565b611637565b3480156107d657600080fd5b506103506107e5366004612abf565b6116b0565b3480156107f657600080fd5b50610312610805366004612b31565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083f57600080fd5b506102df611705565b34801561085457600080fd5b506103506108633660046129d8565b611722565b60006001600160e01b031982166380ac58cd60e01b148061089957506001600160e01b03198216635b5e139f60e01b145b806108b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6108ca6362ad9410613840612b7a565b4210156109125760405162461bcd60e51b8152602060048201526011602482015270139bdd08185d985a5b18589b19481e595d607a1b60448201526064015b60405180910390fd5b6109226362ad9410613840612b7a565b61092f9062015180612b7a565b42106109735760405162461bcd60e51b81526020600482015260136024820152724e6f206c6f6e67657220617661696c61626c6560681b6044820152606401610909565b61012c83600b54606461044c6109899190612b92565b6109939190612b92565b61099d9190612b7a565b11156109db5760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b6044820152606401610909565b60006109e684611637565b90506109f984600a83600e548787611844565b50505050565b606060008054610a0e90612ba9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3a90612ba9565b8015610a875780601f10610a5c57610100808354040283529160200191610a87565b820191906000526020600020905b815481529060010190602001808311610a6a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b0a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610909565b506000908152600460205260409020546001600160a01b031690565b6000610b318261119f565b9050806001600160a01b0316836001600160a01b031603610b9e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610909565b806001600160a01b0316610bb0611a5d565b6001600160a01b03161480610bcc5750610bcc81610805611a5d565b610c3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610909565b610c488383611a6c565b505050565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610c8b8782878787611ada565b610ce15760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610909565b6001600160a01b038716600090815260086020526040902054610d05906001612b7a565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d5590899033908a90612bdd565b60405180910390a1600080306001600160a01b0316888a604051602001610d7d929190612c2e565b60408051601f1981840301815290829052610d9791612c65565b6000604051808303816000865af19150503d8060008114610dd4576040519150601f19603f3d011682016040523d82523d6000602084013e610dd9565b606091505b509150915081610e2b5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610909565b98975050505050505050565b60108054610e4490612ba9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7090612ba9565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505081565b610ed56362ad9410613840612b7a565b81565b6362ad9410421015610f205760405162461bcd60e51b8152602060048201526011602482015270139bdd08185d985a5b18589b19481e595d607a1b6044820152606401610909565b610f306362ad9410613840612b7a565b4210610f745760405162461bcd60e51b81526020600482015260136024820152724e6f206c6f6e67657220617661696c61626c6560681b6044820152606401610909565b6109f984610f83856005612c81565b60ff8681166000908152600d6020526040902054911690668e1bc9bf040000908686611844565b610fbb610fb5611a5d565b82611bca565b610fd75760405162461bcd60e51b815260040161090990612caa565b610c48838383611cc0565b610fea611a5d565b6001600160a01b0316611005600a546001600160a01b031690565b6001600160a01b03161461102b5760405162461bcd60e51b815260040161090990612cfb565b600e55565b611038611a5d565b6001600160a01b0316611053600a546001600160a01b031690565b6001600160a01b0316146110795760405162461bcd60e51b815260040161090990612cfb565b47806110bd5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610909565b600a546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156110f7573d6000803e3d6000fd5b5050565b610c4883838360405180602001604052806000815250611390565b611121610fb5611a5d565b6111865760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610909565b61118f81611e5c565b50565b610ed5606461044c612b92565b6000818152600260205260408120546001600160a01b0316806108b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610909565b60006001600160a01b0382166112815760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610909565b506001600160a01b031660009081526003602052604090205490565b6112a5611a5d565b6001600160a01b03166112c0600a546001600160a01b031690565b6001600160a01b0316146112e65760405162461bcd60e51b815260040161090990612cfb565b6112f06000611ef7565b565b606060018054610a0e90612ba9565b6110f761130c611a5d565b8383611f49565b61131b611a5d565b6001600160a01b0316611336600a546001600160a01b031690565b6001600160a01b03161461135c5760405162461bcd60e51b815260040161090990612cfb565b600f55565b82600c5461136f9190612b92565b600c55600061137d84611637565b90506109f984600a83600f548787611844565b6113a161139b611a5d565b83611bca565b6113bd5760405162461bcd60e51b815260040161090990612caa565b6109f984848484612017565b6113d1611a5d565b6001600160a01b03166113ec600a546001600160a01b031690565b6001600160a01b0316146114125760405162461bcd60e51b815260040161090990612cfb565b600d602090815281357ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c5558101357f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc249556003600052604001357f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e255565b6060601061149c8361204a565b6040516020016114ad929190612d46565b6040516020818303038152906040529050919050565b6114cb611a5d565b6001600160a01b03166114e6600a546001600160a01b031690565b6001600160a01b03161461150c5760405162461bcd60e51b815260040161090990612cfb565b600081116115535760405162461bcd60e51b81526020600482015260146024820152735a65726f20616c6c6f77616e63652064656c746160601b6044820152606401610909565b6115636362ad9410613840612b7a565b6115709062015180612b7a565b4210156115bf5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c697374206d696e74207374696c6c206f6e676f696e67000000006044820152606401610909565b600c54600b546000906115d3908390612b92565b9050808311156116255760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420616c6c6f77616e63652064656c74610000000000000000006044820152606401610909565b61162f8383612b7a565b600c55505050565b60008082600b54606461044c61164d9190612b92565b6116579190612b92565b6116619190612b7a565b90506000611670606483612e0d565b9050801561168657611683600182612b92565b90505b6116976611c37937e0800082612e21565b6116a89066b1a2bc2ec50000612b7a565b949350505050565b6116b8611a5d565b6001600160a01b03166116d3600a546001600160a01b031690565b6001600160a01b0316146116f95760405162461bcd60e51b815260040161090990612cfb565b610c48601083836125cc565b6117156362ad9410613840612b7a565b610ed59062015180612b7a565b61172a611a5d565b6001600160a01b0316611745600a546001600160a01b031690565b6001600160a01b03161461176b5760405162461bcd60e51b815260040161090990612cfb565b6001600160a01b0381166117d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610909565b61118f81611ef7565b600030330361182f57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506118329050565b50335b90565b6001600160a01b03163b151590565b600086116118865760405162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81b5a5b9d608a1b6044820152606401610909565b826118c65760405162461bcd60e51b815260206004820152601060248201526f135a5b9d081a5cc8191a5cd8589b195960821b6044820152606401610909565b611938828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015287925060340190506040516020818303038152906040528051906020012061214b565b6119845760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610909565b61198e8487612e21565b34146119cc5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610909565b336000908152601160205260408120546119e7908890612b7a565b905085811115611a395760405162461bcd60e51b815260206004820152601a60248201527f55736572206d696e7420636170616369747920726561636865640000000000006044820152606401610909565b336000908152601160205260409020819055611a5487612161565b50505050505050565b6000611a676117d9565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aa18261119f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611b405760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610909565b6001611b53611b4e87612219565b612296565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611ba1573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000818152600260205260408120546001600160a01b0316611c435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610909565b6000611c4e8361119f565b9050806001600160a01b0316846001600160a01b03161480611c9557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116a85750836001600160a01b0316611cae84610a91565b6001600160a01b031614949350505050565b826001600160a01b0316611cd38261119f565b6001600160a01b031614611d375760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610909565b6001600160a01b038216611d995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610909565b611da4600082611a6c565b6001600160a01b0383166000908152600360205260408120805460019290611dcd908490612b92565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dfb908490612b7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611e678261119f565b9050611e74600083611a6c565b6001600160a01b0381166000908152600360205260408120805460019290611e9d908490612b92565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611faa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610909565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612022848484611cc0565b61202e848484846122c6565b6109f95760405162461bcd60e51b815260040161090990612e40565b6060816000036120715750506040805180820190915260018152600360fc1b602082015290565b8160005b811561209b578061208581612e92565b91506120949050600a83612e0d565b9150612075565b60008167ffffffffffffffff8111156120b6576120b661282d565b6040519080825280601f01601f1916602001820160405280156120e0576020820181803683370190505b5090505b84156116a8576120f5600183612b92565b9150612102600a86612eab565b61210d906030612b7a565b60f81b81838151811061212257612122612d30565b60200101906001600160f81b031916908160001a905350612144600a86612e0d565b94506120e4565b60008261215885846123ce565b14949350505050565b6002600954036121b35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610909565b6002600955600b546121c58282612b92565b600b5560006121d68261044c612b92565b905060005b8381101561220e5760006121ef8284612b7a565b90506121fb3382612442565b508061220681612e92565b9150506121db565b505060016009555050565b6000604051806080016040528060438152602001612f1a6043913980516020918201208351848301516040808701518051908601209051612279950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006122a160075490565b60405161190160f01b6020820152602281019190915260428101839052606201612279565b60006001600160a01b0384163b156123c357836001600160a01b031663150b7a026122ef611a5d565b8786866040518563ffffffff1660e01b81526004016123119493929190612ebf565b6020604051808303816000875af192505050801561234c575060408051601f3d908101601f1916820190925261234991810190612efc565b60015b6123a9573d80801561237a576040519150601f19603f3d011682016040523d82523d6000602084013e61237f565b606091505b5080516000036123a15760405162461bcd60e51b815260040161090990612e40565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116a8565b506001949350505050565b600081815b845181101561243a5760008582815181106123f0576123f0612d30565b602002602001015190508083116124165760008381526020829052604090209250612427565b600081815260208490526040902092505b508061243281612e92565b9150506123d3565b509392505050565b6110f7828260405180602001604052806000815250612461838361248a565b61246e60008484846122c6565b610c485760405162461bcd60e51b815260040161090990612e40565b6001600160a01b0382166124e05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610909565b6000818152600260205260409020546001600160a01b0316156125455760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610909565b6001600160a01b038216600090815260036020526040812080546001929061256e908490612b7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546125d890612ba9565b90600052602060002090601f0160209004810192826125fa5760008555612640565b82601f106126135782800160ff19823516178555612640565b82800160010185558215612640579182015b82811115612640578235825591602001919060010190612625565b5061264c929150612650565b5090565b5b8082111561264c5760008155600101612651565b803560ff8116811461267657600080fd5b919050565b60006020828403121561268d57600080fd5b61269682612665565b9392505050565b6001600160e01b03198116811461118f57600080fd5b6000602082840312156126c557600080fd5b81356126968161269d565b60008083601f8401126126e257600080fd5b50813567ffffffffffffffff8111156126fa57600080fd5b6020830191508360208260051b850101111561271557600080fd5b9250929050565b60008060006040848603121561273157600080fd5b83359250602084013567ffffffffffffffff81111561274f57600080fd5b61275b868287016126d0565b9497909650939450505050565b60005b8381101561278357818101518382015260200161276b565b838111156109f95750506000910152565b600081518084526127ac816020860160208601612768565b601f01601f19169290920160200192915050565b6020815260006126966020830184612794565b6000602082840312156127e557600080fd5b5035919050565b80356001600160a01b038116811461267657600080fd5b6000806040838503121561281657600080fd5b61281f836127ec565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261285457600080fd5b813567ffffffffffffffff8082111561286f5761286f61282d565b604051601f8301601f19908116603f011681019082821181831017156128975761289761282d565b816040528381528660208588010111156128b057600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a086880312156128e857600080fd5b6128f1866127ec565b9450602086013567ffffffffffffffff81111561290d57600080fd5b61291988828901612843565b945050604086013592506060860135915061293660808701612665565b90509295509295909350565b6000806000806060858703121561295857600080fd5b8435935061296860208601612665565b9250604085013567ffffffffffffffff81111561298457600080fd5b612990878288016126d0565b95989497509550505050565b6000806000606084860312156129b157600080fd5b6129ba846127ec565b92506129c8602085016127ec565b9150604084013590509250925092565b6000602082840312156129ea57600080fd5b612696826127ec565b60008060408385031215612a0657600080fd5b612a0f836127ec565b915060208301358015158114612a2457600080fd5b809150509250929050565b60008060008060808587031215612a4557600080fd5b612a4e856127ec565b9350612a5c602086016127ec565b925060408501359150606085013567ffffffffffffffff811115612a7f57600080fd5b612a8b87828801612843565b91505092959194509250565b600060608284031215612aa957600080fd5b82606083011115612ab957600080fd5b50919050565b60008060208385031215612ad257600080fd5b823567ffffffffffffffff80821115612aea57600080fd5b818501915085601f830112612afe57600080fd5b813581811115612b0d57600080fd5b866020828501011115612b1f57600080fd5b60209290920196919550909350505050565b60008060408385031215612b4457600080fd5b612b4d836127ec565b9150612b5b602084016127ec565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b8d57612b8d612b64565b500190565b600082821015612ba457612ba4612b64565b500390565b600181811c90821680612bbd57607f821691505b602082108103612ab957634e487b7160e01b600052602260045260246000fd5b6001600160a01b03848116825283166020820152606060408201819052600090612c0990830184612794565b95945050505050565b60008151612c24818560208601612768565b9290920192915050565b60008351612c40818460208801612768565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251612c77818460208701612768565b9190910192915050565b600060ff821660ff84168160ff0481118215151615612ca257612ca2612b64565b029392505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600080845481600182811c915080831680612d6257607f831692505b60208084108203612d8157634e487b7160e01b86526022600452602486fd5b818015612d955760018114612da657612dd3565b60ff19861689528489019650612dd3565b60008b81526020902060005b86811015612dcb5781548b820152908501908301612db2565b505084890196505b505050505050612c09612de68286612c12565b64173539b7b760d91b815260050190565b634e487b7160e01b600052601260045260246000fd5b600082612e1c57612e1c612df7565b500490565b6000816000190483118215151615612e3b57612e3b612b64565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018201612ea457612ea4612b64565b5060010190565b600082612eba57612eba612df7565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ef290830184612794565b9695505050505050565b600060208284031215612f0e57600080fd5b81516126968161269d56fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212203a15d8a478d7aeda1a3e8400044ae2a6e861ccdbe80db7c07d6e1d73b18b67da64736f6c634300080e00334552433732313a207472616e7366657220746f206e6f6e204552433732315265454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429697066733a2f2f516d66466679637172734a6131575375785676506b4c7671325172365231543738624b595a6644666248583442442f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b43727970746f2042697264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a43727970746f4269726400000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ad5760003560e01c8063438a67e711610175578063a22cb465116100dc578063d897d74a11610095578063e96a7ecc1161006f578063e96a7ecc146107ca578063e985e9c5146107ea578063f1fa5c8414610833578063f2fde38b1461084857600080fd5b8063d897d74a1461076f578063da93a7751461078a578063deb97ba3146107aa57600080fd5b8063a22cb465146106bc578063b2d56c80146106dc578063b3731a26146106fc578063b88d4fde1461070f578063c17f25341461072f578063c87b56dd1461074f57600080fd5b806370a082311161012e57806370a0823114610628578063715018a6146106485780637ec158f21461065d5780638da5cb5b146106735780638e1f9cfe1461069157806395d89b41146106a757600080fd5b8063438a67e71461059b57806357cc39c2146105c85780635ca2034a146105dd5780635d12a6ec146105f35780636352211e14610608578063647ea8731461042157600080fd5b806319037f51116102195780633408e470116101d25780633408e470146104fd578063360bede8146105105780633ccfd60b146105305780633d0c49241461054557806342842e0e1461055b57806342966c681461057b57600080fd5b806319037f511461044e57806319fd2cc51461046157806320379ee51461047c57806323b872dd146104915780632d0335ab146104b1578063337da94b146104e757600080fd5b8063095ea7b31161026b578063095ea7b3146103ac5780630c53c51c146103cc5780630f7e5970146103df578063129f58dc1461040c57806315101c9214610421578063176b87dc1461043657600080fd5b8062295051146102b257806301ffc9a7146102f257806302f2d7ce14610322578063061431a81461033d57806306fdde0314610352578063081812fc14610374575b600080fd5b3480156102be57600080fd5b506102df6102cd36600461267b565b600d6020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156102fe57600080fd5b5061031261030d3660046126b3565b610868565b60405190151581526020016102e9565b34801561032e57600080fd5b506102df66b1a2bc2ec5000081565b61035061034b36600461271c565b6108ba565b005b34801561035e57600080fd5b506103676109ff565b6040516102e991906127c0565b34801561038057600080fd5b5061039461038f3660046127d3565b610a91565b6040516001600160a01b0390911681526020016102e9565b3480156103b857600080fd5b506103506103c7366004612803565b610b26565b6103676103da3660046128d0565b610c4d565b3480156103eb57600080fd5b50610367604051806040016040528060018152602001603160f81b81525081565b34801561041857600080fd5b50610367610e37565b34801561042d57600080fd5b506102df610ec5565b34801561044257600080fd5b506102df6362ad941081565b61035061045c366004612942565b610ed8565b34801561046d57600080fd5b506102df6611c37937e0800081565b34801561048857600080fd5b506007546102df565b34801561049d57600080fd5b506103506104ac36600461299c565b610faa565b3480156104bd57600080fd5b506102df6104cc3660046129d8565b6001600160a01b031660009081526008602052604090205490565b3480156104f357600080fd5b506102df600f5481565b34801561050957600080fd5b50466102df565b34801561051c57600080fd5b5061035061052b3660046127d3565b610fe2565b34801561053c57600080fd5b50610350611030565b34801561055157600080fd5b506102df61044c81565b34801561056757600080fd5b5061035061057636600461299c565b6110fb565b34801561058757600080fd5b506103506105963660046127d3565b611116565b3480156105a757600080fd5b506102df6105b63660046129d8565b60116020526000908152604090205481565b3480156105d457600080fd5b506102df611192565b3480156105e957600080fd5b506102df600c5481565b3480156105ff57600080fd5b506102df606481565b34801561061457600080fd5b506103946106233660046127d3565b61119f565b34801561063457600080fd5b506102df6106433660046129d8565b611216565b34801561065457600080fd5b5061035061129d565b34801561066957600080fd5b506102df600b5481565b34801561067f57600080fd5b50600a546001600160a01b0316610394565b34801561069d57600080fd5b506102df600e5481565b3480156106b357600080fd5b506103676112f2565b3480156106c857600080fd5b506103506106d73660046129f3565b611301565b3480156106e857600080fd5b506103506106f73660046127d3565b611313565b61035061070a36600461271c565b611361565b34801561071b57600080fd5b5061035061072a366004612a2f565b611390565b34801561073b57600080fd5b5061035061074a366004612a97565b6113c9565b34801561075b57600080fd5b5061036761076a3660046127d3565b61148f565b34801561077b57600080fd5b506102df668e1bc9bf04000081565b34801561079657600080fd5b506103506107a53660046127d3565b6114c3565b3480156107b657600080fd5b506102df6107c53660046127d3565b611637565b3480156107d657600080fd5b506103506107e5366004612abf565b6116b0565b3480156107f657600080fd5b50610312610805366004612b31565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083f57600080fd5b506102df611705565b34801561085457600080fd5b506103506108633660046129d8565b611722565b60006001600160e01b031982166380ac58cd60e01b148061089957506001600160e01b03198216635b5e139f60e01b145b806108b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6108ca6362ad9410613840612b7a565b4210156109125760405162461bcd60e51b8152602060048201526011602482015270139bdd08185d985a5b18589b19481e595d607a1b60448201526064015b60405180910390fd5b6109226362ad9410613840612b7a565b61092f9062015180612b7a565b42106109735760405162461bcd60e51b81526020600482015260136024820152724e6f206c6f6e67657220617661696c61626c6560681b6044820152606401610909565b61012c83600b54606461044c6109899190612b92565b6109939190612b92565b61099d9190612b7a565b11156109db5760405162461bcd60e51b815260206004820152600d60248201526c131a5b5a5d081c995858da1959609a1b6044820152606401610909565b60006109e684611637565b90506109f984600a83600e548787611844565b50505050565b606060008054610a0e90612ba9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3a90612ba9565b8015610a875780601f10610a5c57610100808354040283529160200191610a87565b820191906000526020600020905b815481529060010190602001808311610a6a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b0a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610909565b506000908152600460205260409020546001600160a01b031690565b6000610b318261119f565b9050806001600160a01b0316836001600160a01b031603610b9e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610909565b806001600160a01b0316610bb0611a5d565b6001600160a01b03161480610bcc5750610bcc81610805611a5d565b610c3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610909565b610c488383611a6c565b505050565b60408051606081810183526001600160a01b03881660008181526008602090815290859020548452830152918101869052610c8b8782878787611ada565b610ce15760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610909565b6001600160a01b038716600090815260086020526040902054610d05906001612b7a565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d5590899033908a90612bdd565b60405180910390a1600080306001600160a01b0316888a604051602001610d7d929190612c2e565b60408051601f1981840301815290829052610d9791612c65565b6000604051808303816000865af19150503d8060008114610dd4576040519150601f19603f3d011682016040523d82523d6000602084013e610dd9565b606091505b509150915081610e2b5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610909565b98975050505050505050565b60108054610e4490612ba9565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7090612ba9565b8015610ebd5780601f10610e9257610100808354040283529160200191610ebd565b820191906000526020600020905b815481529060010190602001808311610ea057829003601f168201915b505050505081565b610ed56362ad9410613840612b7a565b81565b6362ad9410421015610f205760405162461bcd60e51b8152602060048201526011602482015270139bdd08185d985a5b18589b19481e595d607a1b6044820152606401610909565b610f306362ad9410613840612b7a565b4210610f745760405162461bcd60e51b81526020600482015260136024820152724e6f206c6f6e67657220617661696c61626c6560681b6044820152606401610909565b6109f984610f83856005612c81565b60ff8681166000908152600d6020526040902054911690668e1bc9bf040000908686611844565b610fbb610fb5611a5d565b82611bca565b610fd75760405162461bcd60e51b815260040161090990612caa565b610c48838383611cc0565b610fea611a5d565b6001600160a01b0316611005600a546001600160a01b031690565b6001600160a01b03161461102b5760405162461bcd60e51b815260040161090990612cfb565b600e55565b611038611a5d565b6001600160a01b0316611053600a546001600160a01b031690565b6001600160a01b0316146110795760405162461bcd60e51b815260040161090990612cfb565b47806110bd5760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610909565b600a546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156110f7573d6000803e3d6000fd5b5050565b610c4883838360405180602001604052806000815250611390565b611121610fb5611a5d565b6111865760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610909565b61118f81611e5c565b50565b610ed5606461044c612b92565b6000818152600260205260408120546001600160a01b0316806108b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610909565b60006001600160a01b0382166112815760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610909565b506001600160a01b031660009081526003602052604090205490565b6112a5611a5d565b6001600160a01b03166112c0600a546001600160a01b031690565b6001600160a01b0316146112e65760405162461bcd60e51b815260040161090990612cfb565b6112f06000611ef7565b565b606060018054610a0e90612ba9565b6110f761130c611a5d565b8383611f49565b61131b611a5d565b6001600160a01b0316611336600a546001600160a01b031690565b6001600160a01b03161461135c5760405162461bcd60e51b815260040161090990612cfb565b600f55565b82600c5461136f9190612b92565b600c55600061137d84611637565b90506109f984600a83600f548787611844565b6113a161139b611a5d565b83611bca565b6113bd5760405162461bcd60e51b815260040161090990612caa565b6109f984848484612017565b6113d1611a5d565b6001600160a01b03166113ec600a546001600160a01b031690565b6001600160a01b0316146114125760405162461bcd60e51b815260040161090990612cfb565b600d602090815281357ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c5558101357f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc249556003600052604001357f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e255565b6060601061149c8361204a565b6040516020016114ad929190612d46565b6040516020818303038152906040529050919050565b6114cb611a5d565b6001600160a01b03166114e6600a546001600160a01b031690565b6001600160a01b03161461150c5760405162461bcd60e51b815260040161090990612cfb565b600081116115535760405162461bcd60e51b81526020600482015260146024820152735a65726f20616c6c6f77616e63652064656c746160601b6044820152606401610909565b6115636362ad9410613840612b7a565b6115709062015180612b7a565b4210156115bf5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c697374206d696e74207374696c6c206f6e676f696e67000000006044820152606401610909565b600c54600b546000906115d3908390612b92565b9050808311156116255760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420616c6c6f77616e63652064656c74610000000000000000006044820152606401610909565b61162f8383612b7a565b600c55505050565b60008082600b54606461044c61164d9190612b92565b6116579190612b92565b6116619190612b7a565b90506000611670606483612e0d565b9050801561168657611683600182612b92565b90505b6116976611c37937e0800082612e21565b6116a89066b1a2bc2ec50000612b7a565b949350505050565b6116b8611a5d565b6001600160a01b03166116d3600a546001600160a01b031690565b6001600160a01b0316146116f95760405162461bcd60e51b815260040161090990612cfb565b610c48601083836125cc565b6117156362ad9410613840612b7a565b610ed59062015180612b7a565b61172a611a5d565b6001600160a01b0316611745600a546001600160a01b031690565b6001600160a01b03161461176b5760405162461bcd60e51b815260040161090990612cfb565b6001600160a01b0381166117d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610909565b61118f81611ef7565b600030330361182f57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506118329050565b50335b90565b6001600160a01b03163b151590565b600086116118865760405162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81b5a5b9d608a1b6044820152606401610909565b826118c65760405162461bcd60e51b815260206004820152601060248201526f135a5b9d081a5cc8191a5cd8589b195960821b6044820152606401610909565b611938828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015287925060340190506040516020818303038152906040528051906020012061214b565b6119845760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610909565b61198e8487612e21565b34146119cc5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610909565b336000908152601160205260408120546119e7908890612b7a565b905085811115611a395760405162461bcd60e51b815260206004820152601a60248201527f55736572206d696e7420636170616369747920726561636865640000000000006044820152606401610909565b336000908152601160205260409020819055611a5487612161565b50505050505050565b6000611a676117d9565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aa18261119f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611b405760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610909565b6001611b53611b4e87612219565b612296565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611ba1573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000818152600260205260408120546001600160a01b0316611c435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610909565b6000611c4e8361119f565b9050806001600160a01b0316846001600160a01b03161480611c9557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116a85750836001600160a01b0316611cae84610a91565b6001600160a01b031614949350505050565b826001600160a01b0316611cd38261119f565b6001600160a01b031614611d375760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610909565b6001600160a01b038216611d995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610909565b611da4600082611a6c565b6001600160a01b0383166000908152600360205260408120805460019290611dcd908490612b92565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dfb908490612b7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611e678261119f565b9050611e74600083611a6c565b6001600160a01b0381166000908152600360205260408120805460019290611e9d908490612b92565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611faa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610909565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612022848484611cc0565b61202e848484846122c6565b6109f95760405162461bcd60e51b815260040161090990612e40565b6060816000036120715750506040805180820190915260018152600360fc1b602082015290565b8160005b811561209b578061208581612e92565b91506120949050600a83612e0d565b9150612075565b60008167ffffffffffffffff8111156120b6576120b661282d565b6040519080825280601f01601f1916602001820160405280156120e0576020820181803683370190505b5090505b84156116a8576120f5600183612b92565b9150612102600a86612eab565b61210d906030612b7a565b60f81b81838151811061212257612122612d30565b60200101906001600160f81b031916908160001a905350612144600a86612e0d565b94506120e4565b60008261215885846123ce565b14949350505050565b6002600954036121b35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610909565b6002600955600b546121c58282612b92565b600b5560006121d68261044c612b92565b905060005b8381101561220e5760006121ef8284612b7a565b90506121fb3382612442565b508061220681612e92565b9150506121db565b505060016009555050565b6000604051806080016040528060438152602001612f1a6043913980516020918201208351848301516040808701518051908601209051612279950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006122a160075490565b60405161190160f01b6020820152602281019190915260428101839052606201612279565b60006001600160a01b0384163b156123c357836001600160a01b031663150b7a026122ef611a5d565b8786866040518563ffffffff1660e01b81526004016123119493929190612ebf565b6020604051808303816000875af192505050801561234c575060408051601f3d908101601f1916820190925261234991810190612efc565b60015b6123a9573d80801561237a576040519150601f19603f3d011682016040523d82523d6000602084013e61237f565b606091505b5080516000036123a15760405162461bcd60e51b815260040161090990612e40565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116a8565b506001949350505050565b600081815b845181101561243a5760008582815181106123f0576123f0612d30565b602002602001015190508083116124165760008381526020829052604090209250612427565b600081815260208490526040902092505b508061243281612e92565b9150506123d3565b509392505050565b6110f7828260405180602001604052806000815250612461838361248a565b61246e60008484846122c6565b610c485760405162461bcd60e51b815260040161090990612e40565b6001600160a01b0382166124e05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610909565b6000818152600260205260409020546001600160a01b0316156125455760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610909565b6001600160a01b038216600090815260036020526040812080546001929061256e908490612b7a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546125d890612ba9565b90600052602060002090601f0160209004810192826125fa5760008555612640565b82601f106126135782800160ff19823516178555612640565b82800160010185558215612640579182015b82811115612640578235825591602001919060010190612625565b5061264c929150612650565b5090565b5b8082111561264c5760008155600101612651565b803560ff8116811461267657600080fd5b919050565b60006020828403121561268d57600080fd5b61269682612665565b9392505050565b6001600160e01b03198116811461118f57600080fd5b6000602082840312156126c557600080fd5b81356126968161269d565b60008083601f8401126126e257600080fd5b50813567ffffffffffffffff8111156126fa57600080fd5b6020830191508360208260051b850101111561271557600080fd5b9250929050565b60008060006040848603121561273157600080fd5b83359250602084013567ffffffffffffffff81111561274f57600080fd5b61275b868287016126d0565b9497909650939450505050565b60005b8381101561278357818101518382015260200161276b565b838111156109f95750506000910152565b600081518084526127ac816020860160208601612768565b601f01601f19169290920160200192915050565b6020815260006126966020830184612794565b6000602082840312156127e557600080fd5b5035919050565b80356001600160a01b038116811461267657600080fd5b6000806040838503121561281657600080fd5b61281f836127ec565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261285457600080fd5b813567ffffffffffffffff8082111561286f5761286f61282d565b604051601f8301601f19908116603f011681019082821181831017156128975761289761282d565b816040528381528660208588010111156128b057600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a086880312156128e857600080fd5b6128f1866127ec565b9450602086013567ffffffffffffffff81111561290d57600080fd5b61291988828901612843565b945050604086013592506060860135915061293660808701612665565b90509295509295909350565b6000806000806060858703121561295857600080fd5b8435935061296860208601612665565b9250604085013567ffffffffffffffff81111561298457600080fd5b612990878288016126d0565b95989497509550505050565b6000806000606084860312156129b157600080fd5b6129ba846127ec565b92506129c8602085016127ec565b9150604084013590509250925092565b6000602082840312156129ea57600080fd5b612696826127ec565b60008060408385031215612a0657600080fd5b612a0f836127ec565b915060208301358015158114612a2457600080fd5b809150509250929050565b60008060008060808587031215612a4557600080fd5b612a4e856127ec565b9350612a5c602086016127ec565b925060408501359150606085013567ffffffffffffffff811115612a7f57600080fd5b612a8b87828801612843565b91505092959194509250565b600060608284031215612aa957600080fd5b82606083011115612ab957600080fd5b50919050565b60008060208385031215612ad257600080fd5b823567ffffffffffffffff80821115612aea57600080fd5b818501915085601f830112612afe57600080fd5b813581811115612b0d57600080fd5b866020828501011115612b1f57600080fd5b60209290920196919550909350505050565b60008060408385031215612b4457600080fd5b612b4d836127ec565b9150612b5b602084016127ec565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b8d57612b8d612b64565b500190565b600082821015612ba457612ba4612b64565b500390565b600181811c90821680612bbd57607f821691505b602082108103612ab957634e487b7160e01b600052602260045260246000fd5b6001600160a01b03848116825283166020820152606060408201819052600090612c0990830184612794565b95945050505050565b60008151612c24818560208601612768565b9290920192915050565b60008351612c40818460208801612768565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251612c77818460208701612768565b9190910192915050565b600060ff821660ff84168160ff0481118215151615612ca257612ca2612b64565b029392505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600080845481600182811c915080831680612d6257607f831692505b60208084108203612d8157634e487b7160e01b86526022600452602486fd5b818015612d955760018114612da657612dd3565b60ff19861689528489019650612dd3565b60008b81526020902060005b86811015612dcb5781548b820152908501908301612db2565b505084890196505b505050505050612c09612de68286612c12565b64173539b7b760d91b815260050190565b634e487b7160e01b600052601260045260246000fd5b600082612e1c57612e1c612df7565b500490565b6000816000190483118215151615612e3b57612e3b612b64565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018201612ea457612ea4612b64565b5060010190565b600082612eba57612eba612df7565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ef290830184612794565b9695505050505050565b600060208284031215612f0e57600080fd5b81516126968161269d56fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212203a15d8a478d7aeda1a3e8400044ae2a6e861ccdbe80db7c07d6e1d73b18b67da64736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b43727970746f2042697264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a43727970746f4269726400000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Crypto Bird
Arg [1] : _symbol (string): CryptoBird

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 43727970746f2042697264000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 43727970746f4269726400000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52218:7320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53316:50;;;;;;;;;;-1:-1:-1;53316:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;508:25:1;;;496:2;481:18;53316:50:0;;;;;;;;27855:355;;;;;;;;;;-1:-1:-1;27855:355:0;;;;;:::i;:::-;;:::i;:::-;;;1095:14:1;;1088:22;1070:41;;1058:2;1043:18;27855:355:0;930:187:1;53082:55:0;;;;;;;;;;;;53127:10;53082:55;;54581:656;;;;;;:::i;:::-;;:::i;:::-;;29024:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30718:308::-;;;;;;;;;;-1:-1:-1;30718:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3286:32:1;;;3268:51;;3256:2;3241:18;30718:308:0;3122:203:1;30241:411:0;;;;;;;;;;-1:-1:-1;30241:411:0;;;;;:::i;:::-;;:::i;49972:1148::-;;;;;;:::i;:::-;;:::i;47063:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47063:43:0;;;;;53484:96;;;;;;;;;;;;;:::i;52764:92::-;;;;;;;;;;;;;:::i;52537:65::-;;;;;;;;;;;;52592:10;52537:65;;53916:657;;;;;;:::i;:::-;;:::i;53144:61::-;;;;;;;;;;;;53194:11;53144:61;;48059:101;;;;;;;;;;-1:-1:-1;48137:15:0;;48059:101;;31637:376;;;;;;;;;;-1:-1:-1;31637:376:0;;;;;:::i;:::-;;:::i;51546:107::-;;;;;;;;;;-1:-1:-1;51546:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;51633:12:0;51599:13;51633:12;;;:6;:12;;;;;;;51546:107;53444:31;;;;;;;;;;;;;;;;48168:161;;;;;;;;;;-1:-1:-1;48282:9:0;48168:161;;57953:124;;;;;;;;;;-1:-1:-1;57953:124:0;;;;;:::i;:::-;;:::i;57453:198::-;;;;;;;;;;;;;:::i;52352:45::-;;;;;;;;;;;;52393:4;52352:45;;32084:185;;;;;;;;;;-1:-1:-1;32084:185:0;;;;;:::i;:::-;;:::i;42466:282::-;;;;;;;;;;-1:-1:-1;42466:282:0;;;;;:::i;:::-;;:::i;53589:47::-;;;;;;;;;;-1:-1:-1;53589:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;52457:71;;;;;;;;;;;;;:::i;53269:38::-;;;;;;;;;;;;;;;;52404:46;;;;;;;;;;;;52447:3;52404:46;;28631:326;;;;;;;;;;-1:-1:-1;28631:326:0;;;;;:::i;:::-;;:::i;28274:295::-;;;;;;;;;;-1:-1:-1;28274:295:0;;;;;:::i;:::-;;:::i;2797:103::-;;;;;;;;;;;;;:::i;53214:46::-;;;;;;;;;;;;;;;;2146:87;;;;;;;;;;-1:-1:-1;2219:6:0;;-1:-1:-1;;;;;2219:6:0;2146:87;;53403:34;;;;;;;;;;;;;;;;29193:104;;;;;;;;;;;;;:::i;31098:187::-;;;;;;;;;;-1:-1:-1;31098:187:0;;;;;:::i;:::-;;:::i;58085:118::-;;;;;;;;;;-1:-1:-1;58085:118:0;;;;;:::i;:::-;;:::i;55245:346::-;;;;;;:::i;:::-;;:::i;32340:365::-;;;;;;;;;;-1:-1:-1;32340:365:0;;;;;:::i;:::-;;:::i;57659:286::-;;;;;;;;;;-1:-1:-1;57659:286:0;;;;;:::i;:::-;;:::i;59062:352::-;;;;;;;;;;-1:-1:-1;59062:352:0;;;;;:::i;:::-;;:::i;53025:50::-;;;;;;;;;;;;53065:10;53025:50;;58372:643;;;;;;;;;;-1:-1:-1;58372:643:0;;;;;:::i;:::-;;:::i;56985:425::-;;;;;;;;;;-1:-1:-1;56985:425:0;;;;;:::i;:::-;;:::i;58211:153::-;;;;;;;;;;-1:-1:-1;58211:153:0;;;;;:::i;:::-;;:::i;31356:214::-;;;;;;;;;;-1:-1:-1;31356:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;31527:25:0;;;31498:4;31527:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31356:214;52887:105;;;;;;;;;;;;;:::i;3055:238::-;;;;;;;;;;-1:-1:-1;3055:238:0;;;;;:::i;:::-;;:::i;27855:355::-;28002:4;-1:-1:-1;;;;;;28044:40:0;;-1:-1:-1;;;28044:40:0;;:105;;-1:-1:-1;;;;;;;28101:48:0;;-1:-1:-1;;;28101:48:0;28044:105;:158;;;-1:-1:-1;;;;;;;;;;26403:40:0;;;28166:36;28024:178;27855:355;-1:-1:-1;;27855:355:0:o;54581:656::-;52695:38;52592:10;52726:7;52695:38;:::i;:::-;54750:15;:49;;54728:116;;;;-1:-1:-1;;;54728:116:0;;9220:2:1;54728:116:0;;;9202:21:1;9259:2;9239:18;;;9232:30;-1:-1:-1;;;9278:18:1;;;9271:47;9335:18;;54728:116:0;;;;;;;;;52695:38;52592:10;52726:7;52695:38;:::i;:::-;52951:41;;52984:8;52951:41;:::i;:::-;54877:15;:46;54855:115;;;;-1:-1:-1;;;54855:115:0;;9566:2:1;54855:115:0;;;9548:21:1;9605:2;9585:18;;;9578:30;-1:-1:-1;;;9624:18:1;;;9617:49;9683:18;;54855:115:0;9364:343:1;54855:115:0;55070:3;55059:7;55042:14;;52447:3;52393:4;52495:33;;;;:::i;:::-;55028:28;;;;:::i;:::-;:38;;;;:::i;:::-;:45;;55020:71;;;;-1:-1:-1;;;55020:71:0;;10044:2:1;55020:71:0;;;10026:21:1;10083:2;10063:18;;;10056:30;-1:-1:-1;;;10102:18:1;;;10095:43;10155:18;;55020:71:0;9842:337:1;55020:71:0;55121:13;55137:24;55153:7;55137:15;:24::i;:::-;55121:40;;55172:57;55181:7;55190:2;55194:5;55201:19;;55222:6;;55172:8;:57::i;:::-;54688:549;54581:656;;;:::o;29024:100::-;29078:13;29111:5;29104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29024:100;:::o;30718:308::-;30839:7;34341:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34341:16:0;30864:110;;;;-1:-1:-1;;;30864:110:0;;10771:2:1;30864:110:0;;;10753:21:1;10810:2;10790:18;;;10783:30;10849:34;10829:18;;;10822:62;-1:-1:-1;;;10900:18:1;;;10893:42;10952:19;;30864:110:0;10569:408:1;30864:110:0;-1:-1:-1;30994:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30994:24:0;;30718:308::o;30241:411::-;30322:13;30338:23;30353:7;30338:14;:23::i;:::-;30322:39;;30386:5;-1:-1:-1;;;;;30380:11:0;:2;-1:-1:-1;;;;;30380:11:0;;30372:57;;;;-1:-1:-1;;;30372:57:0;;11184:2:1;30372:57:0;;;11166:21:1;11223:2;11203:18;;;11196:30;11262:34;11242:18;;;11235:62;-1:-1:-1;;;11313:18:1;;;11306:31;11354:19;;30372:57:0;10982:397:1;30372:57:0;30480:5;-1:-1:-1;;;;;30464:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30464:21:0;;:62;;;;30489:37;30506:5;30513:12;:10;:12::i;30489:37::-;30442:168;;;;-1:-1:-1;;;30442:168:0;;11586:2:1;30442:168:0;;;11568:21:1;11625:2;11605:18;;;11598:30;11664:34;11644:18;;;11637:62;11735:26;11715:18;;;11708:54;11779:19;;30442:168:0;11384:420:1;30442:168:0;30623:21;30632:2;30636:7;30623:8;:21::i;:::-;30311:341;30241:411;;:::o;49972:1148::-;50230:152;;;50173:12;50230:152;;;;;-1:-1:-1;;;;;50268:19:0;;50198:29;50268:19;;;:6;:19;;;;;;;;;50230:152;;;;;;;;;;;50417:45;50275:11;50230:152;50445:4;50451;50457;50417:6;:45::i;:::-;50395:128;;;;-1:-1:-1;;;50395:128:0;;12011:2:1;50395:128:0;;;11993:21:1;12050:2;12030:18;;;12023:30;12089:34;12069:18;;;12062:62;-1:-1:-1;;;12140:18:1;;;12133:31;12181:19;;50395:128:0;11809:397:1;50395:128:0;-1:-1:-1;;;;;50612:19:0;;;;;;:6;:19;;;;;;:23;;50634:1;50612:23;:::i;:::-;-1:-1:-1;;;;;50590:19:0;;;;;;:6;:19;;;;;;;:45;;;;50653:126;;;;;50597:11;;50725:10;;50751:17;;50653:126;:::i;:::-;;;;;;;;50890:12;50904:23;50939:4;-1:-1:-1;;;;;50931:18:0;50981:17;51000:11;50964:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50964:48:0;;;;;;;;;;50931:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50889:134;;;;51042:7;51034:48;;;;-1:-1:-1;;;51034:48:0;;13738:2:1;51034:48:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816;13796:18;;;13789:58;13864:18;;51034:48:0;13536:352:1;51034:48:0;51102:10;49972:1148;-1:-1:-1;;;;;;;;49972:1148:0:o;53484:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52764:92::-;52695:38;52592:10;52726:7;52695:38;:::i;:::-;52764:92;:::o;53916:657::-;52592:10;54150:15;:47;;54128:114;;;;-1:-1:-1;;;54128:114:0;;9220:2:1;54128:114:0;;;9202:21:1;9259:2;9239:18;;;9232:30;-1:-1:-1;;;9278:18:1;;;9271:47;9335:18;;54128:114:0;9018:341:1;54128:114:0;52695:38;52592:10;52726:7;52695:38;:::i;:::-;54275:15;:44;54253:113;;;;-1:-1:-1;;;54253:113:0;;9566:2:1;54253:113:0;;;9548:21:1;9605:2;9585:18;;;9578:30;-1:-1:-1;;;9624:18:1;;;9617:49;9683:18;;54253:113:0;9364:343:1;54253:113:0;54396:169;54419:7;54441:17;54445:13;54441:1;:17;:::i;:::-;54396:169;54501:32;;;;;;;:17;:32;;;;;;54396:169;;;53065:10;;54548:6;;54396:8;:169::i;31637:376::-;31846:41;31865:12;:10;:12::i;:::-;31879:7;31846:18;:41::i;:::-;31824:140;;;;-1:-1:-1;;;31824:140:0;;;;;;;:::i;:::-;31977:28;31987:4;31993:2;31997:7;31977:9;:28::i;57953:124::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;2219:6;;-1:-1:-1;;;;;2219:6:0;;2146:87;2366:7;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;:::-;58036:19:::1;:33:::0;57953:124::o;57453:198::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;2219:6;;-1:-1:-1;;;;;2219:6:0;;2146:87;2366:7;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;:::-;57521:21:::1;57561:11:::0;57553:43:::1;;;::::0;-1:-1:-1;;;57553:43:0;;15117:2:1;57553:43:0::1;::::0;::::1;15099:21:1::0;15156:2;15136:18;;;15129:30;-1:-1:-1;;;15175:18:1;;;15168:49;15234:18;;57553:43:0::1;14915:343:1::0;57553:43:0::1;2219:6:::0;;57609:34:::1;::::0;-1:-1:-1;;;;;2219:6:0;;;;57609:34;::::1;;;::::0;57635:7;;57609:34:::1;::::0;;;57635:7;2219:6;57609:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57492:159;57453:198::o:0;32084:185::-;32222:39;32239:4;32245:2;32249:7;32222:39;;;;;;;;;;;;:16;:39::i;42466:282::-;42598:41;42617:12;:10;:12::i;42598:41::-;42576:139;;;;-1:-1:-1;;;42576:139:0;;15465:2:1;42576:139:0;;;15447:21:1;15504:2;15484:18;;;15477:30;15543:34;15523:18;;;15516:62;-1:-1:-1;;;15594:18:1;;;15587:46;15650:19;;42576:139:0;15263:412:1;42576:139:0;42726:14;42732:7;42726:5;:14::i;:::-;42466:282;:::o;52457:71::-;52495:33;52447:3;52393:4;52495:33;:::i;28631:326::-;28748:7;28789:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28789:16:0;;28816:110;;;;-1:-1:-1;;;28816:110:0;;15882:2:1;28816:110:0;;;15864:21:1;15921:2;15901:18;;;15894:30;15960:34;15940:18;;;15933:62;-1:-1:-1;;;16011:18:1;;;16004:39;16060:19;;28816:110:0;15680:405:1;28274:295:0;28391:7;-1:-1:-1;;;;;28438:19:0;;28416:111;;;;-1:-1:-1;;;28416:111:0;;16292:2:1;28416:111:0;;;16274:21:1;16331:2;16311:18;;;16304:30;16370:34;16350:18;;;16343:62;-1:-1:-1;;;16421:18:1;;;16414:40;16471:19;;28416:111:0;16090:406:1;28416:111:0;-1:-1:-1;;;;;;28545:16:0;;;;;:9;:16;;;;;;;28274:295::o;2797:103::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;2219:6;;-1:-1:-1;;;;;2219:6:0;;2146:87;2366:7;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;:::-;2862:30:::1;2889:1;2862:18;:30::i;:::-;2797:103::o:0;29193:104::-;29249:13;29282:7;29275:14;;;;;:::i;31098:187::-;31225:52;31244:12;:10;:12::i;:::-;31258:8;31268;31225:18;:52::i;58085:118::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;2219:6;;-1:-1:-1;;;;;2219:6:0;;2146:87;2366:7;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;:::-;58165:16:::1;:30:::0;58085:118::o;55245:346::-;55441:7;55419:19;;:29;;;;:::i;:::-;55397:19;:51;55478:13;55494:24;55510:7;55494:15;:24::i;:::-;55478:40;;55529:54;55538:7;55547:2;55551:5;55558:16;;55576:6;;55529:8;:54::i;32340:365::-;32529:41;32548:12;:10;:12::i;:::-;32562:7;32529:18;:41::i;:::-;32507:140;;;;-1:-1:-1;;;32507:140:0;;;;;;;:::i;:::-;32658:39;32672:4;32678:2;32682:7;32691:5;32658:13;:39::i;57659:286::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;2219:6;;-1:-1:-1;;;;;2219:6:0;;2146:87;2366:7;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;:::-;57777:17:::1;57800:15;57777:20:::0;;;57800:15;::::1;57777:20:::0;:38;57857:15;::::1;;57834:20:::0;:38;57909:1:::1;57813;57891:20:::0;57914:15;::::1;;57891:20:::0;:38;57659:286::o;59062:352::-;59164:13;59279:14;59316:26;59333:8;59316:16;:26::i;:::-;59240:151;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59195:211;;59062:352;;;:::o;58372:643::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;2219:6;;-1:-1:-1;;;;;2219:6:0;;2146:87;2366:7;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;:::-;58477:1:::1;58459:15;:19;58451:52;;;::::0;-1:-1:-1;;;58451:52:0;;18384:2:1;58451:52:0::1;::::0;::::1;18366:21:1::0;18423:2;18403:18;;;18396:30;-1:-1:-1;;;18442:18:1;;;18435:50;18502:18;;58451:52:0::1;18182:344:1::0;58451:52:0::1;52695:38;52592:10;52726:7;52695:38;:::i;:::-;52951:41;::::0;52984:8:::1;52951:41;:::i;:::-;58538:15;:47;;58516:125;;;::::0;-1:-1:-1;;;58516:125:0;;18733:2:1;58516:125:0::1;::::0;::::1;18715:21:1::0;18772:2;18752:18;;;18745:30;18811;18791:18;;;18784:58;18859:18;;58516:125:0::1;18531:352:1::0;58516:125:0::1;58727:19;::::0;58785:14:::1;::::0;58703:21:::1;::::0;58785:36:::1;::::0;58727:19;;58785:36:::1;:::i;:::-;58757:64;;58873:17;58854:15;:36;;58832:109;;;::::0;-1:-1:-1;;;58832:109:0;;19090:2:1;58832:109:0::1;::::0;::::1;19072:21:1::0;19129:2;19109:18;;;19102:30;19168:25;19148:18;;;19141:53;19211:18;;58832:109:0::1;18888:347:1::0;58832:109:0::1;58976:31;58992:15:::0;58976:13;:31:::1;:::i;:::-;58954:19;:53:::0;-1:-1:-1;;;58372:643:0:o;56985:425::-;57048:7;57068:23;57125:7;57108:14;;52447:3;52393:4;52495:33;;;;:::i;:::-;57094:28;;;;:::i;:::-;:38;;;;:::i;:::-;57068:64;-1:-1:-1;57143:27:0;57173:21;57191:3;57068:64;57173:21;:::i;:::-;57143:51;-1:-1:-1;57209:23:0;;57205:101;;57271:23;57293:1;57271:19;:23;:::i;:::-;57249:45;;57205:101;57357:45;53194:11;57357:19;:45;:::i;:::-;57336:66;;53127:10;57336:66;:::i;:::-;57316:86;56985:425;-1:-1:-1;;;;56985:425:0:o;58211:153::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;2219:6;;-1:-1:-1;;;;;2219:6:0;;2146:87;2366:7;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;:::-;58324:32:::1;:14;58341:15:::0;;58324:32:::1;:::i;52887:105::-:0;52695:38;52592:10;52726:7;52695:38;:::i;:::-;52951:41;;52984:8;52951:41;:::i;3055:238::-;2377:12;:10;:12::i;:::-;-1:-1:-1;;;;;2366:23:0;:7;2219:6;;-1:-1:-1;;;;;2219:6:0;;2146:87;2366:7;-1:-1:-1;;;;;2366:23:0;;2358:68;;;;-1:-1:-1;;;2358:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3158:22:0;::::1;3136:110;;;::::0;-1:-1:-1;;;3136:110:0;;19872:2:1;3136:110:0::1;::::0;::::1;19854:21:1::0;19911:2;19891:18;;;19884:30;19950:34;19930:18;;;19923:62;-1:-1:-1;;;20001:18:1;;;19994:36;20047:19;;3136:110:0::1;19670:402:1::0;3136:110:0::1;3257:28;3276:8;3257:18;:28::i;45723:618::-:0;45767:22;45828:4;45806:10;:27;45802:508;;45850:18;45871:8;;45850:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;45910:8:0;46121:17;46115:24;-1:-1:-1;;;;;46089:134:0;;-1:-1:-1;45802:508:0;;-1:-1:-1;45802:508:0;;-1:-1:-1;46287:10:0;45802:508;45723:618;:::o;15480:326::-;-1:-1:-1;;;;;15775:19:0;;:23;;;15480:326::o;55599:963::-;55830:1;55820:7;:11;55812:39;;;;-1:-1:-1;;;55812:39:0;;20279:2:1;55812:39:0;;;20261:21:1;20318:2;20298:18;;;20291:30;-1:-1:-1;;;20337:18:1;;;20330:45;20392:18;;55812:39:0;20077:339:1;55812:39:0;55870:11;55862:54;;;;-1:-1:-1;;;55862:54:0;;20623:2:1;55862:54:0;;;20605:21:1;20662:2;20642:18;;;20635:30;-1:-1:-1;;;20681:18:1;;;20674:46;20737:18;;55862:54:0;20421:340:1;55862:54:0;55981:146;56018:6;;55981:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56083:28:0;;-1:-1:-1;;56100:10:0;20915:2:1;20911:15;20907:53;56083:28:0;;;20895:66:1;56043:11:0;;-1:-1:-1;20977:12:1;;;-1:-1:-1;56083:28:0;;;;;;;;;;;;56073:39;;;;;;55981:18;:146::i;:::-;55959:219;;;;-1:-1:-1;;;55959:219:0;;21202:2:1;55959:219:0;;;21184:21:1;21241:2;21221:18;;;21214:30;21280:25;21260:18;;;21253:53;21323:18;;55959:219:0;21000:347:1;55959:219:0;56236:16;56246:6;56236:7;:16;:::i;:::-;56223:9;:29;56215:55;;;;-1:-1:-1;;;56215:55:0;;21554:2:1;56215:55:0;;;21536:21:1;21593:2;21573:18;;;21566:30;-1:-1:-1;;;21612:18:1;;;21605:43;21665:18;;56215:55:0;21352:337:1;56215:55:0;56364:10;56327:21;56351:24;;;:12;:24;;;;;;:34;;56378:7;;56351:34;:::i;:::-;56327:58;;56421:8;56404:13;:25;;56396:64;;;;-1:-1:-1;;;56396:64:0;;21896:2:1;56396:64:0;;;21878:21:1;21935:2;21915:18;;;21908:30;21974:28;21954:18;;;21947:56;22020:18;;56396:64:0;21694:350:1;56396:64:0;56484:10;56471:24;;;;:12;:24;;;;;:40;;;56541:13;56546:7;56541:4;:13::i;:::-;55776:786;55599:963;;;;;;:::o;59422:113::-;59476:7;59503:24;:22;:24::i;:::-;59496:31;;59422:113;:::o;38539:174::-;38614:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38614:29:0;-1:-1:-1;;;;;38614:29:0;;;;;;;;:24;;38668:23;38614:24;38668:14;:23::i;:::-;-1:-1:-1;;;;;38659:46:0;;;;;;;;;;;38539:174;;:::o;51661:486::-;51839:4;-1:-1:-1;;;;;51864:20:0;;51856:70;;;;-1:-1:-1;;;51856:70:0;;22251:2:1;51856:70:0;;;22233:21:1;22290:2;22270:18;;;22263:30;22329:34;22309:18;;;22302:62;-1:-1:-1;;;22380:18:1;;;22373:35;22425:19;;51856:70:0;22049:401:1;51856:70:0;51980:159;52008:47;52027:27;52047:6;52027:19;:27::i;:::-;52008:18;:47::i;:::-;51980:159;;;;;;;;;;;;22682:25:1;;;;22755:4;22743:17;;22723:18;;;22716:45;22777:18;;;22770:34;;;22820:18;;;22813:34;;;22654:19;;51980:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51957:182:0;:6;-1:-1:-1;;;;;51957:182:0;;51937:202;;51661:486;;;;;;;:::o;34546:452::-;34675:4;34341:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34341:16:0;34697:110;;;;-1:-1:-1;;;34697:110:0;;23060:2:1;34697:110:0;;;23042:21:1;23099:2;23079:18;;;23072:30;23138:34;23118:18;;;23111:62;-1:-1:-1;;;23189:18:1;;;23182:42;23241:19;;34697:110:0;22858:408:1;34697:110:0;34818:13;34834:23;34849:7;34834:14;:23::i;:::-;34818:39;;34887:5;-1:-1:-1;;;;;34876:16:0;:7;-1:-1:-1;;;;;34876:16:0;;:65;;;-1:-1:-1;;;;;;31527:25:0;;;31498:4;31527:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34909:32;34876:113;;;;34982:7;-1:-1:-1;;;;;34958:31:0;:20;34970:7;34958:11;:20::i;:::-;-1:-1:-1;;;;;34958:31:0;;34868:122;34546:452;-1:-1:-1;;;;34546:452:0:o;37759:662::-;37932:4;-1:-1:-1;;;;;37905:31:0;:23;37920:7;37905:14;:23::i;:::-;-1:-1:-1;;;;;37905:31:0;;37883:118;;;;-1:-1:-1;;;37883:118:0;;23473:2:1;37883:118:0;;;23455:21:1;23512:2;23492:18;;;23485:30;23551:34;23531:18;;;23524:62;-1:-1:-1;;;23602:18:1;;;23595:35;23647:19;;37883:118:0;23271:401:1;37883:118:0;-1:-1:-1;;;;;38020:16:0;;38012:65;;;;-1:-1:-1;;;38012:65:0;;23879:2:1;38012:65:0;;;23861:21:1;23918:2;23898:18;;;23891:30;23957:34;23937:18;;;23930:62;-1:-1:-1;;;24008:18:1;;;24001:34;24052:19;;38012:65:0;23677:400:1;38012:65:0;38194:29;38211:1;38215:7;38194:8;:29::i;:::-;-1:-1:-1;;;;;38236:15:0;;;;;;:9;:15;;;;;:20;;38255:1;;38236:15;:20;;38255:1;;38236:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38267:13:0;;;;;;:9;:13;;;;;:18;;38284:1;;38267:13;:18;;38284:1;;38267:18;:::i;:::-;;;;-1:-1:-1;;38296:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38296:21:0;-1:-1:-1;;;;;38296:21:0;;;;;;;;;38335:27;;38296:16;;38335:27;;;;;;;30311:341;30241:411;;:::o;37002:420::-;37062:13;37078:23;37093:7;37078:14;:23::i;:::-;37062:39;;37203:29;37220:1;37224:7;37203:8;:29::i;:::-;-1:-1:-1;;;;;37245:16:0;;;;;;:9;:16;;;;;:21;;37265:1;;37245:16;:21;;37265:1;;37245:21;:::i;:::-;;;;-1:-1:-1;;37284:16:0;;;;:7;:16;;;;;;37277:23;;-1:-1:-1;;;;;;37277:23:0;;;37318:36;37292:7;;37284:16;-1:-1:-1;;;;;37318:36:0;;;;;37284:16;;37318:36;57609:34:::1;57492:159;57453:198::o:0;3453:191::-;3546:6;;;-1:-1:-1;;;;;3563:17:0;;;-1:-1:-1;;;;;;3563:17:0;;;;;;;3596:40;;3546:6;;;3563:17;3546:6;;3596:40;;3527:16;;3596:40;3516:128;3453:191;:::o;38855:315::-;39010:8;-1:-1:-1;;;;;39001:17:0;:5;-1:-1:-1;;;;;39001:17:0;;38993:55;;;;-1:-1:-1;;;38993:55:0;;24284:2:1;38993:55:0;;;24266:21:1;24323:2;24303:18;;;24296:30;24362:27;24342:18;;;24335:55;24407:18;;38993:55:0;24082:349:1;38993:55:0;-1:-1:-1;;;;;39059:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39059:46:0;;;;;;;;;;39121:41;;1070::1;;;39121::0;;1043:18:1;39121:41:0;;;;;;;38855:315;;;:::o;33587:352::-;33744:28;33754:4;33760:2;33764:7;33744:9;:28::i;:::-;33805:48;33828:4;33834:2;33838:7;33847:5;33805:22;:48::i;:::-;33783:148;;;;-1:-1:-1;;;33783:148:0;;;;;;;:::i;23586:723::-;23642:13;23863:5;23872:1;23863:10;23859:53;;-1:-1:-1;;23890:10:0;;;;;;;;;;;;-1:-1:-1;;;23890:10:0;;;;;23586:723::o;23859:53::-;23937:5;23922:12;23978:78;23985:9;;23978:78;;24011:8;;;;:::i;:::-;;-1:-1:-1;24034:10:0;;-1:-1:-1;24042:2:0;24034:10;;:::i;:::-;;;23978:78;;;24066:19;24098:6;24088:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24088:17:0;;24066:39;;24116:154;24123:10;;24116:154;;24150:11;24160:1;24150:11;;:::i;:::-;;-1:-1:-1;24219:10:0;24227:2;24219:5;:10;:::i;:::-;24206:24;;:2;:24;:::i;:::-;24193:39;;24176:6;24183;24176:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24176:56:0;;;;;;;;-1:-1:-1;24247:11:0;24256:2;24247:11;;:::i;:::-;;;24116:154;;43979:190;44104:4;44157;44128:25;44141:5;44148:4;44128:12;:25::i;:::-;:33;;43979:190;-1:-1:-1;;;;43979:190:0:o;56570:407::-;5467:1;6065:7;;:19;6057:63;;;;-1:-1:-1;;;6057:63:0;;25314:2:1;6057:63:0;;;25296:21:1;25353:2;25333:18;;;25326:30;25392:33;25372:18;;;25365:61;25443:18;;6057:63:0;25112:355:1;6057:63:0;5467:1;6198:7;:18;56666:14:::1;::::0;56708:32:::1;56733:7:::0;56666:14;56708:32:::1;:::i;:::-;56691:14;:49:::0;56753:20:::1;56776:39;56793:22:::0;52393:4:::1;56776:39;:::i;:::-;56753:62;;56831:9;56826:144;56850:7;56846:1;:11;56826:144;;;56879:15;56897:16;56912:1:::0;56897:12;:16:::1;:::i;:::-;56879:34;;56928:30;56938:10;56950:7;56928:9;:30::i;:::-;-1:-1:-1::0;56859:3:0;::::1;::::0;::::1;:::i;:::-;;;;56826:144;;;-1:-1:-1::0;;5423:1:0;6377:7;:22;-1:-1:-1;;56570:407:0:o;51128:410::-;51238:7;49296:108;;;;;;;;;;;;;;;;;49272:143;;;;;;;51392:12;;51427:11;;;;51471:24;;;;;51461:35;;;;;;51311:204;;;;;25703:25:1;;;25759:2;25744:18;;25737:34;;;;-1:-1:-1;;;;;25807:32:1;25802:2;25787:18;;25780:60;25871:2;25856:18;;25849:34;25690:3;25675:19;;25472:417;51311:204:0;;;;;;;;;;;;;51283:247;;;;;;51263:267;;51128:410;;;:::o;48698:258::-;48797:7;48899:20;48137:15;;;48059:101;48899:20;48870:63;;-1:-1:-1;;;48870:63:0;;;26152:27:1;26195:11;;;26188:27;;;;26231:12;;;26224:28;;;26268:12;;48870:63:0;25894:392:1;39735:980:0;39890:4;-1:-1:-1;;;;;39911:13:0;;15775:19;:23;39907:801;;39980:2;-1:-1:-1;;;;;39964:36:0;;40023:12;:10;:12::i;:::-;40058:4;40085:7;40115:5;39964:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39964:175:0;;;;;;;;-1:-1:-1;;39964:175:0;;;;;;;;;;;;:::i;:::-;;;39943:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40322:6;:13;40339:1;40322:18;40318:320;;40365:108;;-1:-1:-1;;;40365:108:0;;;;;;;:::i;40318:320::-;40588:6;40582:13;40573:6;40569:2;40565:15;40558:38;39943:710;-1:-1:-1;;;;;;40203:51:0;-1:-1:-1;;;40203:51:0;;-1:-1:-1;40196:58:0;;39907:801;-1:-1:-1;40692:4:0;39735:980;;;;;;:::o;44530:707::-;44640:7;44688:4;44640:7;44703:497;44727:5;:12;44723:1;:16;44703:497;;;44761:20;44784:5;44790:1;44784:8;;;;;;;;:::i;:::-;;;;;;;44761:31;;44827:12;44811;:28;44807:382;;45340:13;45395:15;;;45431:4;45424:15;;;45478:4;45462:21;;44939:57;;44807:382;;;45340:13;45395:15;;;45431:4;45424:15;;;45478:4;45462:21;;45116:57;;44807:382;-1:-1:-1;44741:3:0;;;;:::i;:::-;;;;44703:497;;;-1:-1:-1;45217:12:0;44530:707;-1:-1:-1;;;44530:707:0:o;35340:110::-;35416:26;35426:2;35430:7;35416:26;;;;;;;;;;;;35807:18;35813:2;35817:7;35807:5;:18::i;:::-;35858:54;35889:1;35893:2;35897:7;35906:5;35858:22;:54::i;:::-;35836:154;;;;-1:-1:-1;;;35836:154:0;;;;;;;:::i;36334:439::-;-1:-1:-1;;;;;36414:16:0;;36406:61;;;;-1:-1:-1;;;36406:61:0;;27241:2:1;36406:61:0;;;27223:21:1;;;27260:18;;;27253:30;27319:34;27299:18;;;27292:62;27371:18;;36406:61:0;27039:356:1;36406:61:0;34317:4;34341:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34341:16:0;:30;36478:58;;;;-1:-1:-1;;;36478:58:0;;27602:2:1;36478:58:0;;;27584:21:1;27641:2;27621:18;;;27614:30;27680;27660:18;;;27653:58;27728:18;;36478:58:0;27400:352:1;36478:58:0;-1:-1:-1;;;;;36607:13:0;;;;;;:9;:13;;;;;:18;;36624:1;;36607:13;:18;;36624:1;;36607:18;:::i;:::-;;;;-1:-1:-1;;36636:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36636:21:0;-1:-1:-1;;;;;36636:21:0;;;;;;;;36675:33;;36636:16;;;36675:33;;36636:16;;36675:33;57609:34:::1;57492:159;57453:198::o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:156:1;80:20;;140:4;129:16;;119:27;;109:55;;160:1;157;150:12;109:55;14:156;;;:::o;175:182::-;232:6;285:2;273:9;264:7;260:23;256:32;253:52;;;301:1;298;291:12;253:52;324:27;341:9;324:27;:::i;:::-;314:37;175:182;-1:-1:-1;;;175:182:1:o;544:131::-;-1:-1:-1;;;;;;618:32:1;;608:43;;598:71;;665:1;662;655:12;680:245;738:6;791:2;779:9;770:7;766:23;762:32;759:52;;;807:1;804;797:12;759:52;846:9;833:23;865:30;889:5;865:30;:::i;1304:367::-;1367:8;1377:6;1431:3;1424:4;1416:6;1412:17;1408:27;1398:55;;1449:1;1446;1439:12;1398:55;-1:-1:-1;1472:20:1;;1515:18;1504:30;;1501:50;;;1547:1;1544;1537:12;1501:50;1584:4;1576:6;1572:17;1560:29;;1644:3;1637:4;1627:6;1624:1;1620:14;1612:6;1608:27;1604:38;1601:47;1598:67;;;1661:1;1658;1651:12;1598:67;1304:367;;;;;:::o;1676:505::-;1771:6;1779;1787;1840:2;1828:9;1819:7;1815:23;1811:32;1808:52;;;1856:1;1853;1846:12;1808:52;1892:9;1879:23;1869:33;;1953:2;1942:9;1938:18;1925:32;1980:18;1972:6;1969:30;1966:50;;;2012:1;2009;2002:12;1966:50;2051:70;2113:7;2104:6;2093:9;2089:22;2051:70;:::i;:::-;1676:505;;2140:8;;-1:-1:-1;2025:96:1;;-1:-1:-1;;;;1676:505:1:o;2186:258::-;2258:1;2268:113;2282:6;2279:1;2276:13;2268:113;;;2358:11;;;2352:18;2339:11;;;2332:39;2304:2;2297:10;2268:113;;;2399:6;2396:1;2393:13;2390:48;;;-1:-1:-1;;2434:1:1;2416:16;;2409:27;2186:258::o;2449:::-;2491:3;2529:5;2523:12;2556:6;2551:3;2544:19;2572:63;2628:6;2621:4;2616:3;2612:14;2605:4;2598:5;2594:16;2572:63;:::i;:::-;2689:2;2668:15;-1:-1:-1;;2664:29:1;2655:39;;;;2696:4;2651:50;;2449:258;-1:-1:-1;;2449:258:1:o;2712:220::-;2861:2;2850:9;2843:21;2824:4;2881:45;2922:2;2911:9;2907:18;2899:6;2881:45;:::i;2937:180::-;2996:6;3049:2;3037:9;3028:7;3024:23;3020:32;3017:52;;;3065:1;3062;3055:12;3017:52;-1:-1:-1;3088:23:1;;2937:180;-1:-1:-1;2937:180:1:o;3330:173::-;3398:20;;-1:-1:-1;;;;;3447:31:1;;3437:42;;3427:70;;3493:1;3490;3483:12;3508:254;3576:6;3584;3637:2;3625:9;3616:7;3612:23;3608:32;3605:52;;;3653:1;3650;3643:12;3605:52;3676:29;3695:9;3676:29;:::i;:::-;3666:39;3752:2;3737:18;;;;3724:32;;-1:-1:-1;;;3508:254:1:o;3767:127::-;3828:10;3823:3;3819:20;3816:1;3809:31;3859:4;3856:1;3849:15;3883:4;3880:1;3873:15;3899:718;3941:5;3994:3;3987:4;3979:6;3975:17;3971:27;3961:55;;4012:1;4009;4002:12;3961:55;4048:6;4035:20;4074:18;4111:2;4107;4104:10;4101:36;;;4117:18;;:::i;:::-;4192:2;4186:9;4160:2;4246:13;;-1:-1:-1;;4242:22:1;;;4266:2;4238:31;4234:40;4222:53;;;4290:18;;;4310:22;;;4287:46;4284:72;;;4336:18;;:::i;:::-;4376:10;4372:2;4365:22;4411:2;4403:6;4396:18;4457:3;4450:4;4445:2;4437:6;4433:15;4429:26;4426:35;4423:55;;;4474:1;4471;4464:12;4423:55;4538:2;4531:4;4523:6;4519:17;4512:4;4504:6;4500:17;4487:54;4585:1;4578:4;4573:2;4565:6;4561:15;4557:26;4550:37;4605:6;4596:15;;;;;;3899:718;;;;:::o;4622:602::-;4724:6;4732;4740;4748;4756;4809:3;4797:9;4788:7;4784:23;4780:33;4777:53;;;4826:1;4823;4816:12;4777:53;4849:29;4868:9;4849:29;:::i;:::-;4839:39;;4929:2;4918:9;4914:18;4901:32;4956:18;4948:6;4945:30;4942:50;;;4988:1;4985;4978:12;4942:50;5011:49;5052:7;5043:6;5032:9;5028:22;5011:49;:::i;:::-;5001:59;;;5107:2;5096:9;5092:18;5079:32;5069:42;;5158:2;5147:9;5143:18;5130:32;5120:42;;5181:37;5213:3;5202:9;5198:19;5181:37;:::i;:::-;5171:47;;4622:602;;;;;;;;:::o;5452:575::-;5554:6;5562;5570;5578;5631:2;5619:9;5610:7;5606:23;5602:32;5599:52;;;5647:1;5644;5637:12;5599:52;5683:9;5670:23;5660:33;;5712:36;5744:2;5733:9;5729:18;5712:36;:::i;:::-;5702:46;;5799:2;5788:9;5784:18;5771:32;5826:18;5818:6;5815:30;5812:50;;;5858:1;5855;5848:12;5812:50;5897:70;5959:7;5950:6;5939:9;5935:22;5897:70;:::i;:::-;5452:575;;;;-1:-1:-1;5986:8:1;-1:-1:-1;;;;5452:575:1:o;6032:328::-;6109:6;6117;6125;6178:2;6166:9;6157:7;6153:23;6149:32;6146:52;;;6194:1;6191;6184:12;6146:52;6217:29;6236:9;6217:29;:::i;:::-;6207:39;;6265:38;6299:2;6288:9;6284:18;6265:38;:::i;:::-;6255:48;;6350:2;6339:9;6335:18;6322:32;6312:42;;6032:328;;;;;:::o;6365:186::-;6424:6;6477:2;6465:9;6456:7;6452:23;6448:32;6445:52;;;6493:1;6490;6483:12;6445:52;6516:29;6535:9;6516:29;:::i;6741:347::-;6806:6;6814;6867:2;6855:9;6846:7;6842:23;6838:32;6835:52;;;6883:1;6880;6873:12;6835:52;6906:29;6925:9;6906:29;:::i;:::-;6896:39;;6985:2;6974:9;6970:18;6957:32;7032:5;7025:13;7018:21;7011:5;7008:32;6998:60;;7054:1;7051;7044:12;6998:60;7077:5;7067:15;;;6741:347;;;;;:::o;7093:537::-;7188:6;7196;7204;7212;7265:3;7253:9;7244:7;7240:23;7236:33;7233:53;;;7282:1;7279;7272:12;7233:53;7305:29;7324:9;7305:29;:::i;:::-;7295:39;;7353:38;7387:2;7376:9;7372:18;7353:38;:::i;:::-;7343:48;;7438:2;7427:9;7423:18;7410:32;7400:42;;7493:2;7482:9;7478:18;7465:32;7520:18;7512:6;7509:30;7506:50;;;7552:1;7549;7542:12;7506:50;7575:49;7616:7;7607:6;7596:9;7592:22;7575:49;:::i;:::-;7565:59;;;7093:537;;;;;;;:::o;7635:251::-;7719:6;7772:2;7760:9;7751:7;7747:23;7743:32;7740:52;;;7788:1;7785;7778:12;7740:52;7827:7;7822:2;7811:9;7807:18;7804:31;7801:51;;;7848:1;7845;7838:12;7801:51;-1:-1:-1;7871:9:1;7635:251;-1:-1:-1;7635:251:1:o;7891:592::-;7962:6;7970;8023:2;8011:9;8002:7;7998:23;7994:32;7991:52;;;8039:1;8036;8029:12;7991:52;8079:9;8066:23;8108:18;8149:2;8141:6;8138:14;8135:34;;;8165:1;8162;8155:12;8135:34;8203:6;8192:9;8188:22;8178:32;;8248:7;8241:4;8237:2;8233:13;8229:27;8219:55;;8270:1;8267;8260:12;8219:55;8310:2;8297:16;8336:2;8328:6;8325:14;8322:34;;;8352:1;8349;8342:12;8322:34;8397:7;8392:2;8383:6;8379:2;8375:15;8371:24;8368:37;8365:57;;;8418:1;8415;8408:12;8365:57;8449:2;8441:11;;;;;8471:6;;-1:-1:-1;7891:592:1;;-1:-1:-1;;;;7891:592:1:o;8488:260::-;8556:6;8564;8617:2;8605:9;8596:7;8592:23;8588:32;8585:52;;;8633:1;8630;8623:12;8585:52;8656:29;8675:9;8656:29;:::i;:::-;8646:39;;8704:38;8738:2;8727:9;8723:18;8704:38;:::i;:::-;8694:48;;8488:260;;;;;:::o;8753:127::-;8814:10;8809:3;8805:20;8802:1;8795:31;8845:4;8842:1;8835:15;8869:4;8866:1;8859:15;8885:128;8925:3;8956:1;8952:6;8949:1;8946:13;8943:39;;;8962:18;;:::i;:::-;-1:-1:-1;8998:9:1;;8885:128::o;9712:125::-;9752:4;9780:1;9777;9774:8;9771:34;;;9785:18;;:::i;:::-;-1:-1:-1;9822:9:1;;9712:125::o;10184:380::-;10263:1;10259:12;;;;10306;;;10327:61;;10381:4;10373:6;10369:17;10359:27;;10327:61;10434:2;10426:6;10423:14;10403:18;10400:38;10397:161;;10480:10;10475:3;10471:20;10468:1;10461:31;10515:4;10512:1;10505:15;10543:4;10540:1;10533:15;12211:432;-1:-1:-1;;;;;12468:15:1;;;12450:34;;12520:15;;12515:2;12500:18;;12493:43;12572:2;12567;12552:18;;12545:30;;;12393:4;;12592:45;;12618:18;;12610:6;12592:45;:::i;:::-;12584:53;12211:432;-1:-1:-1;;;;;12211:432:1:o;12648:184::-;12689:3;12727:5;12721:12;12742:52;12787:6;12782:3;12775:4;12768:5;12764:16;12742:52;:::i;:::-;12810:16;;;;;12648:184;-1:-1:-1;;12648:184:1:o;12837:415::-;12994:3;13032:6;13026:13;13048:53;13094:6;13089:3;13082:4;13074:6;13070:17;13048:53;:::i;:::-;13170:2;13166:15;;;;-1:-1:-1;;13162:53:1;13123:16;;;;13148:68;;;13243:2;13232:14;;12837:415;-1:-1:-1;;12837:415:1:o;13257:274::-;13386:3;13424:6;13418:13;13440:53;13486:6;13481:3;13474:4;13466:6;13462:17;13440:53;:::i;:::-;13509:16;;;;;13257:274;-1:-1:-1;;13257:274:1:o;13893:238::-;13931:7;13971:4;13968:1;13964:12;14003:4;14000:1;13996:12;14063:3;14057:4;14053:14;14048:3;14045:23;14038:3;14031:11;14024:19;14020:49;14017:75;;;14072:18;;:::i;:::-;14112:13;;13893:238;-1:-1:-1;;;13893:238:1:o;14136:413::-;14338:2;14320:21;;;14377:2;14357:18;;;14350:30;14416:34;14411:2;14396:18;;14389:62;-1:-1:-1;;;14482:2:1;14467:18;;14460:47;14539:3;14524:19;;14136:413::o;14554:356::-;14756:2;14738:21;;;14775:18;;;14768:30;14834:34;14829:2;14814:18;;14807:62;14901:2;14886:18;;14554:356::o;16501:127::-;16562:10;16557:3;16553:20;16550:1;16543:31;16593:4;16590:1;16583:15;16617:4;16614:1;16607:15;16877:1300;17154:3;17183:1;17216:6;17210:13;17246:3;17268:1;17296:9;17292:2;17288:18;17278:28;;17356:2;17345:9;17341:18;17378;17368:61;;17422:4;17414:6;17410:17;17400:27;;17368:61;17448:2;17496;17488:6;17485:14;17465:18;17462:38;17459:165;;-1:-1:-1;;;17523:33:1;;17579:4;17576:1;17569:15;17609:4;17530:3;17597:17;17459:165;17640:18;17667:104;;;;17785:1;17780:320;;;;17633:467;;17667:104;-1:-1:-1;;17700:24:1;;17688:37;;17745:16;;;;-1:-1:-1;17667:104:1;;17780:320;16706:1;16699:14;;;16743:4;16730:18;;17875:1;17889:165;17903:6;17900:1;17897:13;17889:165;;;17981:14;;17968:11;;;17961:35;18024:16;;;;17918:10;;17889:165;;;17893:3;;18083:6;18078:3;18074:16;18067:23;;17633:467;;;;;;;18116:55;18141:29;18166:3;18158:6;18141:29;:::i;:::-;-1:-1:-1;;;16819:20:1;;16864:1;16855:11;;16759:113;19240:127;19301:10;19296:3;19292:20;19289:1;19282:31;19332:4;19329:1;19322:15;19356:4;19353:1;19346:15;19372:120;19412:1;19438;19428:35;;19443:18;;:::i;:::-;-1:-1:-1;19477:9:1;;19372:120::o;19497:168::-;19537:7;19603:1;19599;19595:6;19591:14;19588:1;19585:21;19580:1;19573:9;19566:17;19562:45;19559:71;;;19610:18;;:::i;:::-;-1:-1:-1;19650:9:1;;19497:168::o;24436:414::-;24638:2;24620:21;;;24677:2;24657:18;;;24650:30;24716:34;24711:2;24696:18;;24689:62;-1:-1:-1;;;24782:2:1;24767:18;;24760:48;24840:3;24825:19;;24436:414::o;24855:135::-;24894:3;24915:17;;;24912:43;;24935:18;;:::i;:::-;-1:-1:-1;24982:1:1;24971:13;;24855:135::o;24995:112::-;25027:1;25053;25043:35;;25058:18;;:::i;:::-;-1:-1:-1;25092:9:1;;24995:112::o;26291:489::-;-1:-1:-1;;;;;26560:15:1;;;26542:34;;26612:15;;26607:2;26592:18;;26585:43;26659:2;26644:18;;26637:34;;;26707:3;26702:2;26687:18;;26680:31;;;26485:4;;26728:46;;26754:19;;26746:6;26728:46;:::i;:::-;26720:54;26291:489;-1:-1:-1;;;;;;26291:489:1:o;26785:249::-;26854:6;26907:2;26895:9;26886:7;26882:23;26878:32;26875:52;;;26923:1;26920;26913:12;26875:52;26955:9;26949:16;26974:30;26998:5;26974:30;:::i

Swarm Source

ipfs://3a15d8a478d7aeda1a3e8400044ae2a6e861ccdbe80db7c07d6e1d73b18b67da
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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