ETH Price: $3,355.92 (-1.76%)
Gas: 8 Gwei

Token

Dirtybird Flight Club (DFC)
 

Overview

Max Total Supply

9,090 DFC

Holders

3,504

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
scojo.eth
Balance
1 DFC
0xC29398148b9ACEC3e23F43d26Fa6F57cc0355a6E
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dirtybird Flight Club is a community of 9090 birds generated from over 250 unique traits brought to life by world renowned muralist [Birdcap](https://twitter.com/birdcapstuff). Each bird flies through the metaverse creating mischief and unlocking powerful utility inside the Dirtybird family. Dirtybird is [Claude VonStroke](https://twitter.com/VonStroke)'s 16 year old innovative house music label with quirky ideas, bass-driven funk, and a crew of humble characters who like to have fun. Dirtybird Flight Club → [@DirtybirdArt](https://twitter.com/Dirtybirdart)

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DirtybirdFlightClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 5 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : Context.sol
// SPDX-License-Identifier: MIT

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 10 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

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 11 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 12 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

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 13 of 13 : Dirtybird.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract DirtybirdFlightClub is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_PRIVATE = 2727;
    uint256 public constant MAX_PRESALE = 2727;
    uint256 public constant MAX_BIRDS = 9090;
    uint256 public constant PRICE = 0.06 ether;

    // configurable
    uint256 public MAX_PER_MINT = 20;
    uint256 public PRESALE_MAX_MINT = 3;

    uint256 public presaleAmountMinted;
    uint256 public privateAmountMinted;

    address db1 = 0xfD9b840402BD13eFB3AFAf7A00d6C824D1CbCA7B;
    address db2 = 0x3DC66C468Ba01F72952Ce2c430b0053b2AbD5774;
    address db3 = 0x7d5c64A93Ae6a913bB9f91dfE6B5CF206B0a0070;
    address db4 = 0xe24290080c028Df40fAc019A395da2ACd392aec3;
    address dev1 = 0x273Dc0347CB3AbA026F8A4704B1E1a81a3647Cf3;
    address dev2 = 0xD2Bf76BA687109FbEafE59307EFcdaAB77177425;

    string public baseTokenURI;

    bool public publicSaleStarted = false;
    bool public presaleStarted = false;

    mapping(address => bool) private _allowList;
    mapping(address => uint256) private _totalClaimed;

    event PresaleMint(address minter, uint256 amountOfBirds);
    event PublicSaleMint(address minter, uint256 amountOfBirds);
    event PublicSaleChanged(bool status);
    event PresaleChanged(bool status);

    constructor(string memory baseURI) ERC721("Dirtybird Flight Club", "DFC") {
        baseTokenURI = baseURI;
    }

    function addToAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");
            _allowList[addresses[i]] = true;
            _totalClaimed[addresses[i]] > 0 ? _totalClaimed[addresses[i]] : 0;
        }
    }

    function isOnAllowList(address addr) external view returns (bool) {
        return _allowList[addr];
    }

    function mintAllowList(uint256 amountOfBirds) external payable {
        require(!publicSaleStarted && presaleStarted, "PRESALE_CLOSED");
        require(totalSupply() < MAX_BIRDS, "SOLD_OUT");
        require(
            _totalClaimed[msg.sender] + amountOfBirds <= PRESALE_MAX_MINT,
            "EXCEED_PRESALE_MAX_MINT"
        );
        require(
            privateAmountMinted + amountOfBirds <= MAX_PRIVATE,
            "EXCEED_PRIVATE_SALE"
        );
        require(_allowList[msg.sender], "NOT_IN_ALLOW_LIST");
        require(PRICE * amountOfBirds >= msg.value, "INSUFFICIENT_ETH");

        for (uint256 i = 0; i < amountOfBirds; i++) {
            privateAmountMinted++;
            _totalClaimed[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function mintPresale(uint256 amountOfBirds) external payable {
        require(!publicSaleStarted && presaleStarted, "PRESALE_CLOSED");
        require(totalSupply() < MAX_BIRDS, "SOLD_OUT");
        require(
            _totalClaimed[msg.sender] + amountOfBirds <= PRESALE_MAX_MINT,
            "EXCEED_PRESALE_MAX_MINT"
        );
        require(
            presaleAmountMinted + amountOfBirds <= MAX_PRESALE,
            "EXCEED_PRESALE"
        );
        require(PRICE * amountOfBirds >= msg.value, "INSUFFICIENT_ETH");

        for (uint256 i = 0; i < amountOfBirds; i++) {
            presaleAmountMinted++;
            _totalClaimed[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function mint(uint256 amountOfBirds) external payable {
        require(publicSaleStarted && !presaleStarted, "PUBLIC_SALE_CLOSED");
        require(totalSupply() < MAX_BIRDS, "SOLD_OUT");
        require(
            totalSupply() + amountOfBirds <= MAX_BIRDS,
            "EXCEEDS_MAX_SUPPLY"
        );
        require(amountOfBirds <= MAX_PER_MINT, "EXCEEDS_MAX_PER_TRANSACTION");
        require(PRICE * amountOfBirds >= msg.value, "INSUFFICIENT_ETH");

        for (uint256 i = 0; i < amountOfBirds; i++) {
            _totalClaimed[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function togglePresaleStarted() external onlyOwner {
        presaleStarted = !presaleStarted;
        emit PresaleChanged(presaleStarted);
    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
        emit PublicSaleChanged(publicSaleStarted);
    }

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

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

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(db2).transfer((balance * 15) / 100);
        payable(db3).transfer((balance * 5) / 100);
        payable(db4).transfer((balance * 5) / 100);
        payable(dev1).transfer((balance * 125) / 1000);
        payable(dev2).transfer((balance * 125) / 1000);
        payable(db1).transfer(address(this).balance);
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function setPerWalletMax(uint256 number) public onlyOwner {
        PRESALE_MAX_MINT = number;
    }

    function setPerTransactionMax(uint256 number) public onlyOwner {
        MAX_PER_MINT = number;
    }

    function devMint(address addr, uint256 amountOfBirds) external onlyOwner {
        require(totalSupply() + amountOfBirds <= MAX_BIRDS, "SOLD_OUT");

        for (uint256 i = 0; i < amountOfBirds; i++) {
            _safeMint(addr, totalSupply() + 1);
        }
    }
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"PresaleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfBirds","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"PublicSaleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfBirds","type":"uint256"}],"name":"PublicSaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BIRDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amountOfBirds","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isOnAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfBirds","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfBirds","type":"uint256"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfBirds","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setPerTransactionMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setPerWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526014600b556003600c5573fd9b840402bd13efb3afaf7a00d6c824d1cbca7b600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733dc66c468ba01f72952ce2c430b0053b2abd5774601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737d5c64a93ae6a913bb9f91dfe6b5cf206b0a0070601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e24290080c028df40fac019a395da2acd392aec3601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073273dc0347cb3aba026f8a4704b1e1a81a3647cf3601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d2bf76ba687109fbeafe59307efcdaab77177425601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601660006101000a81548160ff0219169083151502179055506000601660016101000a81548160ff0219169083151502179055503480156200024f57600080fd5b5060405162005ca138038062005ca1833981810160405281019062000275919062000551565b6040518060400160405280601581526020017f44697274796269726420466c6967687420436c756200000000000000000000008152506040518060400160405280600381526020017f44464300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620002f992919062000423565b5080600190805190602001906200031292919062000423565b50505062000335620003296200035560201b60201c565b6200035d60201b60201c565b80601590805190602001906200034d92919062000423565b505062000726565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004319062000637565b90600052602060002090601f016020900481019282620004555760008555620004a1565b82601f106200047057805160ff1916838001178555620004a1565b82800160010185558215620004a1579182015b82811115620004a057825182559160200191906001019062000483565b5b509050620004b09190620004b4565b5090565b5b80821115620004cf576000816000905550600101620004b5565b5090565b6000620004ea620004e484620005cb565b620005a2565b90508281526020810184848401111562000509576200050862000706565b5b6200051684828562000601565b509392505050565b600082601f83011262000536576200053562000701565b5b815162000548848260208601620004d3565b91505092915050565b6000602082840312156200056a576200056962000710565b5b600082015167ffffffffffffffff8111156200058b576200058a6200070b565b5b62000599848285016200051e565b91505092915050565b6000620005ae620005c1565b9050620005bc82826200066d565b919050565b6000604051905090565b600067ffffffffffffffff821115620005e957620005e8620006d2565b5b620005f48262000715565b9050602081019050919050565b60005b838110156200062157808201518184015260208101905062000604565b8381111562000631576000848401525b50505050565b600060028204905060018216806200065057607f821691505b60208210811415620006675762000666620006a3565b5b50919050565b620006788262000715565b810181811067ffffffffffffffff821117156200069a5762000699620006d2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61556b80620007366000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063a2e91477116100b6578063d547cfb71161007a578063d547cfb7146108db578063e86fe2bb14610906578063e985e9c514610922578063ed1fc2a21461095f578063f2fde38b14610976578063f759867a1461099f5761025c565b8063a2e91477146107f6578063b88d4fde14610821578063bd3b14d31461084a578063c87b56dd14610873578063d3e86440146108b05761025c565b80638d859f3e116101085780638d859f3e146106f35780638da5cb5b1461071e5780638f328a1f1461074957806395d89b4114610786578063a0712d68146107b1578063a22cb465146107cd5761025c565b80636352211e146105fc57806370a0823114610639578063715018a6146106765780637263cfe21461068d5780638462151c146106b65761025c565b80632f814575116101dd5780634d4c4e99116101a15780634d4c4e99146104ec5780634f6ccce714610517578063549527c31461055457806355f804b31461057f57806359a12ad5146105a8578063627804af146105d35761025c565b80632f81457514610441578063342a891f1461045857806339117668146104835780633ccfd60b146104ac57806342842e0e146104c35761025c565b806309d42b301161022457806309d42b301461035a57806318160ddd1461038557806323b872dd146103b057806327d94182146103d95780632f745c59146104045761025c565b806301ffc9a71461026157806304549d6f1461029e57806306fdde03146102c9578063081812fc146102f4578063095ea7b314610331575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613e6b565b6109bb565b6040516102959190614534565b60405180910390f35b3480156102aa57600080fd5b506102b3610a35565b6040516102c09190614534565b60405180910390f35b3480156102d557600080fd5b506102de610a48565b6040516102eb919061454f565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190613f0e565b610ada565b60405161032891906144ab565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190613dde565b610b5f565b005b34801561036657600080fd5b5061036f610c77565b60405161037c9190614911565b60405180910390f35b34801561039157600080fd5b5061039a610c7d565b6040516103a79190614911565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190613cc8565b610c8a565b005b3480156103e557600080fd5b506103ee610cea565b6040516103fb9190614911565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613dde565b610cf0565b6040516104389190614911565b60405180910390f35b34801561044d57600080fd5b50610456610d95565b005b34801561046457600080fd5b5061046d610e83565b60405161047a9190614911565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613f0e565b610e89565b005b3480156104b857600080fd5b506104c1610f0f565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613cc8565b611283565b005b3480156104f857600080fd5b506105016112a3565b60405161050e9190614911565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613f0e565b6112a9565b60405161054b9190614911565b60405180910390f35b34801561056057600080fd5b5061056961131a565b6040516105769190614911565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190613ec5565b611320565b005b3480156105b457600080fd5b506105bd6113b6565b6040516105ca9190614911565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190613dde565b6113bc565b005b34801561060857600080fd5b50610623600480360381019061061e9190613f0e565b6114cf565b60405161063091906144ab565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190613c5b565b611581565b60405161066d9190614911565b60405180910390f35b34801561068257600080fd5b5061068b611639565b005b34801561069957600080fd5b506106b460048036038101906106af9190613e1e565b6116c1565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613c5b565b611957565b6040516106ea9190614512565b60405180910390f35b3480156106ff57600080fd5b50610708611a05565b6040516107159190614911565b60405180910390f35b34801561072a57600080fd5b50610733611a10565b60405161074091906144ab565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613c5b565b611a3a565b60405161077d9190614534565b60405180910390f35b34801561079257600080fd5b5061079b611a90565b6040516107a8919061454f565b60405180910390f35b6107cb60048036038101906107c69190613f0e565b611b22565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613d9e565b611d5a565b005b34801561080257600080fd5b5061080b611edb565b6040516108189190614534565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613d1b565b611eee565b005b34801561085657600080fd5b50610871600480360381019061086c9190613f0e565b611f50565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613f0e565b611fd6565b6040516108a7919061454f565b60405180910390f35b3480156108bc57600080fd5b506108c561207d565b6040516108d29190614911565b60405180910390f35b3480156108e757600080fd5b506108f0612083565b6040516108fd919061454f565b60405180910390f35b610920600480360381019061091b9190613f0e565b612111565b005b34801561092e57600080fd5b5061094960048036038101906109449190613c88565b612432565b6040516109569190614534565b60405180910390f35b34801561096b57600080fd5b506109746124c6565b005b34801561098257600080fd5b5061099d60048036038101906109989190613c5b565b6125b4565b005b6109b960048036038101906109b49190613f0e565b6126ac565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2e5750610a2d82612941565b5b9050919050565b601660019054906101000a900460ff1681565b606060008054610a5790614bfa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390614bfa565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b5050505050905090565b6000610ae582612a23565b610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90614771565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6a826114cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290614831565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfa612a8f565b73ffffffffffffffffffffffffffffffffffffffff161480610c295750610c2881610c23612a8f565b612432565b5b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906146b1565b60405180910390fd5b610c728383612a97565b505050565b600b5481565b6000600880549050905090565b610c9b610c95612a8f565b82612b50565b610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd1906148b1565b60405180910390fd5b610ce5838383612c2e565b505050565b610aa781565b6000610cfb83611581565b8210610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390614591565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d9d612a8f565b73ffffffffffffffffffffffffffffffffffffffff16610dbb611a10565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890614791565b60405180910390fd5b601660009054906101000a900460ff1615601660006101000a81548160ff0219169083151502179055507fc6ec94dc6f146352224b08e33be72a6116a9e136fa373dce1777baf4ef8f1faf601660009054906101000a900460ff16604051610e799190614534565b60405180910390a1565b600d5481565b610e91612a8f565b73ffffffffffffffffffffffffffffffffffffffff16610eaf611a10565b73ffffffffffffffffffffffffffffffffffffffff1614610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90614791565b60405180910390fd5b80600c8190555050565b610f17612a8f565b73ffffffffffffffffffffffffffffffffffffffff16610f35611a10565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290614791565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f84610fdb9190614ab6565b610fe59190614a85565b9081150290604051600060405180830381858888f19350505050158015611010573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460058461105c9190614ab6565b6110669190614a85565b9081150290604051600060405180830381858888f19350505050158015611091573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646005846110dd9190614ab6565b6110e79190614a85565b9081150290604051600060405180830381858888f19350505050158015611112573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8607d8461115f9190614ab6565b6111699190614a85565b9081150290604051600060405180830381858888f19350505050158015611194573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8607d846111e19190614ab6565b6111eb9190614a85565b9081150290604051600060405180830381858888f19350505050158015611216573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561127f573d6000803e3d6000fd5b5050565b61129e83838360405180602001604052806000815250611eee565b505050565b610aa781565b60006112b3610c7d565b82106112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb906148d1565b60405180910390fd5b6008828154811061130857611307614d93565b5b90600052602060002001549050919050565b600c5481565b611328612a8f565b73ffffffffffffffffffffffffffffffffffffffff16611346611a10565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390614791565b60405180910390fd5b80601590805190602001906113b2929190613a19565b5050565b600e5481565b6113c4612a8f565b73ffffffffffffffffffffffffffffffffffffffff166113e2611a10565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614791565b60405180910390fd5b61238281611444610c7d565b61144e9190614a2f565b111561148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690614731565b60405180910390fd5b60005b818110156114ca576114b78360016114a8610c7d565b6114b29190614a2f565b612e8a565b80806114c290614c5d565b915050611492565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f906146f1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e9906146d1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611641612a8f565b73ffffffffffffffffffffffffffffffffffffffff1661165f611a10565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614791565b60405180910390fd5b6116bf6000612ea8565b565b6116c9612a8f565b73ffffffffffffffffffffffffffffffffffffffff166116e7611a10565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614791565b60405180910390fd5b60005b8282905081101561195257600073ffffffffffffffffffffffffffffffffffffffff1683838381811061177657611775614d93565b5b905060200201602081019061178b9190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1614156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614871565b60405180910390fd5b6001601760008585858181106117fb576117fa614d93565b5b90506020020160208101906118109190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006018600085858581811061187a57611879614d93565b5b905060200201602081019061188f9190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116118d657600061193e565b601860008484848181106118ed576118ec614d93565b5b90506020020160208101906119029190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b50808061194a90614c5d565b915050611740565b505050565b6060600061196483611581565b905060008167ffffffffffffffff81111561198257611981614dc2565b5b6040519080825280602002602001820160405280156119b05781602001602082028036833780820191505090505b50905060005b828110156119fa576119c88582610cf0565b8282815181106119db576119da614d93565b5b60200260200101818152505080806119f290614c5d565b9150506119b6565b508092505050919050565b66d529ae9e86000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060018054611a9f90614bfa565b80601f0160208091040260200160405190810160405280929190818152602001828054611acb90614bfa565b8015611b185780601f10611aed57610100808354040283529160200191611b18565b820191906000526020600020905b815481529060010190602001808311611afb57829003601f168201915b5050505050905090565b601660009054906101000a900460ff168015611b4b5750601660019054906101000a900460ff16155b611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b81906145f1565b60405180910390fd5b612382611b95610c7d565b10611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90614731565b60405180910390fd5b61238281611be1610c7d565b611beb9190614a2f565b1115611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390614711565b60405180910390fd5b600b54811115611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890614811565b60405180910390fd5b348166d529ae9e860000611c859190614ab6565b1015611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd906148f1565b60405180910390fd5b60005b81811015611d5657601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611d2190614c5d565b9190505550611d43336001611d34610c7d565b611d3e9190614a2f565b612e8a565b8080611d4e90614c5d565b915050611cc9565b5050565b611d62612a8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790614651565b60405180910390fd5b8060056000611ddd612a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e8a612a8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ecf9190614534565b60405180910390a35050565b601660009054906101000a900460ff1681565b611eff611ef9612a8f565b83612b50565b611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f35906148b1565b60405180910390fd5b611f4a84848484612f6e565b50505050565b611f58612a8f565b73ffffffffffffffffffffffffffffffffffffffff16611f76611a10565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614791565b60405180910390fd5b80600b8190555050565b6060611fe182612a23565b612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906147d1565b60405180910390fd5b600061202a612fca565b9050600081511161204a5760405180602001604052806000815250612075565b806120548461305c565b604051602001612065929190614487565b6040516020818303038152906040525b915050919050565b61238281565b6015805461209090614bfa565b80601f01602080910402602001604051908101604052809291908181526020018280546120bc90614bfa565b80156121095780601f106120de57610100808354040283529160200191612109565b820191906000526020600020905b8154815290600101906020018083116120ec57829003601f168201915b505050505081565b601660009054906101000a900460ff1615801561213a5750601660019054906101000a900460ff165b612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090614571565b60405180910390fd5b612382612184610c7d565b106121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb90614731565b60405180910390fd5b600c5481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122129190614a2f565b1115612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a906147f1565b60405180910390fd5b610aa781600e546122649190614a2f565b11156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90614691565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232890614891565b60405180910390fd5b348166d529ae9e8600006123459190614ab6565b1015612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d906148f1565b60405180910390fd5b60005b8181101561242e57600e60008154809291906123a490614c5d565b9190505550601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906123f990614c5d565b919050555061241b33600161240c610c7d565b6124169190614a2f565b612e8a565b808061242690614c5d565b915050612389565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124ce612a8f565b73ffffffffffffffffffffffffffffffffffffffff166124ec611a10565b73ffffffffffffffffffffffffffffffffffffffff1614612542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253990614791565b60405180910390fd5b601660019054906101000a900460ff1615601660016101000a81548160ff0219169083151502179055507f29c9f10cb540708b1aacab2c61060cc6e2a7e602ba2936cc881d50a652457b6f601660019054906101000a900460ff166040516125aa9190614534565b60405180910390a1565b6125bc612a8f565b73ffffffffffffffffffffffffffffffffffffffff166125da611a10565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790614791565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612697906145d1565b60405180910390fd5b6126a981612ea8565b50565b601660009054906101000a900460ff161580156126d55750601660019054906101000a900460ff165b612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90614571565b60405180910390fd5b61238261271f610c7d565b1061275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690614731565b60405180910390fd5b600c5481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ad9190614a2f565b11156127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e5906147f1565b60405180910390fd5b610aa781600d546127ff9190614a2f565b1115612840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283790614851565b60405180910390fd5b348166d529ae9e8600006128549190614ab6565b1015612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c906148f1565b60405180910390fd5b60005b8181101561293d57600d60008154809291906128b390614c5d565b9190505550601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061290890614c5d565b919050555061292a33600161291b610c7d565b6129259190614a2f565b612e8a565b808061293590614c5d565b915050612898565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a0c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a1c5750612a1b826131bd565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b0a836114cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b5b82612a23565b612b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9190614671565b60405180910390fd5b6000612ba5836114cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c1457508373ffffffffffffffffffffffffffffffffffffffff16612bfc84610ada565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c255750612c248185612432565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c4e826114cf565b73ffffffffffffffffffffffffffffffffffffffff1614612ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9b906147b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0b90614631565b60405180910390fd5b612d1f838383613227565b612d2a600082612a97565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7a9190614b10565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dd19190614a2f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612ea482826040518060200160405280600081525061333b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f79848484612c2e565b612f8584848484613396565b612fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbb906145b1565b60405180910390fd5b50505050565b606060158054612fd990614bfa565b80601f016020809104026020016040519081016040528092919081815260200182805461300590614bfa565b80156130525780601f1061302757610100808354040283529160200191613052565b820191906000526020600020905b81548152906001019060200180831161303557829003601f168201915b5050505050905090565b606060008214156130a4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b8565b600082905060005b600082146130d65780806130bf90614c5d565b915050600a826130cf9190614a85565b91506130ac565b60008167ffffffffffffffff8111156130f2576130f1614dc2565b5b6040519080825280601f01601f1916602001820160405280156131245781602001600182028036833780820191505090505b5090505b600085146131b15760018261313d9190614b10565b9150600a8561314c9190614ca6565b60306131589190614a2f565b60f81b81838151811061316e5761316d614d93565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131aa9190614a85565b9450613128565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61323283838361352d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132755761327081613532565b6132b4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132b3576132b2838261357b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132f7576132f2816136e8565b613336565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133355761333482826137b9565b5b5b505050565b6133458383613838565b6133526000848484613396565b613391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613388906145b1565b60405180910390fd5b505050565b60006133b78473ffffffffffffffffffffffffffffffffffffffff16613a06565b15613520578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133e0612a8f565b8786866040518563ffffffff1660e01b815260040161340294939291906144c6565b602060405180830381600087803b15801561341c57600080fd5b505af192505050801561344d57506040513d601f19601f8201168201806040525081019061344a9190613e98565b60015b6134d0573d806000811461347d576040519150601f19603f3d011682016040523d82523d6000602084013e613482565b606091505b506000815114156134c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bf906145b1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613525565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161358884611581565b6135929190614b10565b9050600060076000848152602001908152602001600020549050818114613677576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136fc9190614b10565b905060006009600084815260200190815260200160002054905060006008838154811061372c5761372b614d93565b5b90600052602060002001549050806008838154811061374e5761374d614d93565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061379d5761379c614d64565b5b6001900381819060005260206000200160009055905550505050565b60006137c483611581565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389f90614751565b60405180910390fd5b6138b181612a23565b156138f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e890614611565b60405180910390fd5b6138fd60008383613227565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461394d9190614a2f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a2590614bfa565b90600052602060002090601f016020900481019282613a475760008555613a8e565b82601f10613a6057805160ff1916838001178555613a8e565b82800160010185558215613a8e579182015b82811115613a8d578251825591602001919060010190613a72565b5b509050613a9b9190613a9f565b5090565b5b80821115613ab8576000816000905550600101613aa0565b5090565b6000613acf613aca84614951565b61492c565b905082815260208101848484011115613aeb57613aea614e00565b5b613af6848285614bb8565b509392505050565b6000613b11613b0c84614982565b61492c565b905082815260208101848484011115613b2d57613b2c614e00565b5b613b38848285614bb8565b509392505050565b600081359050613b4f816154d9565b92915050565b60008083601f840112613b6b57613b6a614df6565b5b8235905067ffffffffffffffff811115613b8857613b87614df1565b5b602083019150836020820283011115613ba457613ba3614dfb565b5b9250929050565b600081359050613bba816154f0565b92915050565b600081359050613bcf81615507565b92915050565b600081519050613be481615507565b92915050565b600082601f830112613bff57613bfe614df6565b5b8135613c0f848260208601613abc565b91505092915050565b600082601f830112613c2d57613c2c614df6565b5b8135613c3d848260208601613afe565b91505092915050565b600081359050613c558161551e565b92915050565b600060208284031215613c7157613c70614e0a565b5b6000613c7f84828501613b40565b91505092915050565b60008060408385031215613c9f57613c9e614e0a565b5b6000613cad85828601613b40565b9250506020613cbe85828601613b40565b9150509250929050565b600080600060608486031215613ce157613ce0614e0a565b5b6000613cef86828701613b40565b9350506020613d0086828701613b40565b9250506040613d1186828701613c46565b9150509250925092565b60008060008060808587031215613d3557613d34614e0a565b5b6000613d4387828801613b40565b9450506020613d5487828801613b40565b9350506040613d6587828801613c46565b925050606085013567ffffffffffffffff811115613d8657613d85614e05565b5b613d9287828801613bea565b91505092959194509250565b60008060408385031215613db557613db4614e0a565b5b6000613dc385828601613b40565b9250506020613dd485828601613bab565b9150509250929050565b60008060408385031215613df557613df4614e0a565b5b6000613e0385828601613b40565b9250506020613e1485828601613c46565b9150509250929050565b60008060208385031215613e3557613e34614e0a565b5b600083013567ffffffffffffffff811115613e5357613e52614e05565b5b613e5f85828601613b55565b92509250509250929050565b600060208284031215613e8157613e80614e0a565b5b6000613e8f84828501613bc0565b91505092915050565b600060208284031215613eae57613ead614e0a565b5b6000613ebc84828501613bd5565b91505092915050565b600060208284031215613edb57613eda614e0a565b5b600082013567ffffffffffffffff811115613ef957613ef8614e05565b5b613f0584828501613c18565b91505092915050565b600060208284031215613f2457613f23614e0a565b5b6000613f3284828501613c46565b91505092915050565b6000613f478383614469565b60208301905092915050565b613f5c81614b44565b82525050565b6000613f6d826149c3565b613f7781856149f1565b9350613f82836149b3565b8060005b83811015613fb3578151613f9a8882613f3b565b9750613fa5836149e4565b925050600181019050613f86565b5085935050505092915050565b613fc981614b56565b82525050565b6000613fda826149ce565b613fe48185614a02565b9350613ff4818560208601614bc7565b613ffd81614e0f565b840191505092915050565b6000614013826149d9565b61401d8185614a13565b935061402d818560208601614bc7565b61403681614e0f565b840191505092915050565b600061404c826149d9565b6140568185614a24565b9350614066818560208601614bc7565b80840191505092915050565b600061407f600e83614a13565b915061408a82614e20565b602082019050919050565b60006140a2602b83614a13565b91506140ad82614e49565b604082019050919050565b60006140c5603283614a13565b91506140d082614e98565b604082019050919050565b60006140e8602683614a13565b91506140f382614ee7565b604082019050919050565b600061410b601283614a13565b915061411682614f36565b602082019050919050565b600061412e601c83614a13565b915061413982614f5f565b602082019050919050565b6000614151602483614a13565b915061415c82614f88565b604082019050919050565b6000614174601983614a13565b915061417f82614fd7565b602082019050919050565b6000614197602c83614a13565b91506141a282615000565b604082019050919050565b60006141ba601383614a13565b91506141c58261504f565b602082019050919050565b60006141dd603883614a13565b91506141e882615078565b604082019050919050565b6000614200602a83614a13565b915061420b826150c7565b604082019050919050565b6000614223602983614a13565b915061422e82615116565b604082019050919050565b6000614246601283614a13565b915061425182615165565b602082019050919050565b6000614269600883614a13565b91506142748261518e565b602082019050919050565b600061428c602083614a13565b9150614297826151b7565b602082019050919050565b60006142af602c83614a13565b91506142ba826151e0565b604082019050919050565b60006142d2602083614a13565b91506142dd8261522f565b602082019050919050565b60006142f5602983614a13565b915061430082615258565b604082019050919050565b6000614318602f83614a13565b9150614323826152a7565b604082019050919050565b600061433b601783614a13565b9150614346826152f6565b602082019050919050565b600061435e601b83614a13565b91506143698261531f565b602082019050919050565b6000614381602183614a13565b915061438c82615348565b604082019050919050565b60006143a4600e83614a13565b91506143af82615397565b602082019050919050565b60006143c7601783614a13565b91506143d2826153c0565b602082019050919050565b60006143ea601183614a13565b91506143f5826153e9565b602082019050919050565b600061440d603183614a13565b915061441882615412565b604082019050919050565b6000614430602c83614a13565b915061443b82615461565b604082019050919050565b6000614453601083614a13565b915061445e826154b0565b602082019050919050565b61447281614bae565b82525050565b61448181614bae565b82525050565b60006144938285614041565b915061449f8284614041565b91508190509392505050565b60006020820190506144c06000830184613f53565b92915050565b60006080820190506144db6000830187613f53565b6144e86020830186613f53565b6144f56040830185614478565b81810360608301526145078184613fcf565b905095945050505050565b6000602082019050818103600083015261452c8184613f62565b905092915050565b60006020820190506145496000830184613fc0565b92915050565b600060208201905081810360008301526145698184614008565b905092915050565b6000602082019050818103600083015261458a81614072565b9050919050565b600060208201905081810360008301526145aa81614095565b9050919050565b600060208201905081810360008301526145ca816140b8565b9050919050565b600060208201905081810360008301526145ea816140db565b9050919050565b6000602082019050818103600083015261460a816140fe565b9050919050565b6000602082019050818103600083015261462a81614121565b9050919050565b6000602082019050818103600083015261464a81614144565b9050919050565b6000602082019050818103600083015261466a81614167565b9050919050565b6000602082019050818103600083015261468a8161418a565b9050919050565b600060208201905081810360008301526146aa816141ad565b9050919050565b600060208201905081810360008301526146ca816141d0565b9050919050565b600060208201905081810360008301526146ea816141f3565b9050919050565b6000602082019050818103600083015261470a81614216565b9050919050565b6000602082019050818103600083015261472a81614239565b9050919050565b6000602082019050818103600083015261474a8161425c565b9050919050565b6000602082019050818103600083015261476a8161427f565b9050919050565b6000602082019050818103600083015261478a816142a2565b9050919050565b600060208201905081810360008301526147aa816142c5565b9050919050565b600060208201905081810360008301526147ca816142e8565b9050919050565b600060208201905081810360008301526147ea8161430b565b9050919050565b6000602082019050818103600083015261480a8161432e565b9050919050565b6000602082019050818103600083015261482a81614351565b9050919050565b6000602082019050818103600083015261484a81614374565b9050919050565b6000602082019050818103600083015261486a81614397565b9050919050565b6000602082019050818103600083015261488a816143ba565b9050919050565b600060208201905081810360008301526148aa816143dd565b9050919050565b600060208201905081810360008301526148ca81614400565b9050919050565b600060208201905081810360008301526148ea81614423565b9050919050565b6000602082019050818103600083015261490a81614446565b9050919050565b60006020820190506149266000830184614478565b92915050565b6000614936614947565b90506149428282614c2c565b919050565b6000604051905090565b600067ffffffffffffffff82111561496c5761496b614dc2565b5b61497582614e0f565b9050602081019050919050565b600067ffffffffffffffff82111561499d5761499c614dc2565b5b6149a682614e0f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a3a82614bae565b9150614a4583614bae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7a57614a79614cd7565b5b828201905092915050565b6000614a9082614bae565b9150614a9b83614bae565b925082614aab57614aaa614d06565b5b828204905092915050565b6000614ac182614bae565b9150614acc83614bae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b0557614b04614cd7565b5b828202905092915050565b6000614b1b82614bae565b9150614b2683614bae565b925082821015614b3957614b38614cd7565b5b828203905092915050565b6000614b4f82614b8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614be5578082015181840152602081019050614bca565b83811115614bf4576000848401525b50505050565b60006002820490506001821680614c1257607f821691505b60208210811415614c2657614c25614d35565b5b50919050565b614c3582614e0f565b810181811067ffffffffffffffff82111715614c5457614c53614dc2565b5b80604052505050565b6000614c6882614bae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c9b57614c9a614cd7565b5b600182019050919050565b6000614cb182614bae565b9150614cbc83614bae565b925082614ccc57614ccb614d06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5055424c49435f53414c455f434c4f5345440000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4558434545445f505249564154455f53414c4500000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f455843454544535f4d41585f535550504c590000000000000000000000000000600082015250565b7f534f4c445f4f5554000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4558434545445f50524553414c455f4d41585f4d494e54000000000000000000600082015250565b7f455843454544535f4d41585f5045525f5452414e53414354494f4e0000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f50524553414c45000000000000000000000000000000000000600082015250565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b7f4e4f545f494e5f414c4c4f575f4c495354000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b6154e281614b44565b81146154ed57600080fd5b50565b6154f981614b56565b811461550457600080fd5b50565b61551081614b62565b811461551b57600080fd5b50565b61552781614bae565b811461553257600080fd5b5056fea2646970667358221220b88ab73f35a1eeda6b3806ac100aaac1b870c144ed6f76d6466b4a3d6bff48f164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5579717a555a7145695345616837364c51506379386e33697366486d79423479364d387443727573627247583f00000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636352211e11610144578063a2e91477116100b6578063d547cfb71161007a578063d547cfb7146108db578063e86fe2bb14610906578063e985e9c514610922578063ed1fc2a21461095f578063f2fde38b14610976578063f759867a1461099f5761025c565b8063a2e91477146107f6578063b88d4fde14610821578063bd3b14d31461084a578063c87b56dd14610873578063d3e86440146108b05761025c565b80638d859f3e116101085780638d859f3e146106f35780638da5cb5b1461071e5780638f328a1f1461074957806395d89b4114610786578063a0712d68146107b1578063a22cb465146107cd5761025c565b80636352211e146105fc57806370a0823114610639578063715018a6146106765780637263cfe21461068d5780638462151c146106b65761025c565b80632f814575116101dd5780634d4c4e99116101a15780634d4c4e99146104ec5780634f6ccce714610517578063549527c31461055457806355f804b31461057f57806359a12ad5146105a8578063627804af146105d35761025c565b80632f81457514610441578063342a891f1461045857806339117668146104835780633ccfd60b146104ac57806342842e0e146104c35761025c565b806309d42b301161022457806309d42b301461035a57806318160ddd1461038557806323b872dd146103b057806327d94182146103d95780632f745c59146104045761025c565b806301ffc9a71461026157806304549d6f1461029e57806306fdde03146102c9578063081812fc146102f4578063095ea7b314610331575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613e6b565b6109bb565b6040516102959190614534565b60405180910390f35b3480156102aa57600080fd5b506102b3610a35565b6040516102c09190614534565b60405180910390f35b3480156102d557600080fd5b506102de610a48565b6040516102eb919061454f565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190613f0e565b610ada565b60405161032891906144ab565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190613dde565b610b5f565b005b34801561036657600080fd5b5061036f610c77565b60405161037c9190614911565b60405180910390f35b34801561039157600080fd5b5061039a610c7d565b6040516103a79190614911565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190613cc8565b610c8a565b005b3480156103e557600080fd5b506103ee610cea565b6040516103fb9190614911565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613dde565b610cf0565b6040516104389190614911565b60405180910390f35b34801561044d57600080fd5b50610456610d95565b005b34801561046457600080fd5b5061046d610e83565b60405161047a9190614911565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613f0e565b610e89565b005b3480156104b857600080fd5b506104c1610f0f565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613cc8565b611283565b005b3480156104f857600080fd5b506105016112a3565b60405161050e9190614911565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613f0e565b6112a9565b60405161054b9190614911565b60405180910390f35b34801561056057600080fd5b5061056961131a565b6040516105769190614911565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190613ec5565b611320565b005b3480156105b457600080fd5b506105bd6113b6565b6040516105ca9190614911565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190613dde565b6113bc565b005b34801561060857600080fd5b50610623600480360381019061061e9190613f0e565b6114cf565b60405161063091906144ab565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190613c5b565b611581565b60405161066d9190614911565b60405180910390f35b34801561068257600080fd5b5061068b611639565b005b34801561069957600080fd5b506106b460048036038101906106af9190613e1e565b6116c1565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613c5b565b611957565b6040516106ea9190614512565b60405180910390f35b3480156106ff57600080fd5b50610708611a05565b6040516107159190614911565b60405180910390f35b34801561072a57600080fd5b50610733611a10565b60405161074091906144ab565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190613c5b565b611a3a565b60405161077d9190614534565b60405180910390f35b34801561079257600080fd5b5061079b611a90565b6040516107a8919061454f565b60405180910390f35b6107cb60048036038101906107c69190613f0e565b611b22565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613d9e565b611d5a565b005b34801561080257600080fd5b5061080b611edb565b6040516108189190614534565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613d1b565b611eee565b005b34801561085657600080fd5b50610871600480360381019061086c9190613f0e565b611f50565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613f0e565b611fd6565b6040516108a7919061454f565b60405180910390f35b3480156108bc57600080fd5b506108c561207d565b6040516108d29190614911565b60405180910390f35b3480156108e757600080fd5b506108f0612083565b6040516108fd919061454f565b60405180910390f35b610920600480360381019061091b9190613f0e565b612111565b005b34801561092e57600080fd5b5061094960048036038101906109449190613c88565b612432565b6040516109569190614534565b60405180910390f35b34801561096b57600080fd5b506109746124c6565b005b34801561098257600080fd5b5061099d60048036038101906109989190613c5b565b6125b4565b005b6109b960048036038101906109b49190613f0e565b6126ac565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2e5750610a2d82612941565b5b9050919050565b601660019054906101000a900460ff1681565b606060008054610a5790614bfa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390614bfa565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b5050505050905090565b6000610ae582612a23565b610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90614771565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6a826114cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290614831565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfa612a8f565b73ffffffffffffffffffffffffffffffffffffffff161480610c295750610c2881610c23612a8f565b612432565b5b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906146b1565b60405180910390fd5b610c728383612a97565b505050565b600b5481565b6000600880549050905090565b610c9b610c95612a8f565b82612b50565b610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd1906148b1565b60405180910390fd5b610ce5838383612c2e565b505050565b610aa781565b6000610cfb83611581565b8210610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390614591565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d9d612a8f565b73ffffffffffffffffffffffffffffffffffffffff16610dbb611a10565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890614791565b60405180910390fd5b601660009054906101000a900460ff1615601660006101000a81548160ff0219169083151502179055507fc6ec94dc6f146352224b08e33be72a6116a9e136fa373dce1777baf4ef8f1faf601660009054906101000a900460ff16604051610e799190614534565b60405180910390a1565b600d5481565b610e91612a8f565b73ffffffffffffffffffffffffffffffffffffffff16610eaf611a10565b73ffffffffffffffffffffffffffffffffffffffff1614610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90614791565b60405180910390fd5b80600c8190555050565b610f17612a8f565b73ffffffffffffffffffffffffffffffffffffffff16610f35611a10565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290614791565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f84610fdb9190614ab6565b610fe59190614a85565b9081150290604051600060405180830381858888f19350505050158015611010573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460058461105c9190614ab6565b6110669190614a85565b9081150290604051600060405180830381858888f19350505050158015611091573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646005846110dd9190614ab6565b6110e79190614a85565b9081150290604051600060405180830381858888f19350505050158015611112573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8607d8461115f9190614ab6565b6111699190614a85565b9081150290604051600060405180830381858888f19350505050158015611194573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8607d846111e19190614ab6565b6111eb9190614a85565b9081150290604051600060405180830381858888f19350505050158015611216573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561127f573d6000803e3d6000fd5b5050565b61129e83838360405180602001604052806000815250611eee565b505050565b610aa781565b60006112b3610c7d565b82106112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb906148d1565b60405180910390fd5b6008828154811061130857611307614d93565b5b90600052602060002001549050919050565b600c5481565b611328612a8f565b73ffffffffffffffffffffffffffffffffffffffff16611346611a10565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390614791565b60405180910390fd5b80601590805190602001906113b2929190613a19565b5050565b600e5481565b6113c4612a8f565b73ffffffffffffffffffffffffffffffffffffffff166113e2611a10565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614791565b60405180910390fd5b61238281611444610c7d565b61144e9190614a2f565b111561148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690614731565b60405180910390fd5b60005b818110156114ca576114b78360016114a8610c7d565b6114b29190614a2f565b612e8a565b80806114c290614c5d565b915050611492565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f906146f1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e9906146d1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611641612a8f565b73ffffffffffffffffffffffffffffffffffffffff1661165f611a10565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614791565b60405180910390fd5b6116bf6000612ea8565b565b6116c9612a8f565b73ffffffffffffffffffffffffffffffffffffffff166116e7611a10565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614791565b60405180910390fd5b60005b8282905081101561195257600073ffffffffffffffffffffffffffffffffffffffff1683838381811061177657611775614d93565b5b905060200201602081019061178b9190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1614156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990614871565b60405180910390fd5b6001601760008585858181106117fb576117fa614d93565b5b90506020020160208101906118109190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006018600085858581811061187a57611879614d93565b5b905060200201602081019061188f9190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116118d657600061193e565b601860008484848181106118ed576118ec614d93565b5b90506020020160208101906119029190613c5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b50808061194a90614c5d565b915050611740565b505050565b6060600061196483611581565b905060008167ffffffffffffffff81111561198257611981614dc2565b5b6040519080825280602002602001820160405280156119b05781602001602082028036833780820191505090505b50905060005b828110156119fa576119c88582610cf0565b8282815181106119db576119da614d93565b5b60200260200101818152505080806119f290614c5d565b9150506119b6565b508092505050919050565b66d529ae9e86000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060018054611a9f90614bfa565b80601f0160208091040260200160405190810160405280929190818152602001828054611acb90614bfa565b8015611b185780601f10611aed57610100808354040283529160200191611b18565b820191906000526020600020905b815481529060010190602001808311611afb57829003601f168201915b5050505050905090565b601660009054906101000a900460ff168015611b4b5750601660019054906101000a900460ff16155b611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b81906145f1565b60405180910390fd5b612382611b95610c7d565b10611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90614731565b60405180910390fd5b61238281611be1610c7d565b611beb9190614a2f565b1115611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390614711565b60405180910390fd5b600b54811115611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890614811565b60405180910390fd5b348166d529ae9e860000611c859190614ab6565b1015611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd906148f1565b60405180910390fd5b60005b81811015611d5657601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611d2190614c5d565b9190505550611d43336001611d34610c7d565b611d3e9190614a2f565b612e8a565b8080611d4e90614c5d565b915050611cc9565b5050565b611d62612a8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790614651565b60405180910390fd5b8060056000611ddd612a8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e8a612a8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ecf9190614534565b60405180910390a35050565b601660009054906101000a900460ff1681565b611eff611ef9612a8f565b83612b50565b611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f35906148b1565b60405180910390fd5b611f4a84848484612f6e565b50505050565b611f58612a8f565b73ffffffffffffffffffffffffffffffffffffffff16611f76611a10565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614791565b60405180910390fd5b80600b8190555050565b6060611fe182612a23565b612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906147d1565b60405180910390fd5b600061202a612fca565b9050600081511161204a5760405180602001604052806000815250612075565b806120548461305c565b604051602001612065929190614487565b6040516020818303038152906040525b915050919050565b61238281565b6015805461209090614bfa565b80601f01602080910402602001604051908101604052809291908181526020018280546120bc90614bfa565b80156121095780601f106120de57610100808354040283529160200191612109565b820191906000526020600020905b8154815290600101906020018083116120ec57829003601f168201915b505050505081565b601660009054906101000a900460ff1615801561213a5750601660019054906101000a900460ff165b612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090614571565b60405180910390fd5b612382612184610c7d565b106121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb90614731565b60405180910390fd5b600c5481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122129190614a2f565b1115612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a906147f1565b60405180910390fd5b610aa781600e546122649190614a2f565b11156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90614691565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232890614891565b60405180910390fd5b348166d529ae9e8600006123459190614ab6565b1015612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d906148f1565b60405180910390fd5b60005b8181101561242e57600e60008154809291906123a490614c5d565b9190505550601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906123f990614c5d565b919050555061241b33600161240c610c7d565b6124169190614a2f565b612e8a565b808061242690614c5d565b915050612389565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124ce612a8f565b73ffffffffffffffffffffffffffffffffffffffff166124ec611a10565b73ffffffffffffffffffffffffffffffffffffffff1614612542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253990614791565b60405180910390fd5b601660019054906101000a900460ff1615601660016101000a81548160ff0219169083151502179055507f29c9f10cb540708b1aacab2c61060cc6e2a7e602ba2936cc881d50a652457b6f601660019054906101000a900460ff166040516125aa9190614534565b60405180910390a1565b6125bc612a8f565b73ffffffffffffffffffffffffffffffffffffffff166125da611a10565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790614791565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612697906145d1565b60405180910390fd5b6126a981612ea8565b50565b601660009054906101000a900460ff161580156126d55750601660019054906101000a900460ff165b612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90614571565b60405180910390fd5b61238261271f610c7d565b1061275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690614731565b60405180910390fd5b600c5481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ad9190614a2f565b11156127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e5906147f1565b60405180910390fd5b610aa781600d546127ff9190614a2f565b1115612840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283790614851565b60405180910390fd5b348166d529ae9e8600006128549190614ab6565b1015612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c906148f1565b60405180910390fd5b60005b8181101561293d57600d60008154809291906128b390614c5d565b9190505550601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061290890614c5d565b919050555061292a33600161291b610c7d565b6129259190614a2f565b612e8a565b808061293590614c5d565b915050612898565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a0c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a1c5750612a1b826131bd565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b0a836114cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b5b82612a23565b612b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9190614671565b60405180910390fd5b6000612ba5836114cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c1457508373ffffffffffffffffffffffffffffffffffffffff16612bfc84610ada565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c255750612c248185612432565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c4e826114cf565b73ffffffffffffffffffffffffffffffffffffffff1614612ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9b906147b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0b90614631565b60405180910390fd5b612d1f838383613227565b612d2a600082612a97565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7a9190614b10565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dd19190614a2f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612ea482826040518060200160405280600081525061333b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f79848484612c2e565b612f8584848484613396565b612fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbb906145b1565b60405180910390fd5b50505050565b606060158054612fd990614bfa565b80601f016020809104026020016040519081016040528092919081815260200182805461300590614bfa565b80156130525780601f1061302757610100808354040283529160200191613052565b820191906000526020600020905b81548152906001019060200180831161303557829003601f168201915b5050505050905090565b606060008214156130a4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b8565b600082905060005b600082146130d65780806130bf90614c5d565b915050600a826130cf9190614a85565b91506130ac565b60008167ffffffffffffffff8111156130f2576130f1614dc2565b5b6040519080825280601f01601f1916602001820160405280156131245781602001600182028036833780820191505090505b5090505b600085146131b15760018261313d9190614b10565b9150600a8561314c9190614ca6565b60306131589190614a2f565b60f81b81838151811061316e5761316d614d93565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131aa9190614a85565b9450613128565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61323283838361352d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132755761327081613532565b6132b4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132b3576132b2838261357b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132f7576132f2816136e8565b613336565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133355761333482826137b9565b5b5b505050565b6133458383613838565b6133526000848484613396565b613391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613388906145b1565b60405180910390fd5b505050565b60006133b78473ffffffffffffffffffffffffffffffffffffffff16613a06565b15613520578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133e0612a8f565b8786866040518563ffffffff1660e01b815260040161340294939291906144c6565b602060405180830381600087803b15801561341c57600080fd5b505af192505050801561344d57506040513d601f19601f8201168201806040525081019061344a9190613e98565b60015b6134d0573d806000811461347d576040519150601f19603f3d011682016040523d82523d6000602084013e613482565b606091505b506000815114156134c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bf906145b1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613525565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161358884611581565b6135929190614b10565b9050600060076000848152602001908152602001600020549050818114613677576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136fc9190614b10565b905060006009600084815260200190815260200160002054905060006008838154811061372c5761372b614d93565b5b90600052602060002001549050806008838154811061374e5761374d614d93565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061379d5761379c614d64565b5b6001900381819060005260206000200160009055905550505050565b60006137c483611581565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389f90614751565b60405180910390fd5b6138b181612a23565b156138f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e890614611565b60405180910390fd5b6138fd60008383613227565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461394d9190614a2f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a2590614bfa565b90600052602060002090601f016020900481019282613a475760008555613a8e565b82601f10613a6057805160ff1916838001178555613a8e565b82800160010185558215613a8e579182015b82811115613a8d578251825591602001919060010190613a72565b5b509050613a9b9190613a9f565b5090565b5b80821115613ab8576000816000905550600101613aa0565b5090565b6000613acf613aca84614951565b61492c565b905082815260208101848484011115613aeb57613aea614e00565b5b613af6848285614bb8565b509392505050565b6000613b11613b0c84614982565b61492c565b905082815260208101848484011115613b2d57613b2c614e00565b5b613b38848285614bb8565b509392505050565b600081359050613b4f816154d9565b92915050565b60008083601f840112613b6b57613b6a614df6565b5b8235905067ffffffffffffffff811115613b8857613b87614df1565b5b602083019150836020820283011115613ba457613ba3614dfb565b5b9250929050565b600081359050613bba816154f0565b92915050565b600081359050613bcf81615507565b92915050565b600081519050613be481615507565b92915050565b600082601f830112613bff57613bfe614df6565b5b8135613c0f848260208601613abc565b91505092915050565b600082601f830112613c2d57613c2c614df6565b5b8135613c3d848260208601613afe565b91505092915050565b600081359050613c558161551e565b92915050565b600060208284031215613c7157613c70614e0a565b5b6000613c7f84828501613b40565b91505092915050565b60008060408385031215613c9f57613c9e614e0a565b5b6000613cad85828601613b40565b9250506020613cbe85828601613b40565b9150509250929050565b600080600060608486031215613ce157613ce0614e0a565b5b6000613cef86828701613b40565b9350506020613d0086828701613b40565b9250506040613d1186828701613c46565b9150509250925092565b60008060008060808587031215613d3557613d34614e0a565b5b6000613d4387828801613b40565b9450506020613d5487828801613b40565b9350506040613d6587828801613c46565b925050606085013567ffffffffffffffff811115613d8657613d85614e05565b5b613d9287828801613bea565b91505092959194509250565b60008060408385031215613db557613db4614e0a565b5b6000613dc385828601613b40565b9250506020613dd485828601613bab565b9150509250929050565b60008060408385031215613df557613df4614e0a565b5b6000613e0385828601613b40565b9250506020613e1485828601613c46565b9150509250929050565b60008060208385031215613e3557613e34614e0a565b5b600083013567ffffffffffffffff811115613e5357613e52614e05565b5b613e5f85828601613b55565b92509250509250929050565b600060208284031215613e8157613e80614e0a565b5b6000613e8f84828501613bc0565b91505092915050565b600060208284031215613eae57613ead614e0a565b5b6000613ebc84828501613bd5565b91505092915050565b600060208284031215613edb57613eda614e0a565b5b600082013567ffffffffffffffff811115613ef957613ef8614e05565b5b613f0584828501613c18565b91505092915050565b600060208284031215613f2457613f23614e0a565b5b6000613f3284828501613c46565b91505092915050565b6000613f478383614469565b60208301905092915050565b613f5c81614b44565b82525050565b6000613f6d826149c3565b613f7781856149f1565b9350613f82836149b3565b8060005b83811015613fb3578151613f9a8882613f3b565b9750613fa5836149e4565b925050600181019050613f86565b5085935050505092915050565b613fc981614b56565b82525050565b6000613fda826149ce565b613fe48185614a02565b9350613ff4818560208601614bc7565b613ffd81614e0f565b840191505092915050565b6000614013826149d9565b61401d8185614a13565b935061402d818560208601614bc7565b61403681614e0f565b840191505092915050565b600061404c826149d9565b6140568185614a24565b9350614066818560208601614bc7565b80840191505092915050565b600061407f600e83614a13565b915061408a82614e20565b602082019050919050565b60006140a2602b83614a13565b91506140ad82614e49565b604082019050919050565b60006140c5603283614a13565b91506140d082614e98565b604082019050919050565b60006140e8602683614a13565b91506140f382614ee7565b604082019050919050565b600061410b601283614a13565b915061411682614f36565b602082019050919050565b600061412e601c83614a13565b915061413982614f5f565b602082019050919050565b6000614151602483614a13565b915061415c82614f88565b604082019050919050565b6000614174601983614a13565b915061417f82614fd7565b602082019050919050565b6000614197602c83614a13565b91506141a282615000565b604082019050919050565b60006141ba601383614a13565b91506141c58261504f565b602082019050919050565b60006141dd603883614a13565b91506141e882615078565b604082019050919050565b6000614200602a83614a13565b915061420b826150c7565b604082019050919050565b6000614223602983614a13565b915061422e82615116565b604082019050919050565b6000614246601283614a13565b915061425182615165565b602082019050919050565b6000614269600883614a13565b91506142748261518e565b602082019050919050565b600061428c602083614a13565b9150614297826151b7565b602082019050919050565b60006142af602c83614a13565b91506142ba826151e0565b604082019050919050565b60006142d2602083614a13565b91506142dd8261522f565b602082019050919050565b60006142f5602983614a13565b915061430082615258565b604082019050919050565b6000614318602f83614a13565b9150614323826152a7565b604082019050919050565b600061433b601783614a13565b9150614346826152f6565b602082019050919050565b600061435e601b83614a13565b91506143698261531f565b602082019050919050565b6000614381602183614a13565b915061438c82615348565b604082019050919050565b60006143a4600e83614a13565b91506143af82615397565b602082019050919050565b60006143c7601783614a13565b91506143d2826153c0565b602082019050919050565b60006143ea601183614a13565b91506143f5826153e9565b602082019050919050565b600061440d603183614a13565b915061441882615412565b604082019050919050565b6000614430602c83614a13565b915061443b82615461565b604082019050919050565b6000614453601083614a13565b915061445e826154b0565b602082019050919050565b61447281614bae565b82525050565b61448181614bae565b82525050565b60006144938285614041565b915061449f8284614041565b91508190509392505050565b60006020820190506144c06000830184613f53565b92915050565b60006080820190506144db6000830187613f53565b6144e86020830186613f53565b6144f56040830185614478565b81810360608301526145078184613fcf565b905095945050505050565b6000602082019050818103600083015261452c8184613f62565b905092915050565b60006020820190506145496000830184613fc0565b92915050565b600060208201905081810360008301526145698184614008565b905092915050565b6000602082019050818103600083015261458a81614072565b9050919050565b600060208201905081810360008301526145aa81614095565b9050919050565b600060208201905081810360008301526145ca816140b8565b9050919050565b600060208201905081810360008301526145ea816140db565b9050919050565b6000602082019050818103600083015261460a816140fe565b9050919050565b6000602082019050818103600083015261462a81614121565b9050919050565b6000602082019050818103600083015261464a81614144565b9050919050565b6000602082019050818103600083015261466a81614167565b9050919050565b6000602082019050818103600083015261468a8161418a565b9050919050565b600060208201905081810360008301526146aa816141ad565b9050919050565b600060208201905081810360008301526146ca816141d0565b9050919050565b600060208201905081810360008301526146ea816141f3565b9050919050565b6000602082019050818103600083015261470a81614216565b9050919050565b6000602082019050818103600083015261472a81614239565b9050919050565b6000602082019050818103600083015261474a8161425c565b9050919050565b6000602082019050818103600083015261476a8161427f565b9050919050565b6000602082019050818103600083015261478a816142a2565b9050919050565b600060208201905081810360008301526147aa816142c5565b9050919050565b600060208201905081810360008301526147ca816142e8565b9050919050565b600060208201905081810360008301526147ea8161430b565b9050919050565b6000602082019050818103600083015261480a8161432e565b9050919050565b6000602082019050818103600083015261482a81614351565b9050919050565b6000602082019050818103600083015261484a81614374565b9050919050565b6000602082019050818103600083015261486a81614397565b9050919050565b6000602082019050818103600083015261488a816143ba565b9050919050565b600060208201905081810360008301526148aa816143dd565b9050919050565b600060208201905081810360008301526148ca81614400565b9050919050565b600060208201905081810360008301526148ea81614423565b9050919050565b6000602082019050818103600083015261490a81614446565b9050919050565b60006020820190506149266000830184614478565b92915050565b6000614936614947565b90506149428282614c2c565b919050565b6000604051905090565b600067ffffffffffffffff82111561496c5761496b614dc2565b5b61497582614e0f565b9050602081019050919050565b600067ffffffffffffffff82111561499d5761499c614dc2565b5b6149a682614e0f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a3a82614bae565b9150614a4583614bae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7a57614a79614cd7565b5b828201905092915050565b6000614a9082614bae565b9150614a9b83614bae565b925082614aab57614aaa614d06565b5b828204905092915050565b6000614ac182614bae565b9150614acc83614bae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b0557614b04614cd7565b5b828202905092915050565b6000614b1b82614bae565b9150614b2683614bae565b925082821015614b3957614b38614cd7565b5b828203905092915050565b6000614b4f82614b8e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614be5578082015181840152602081019050614bca565b83811115614bf4576000848401525b50505050565b60006002820490506001821680614c1257607f821691505b60208210811415614c2657614c25614d35565b5b50919050565b614c3582614e0f565b810181811067ffffffffffffffff82111715614c5457614c53614dc2565b5b80604052505050565b6000614c6882614bae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c9b57614c9a614cd7565b5b600182019050919050565b6000614cb182614bae565b9150614cbc83614bae565b925082614ccc57614ccb614d06565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5055424c49435f53414c455f434c4f5345440000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4558434545445f505249564154455f53414c4500000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f455843454544535f4d41585f535550504c590000000000000000000000000000600082015250565b7f534f4c445f4f5554000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4558434545445f50524553414c455f4d41585f4d494e54000000000000000000600082015250565b7f455843454544535f4d41585f5045525f5452414e53414354494f4e0000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f50524553414c45000000000000000000000000000000000000600082015250565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b7f4e4f545f494e5f414c4c4f575f4c495354000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b6154e281614b44565b81146154ed57600080fd5b50565b6154f981614b56565b811461550457600080fd5b50565b61551081614b62565b811461551b57600080fd5b50565b61552781614bae565b811461553257600080fd5b5056fea2646970667358221220b88ab73f35a1eeda6b3806ac100aaac1b870c144ed6f76d6466b4a3d6bff48f164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5579717a555a7145695345616837364c51506379386e33697366486d79423479364d387443727573627247583f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmUyqzUZqEiSEah76LQPcy8n3isfHmyB4y6M8tCrusbrGX?

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5579717a555a7145695345616837364c51506379386e33
Arg [3] : 697366486d79423479364d387443727573627247583f00000000000000000000


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.