ETH Price: $2,520.54 (+2.94%)

Token

The 8.1: Sunny (Sunny)
 

Overview

Max Total Supply

565 Sunny

Holders

202

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Sunny
0xbc91022C4663D564640b67f9a6581417efB6655B
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Sunny

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Sunny.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

import "./ERC721A.sol";
import "./Counters.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";

contract Sunny is Ownable, ERC721A, ReentrancyGuard {
    string private _baseTokenURI;
    mapping(address => uint256) public allowlist;

    uint256 private _standardPackMint;
    uint256 private _premiumPackMint;
    uint256 private _totalStandardPacks;

    uint256 private _standardPackFee;

    uint256 public totalMint;
    uint256 public soldStandardPack;

    constructor() ERC721A("The 8.1: Sunny", "Sunny") {
        _totalStandardPacks = 81;
        _standardPackFee = .049 ether;
        _standardPackMint = 9;
        soldStandardPack = 0;
        totalMint = 1100;
    }

    //start Minting
    function mint(uint256 quantity) external payable onlyOwner {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(
            totalSupply() + quantity <= totalMint,
            "Can't min more than define total supply"
        );
        _safeMint(msg.sender, quantity);
    }

    function allowlistMint(uint256 quantity) external payable nonReentrant {
        require(
            totalSupply() + quantity <= totalMint,
            "Can't min more than define total supply"
        );
        require(
            allowlist[msg.sender] >= quantity,
            "not eligible for allowlist mint"
        );
        allowlist[msg.sender] = allowlist[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
    }

    function checkInAllowListForUser(address userAddress)
        external
        view
        returns (uint256)
    {
        require(allowlist[userAddress] > 0, "User Not in Standard Pack List");
        return allowlist[userAddress];
    }

    //End Minting

    function getStandardPack() external view returns (uint256) {
        return _totalStandardPacks;
    }

    function setStandardPack(uint256 totalStandardPack) external onlyOwner {
        _totalStandardPacks = totalStandardPack;
    }

    function getStandardPackFee() external view returns (uint256) {
        return _standardPackFee;
    }

    function setStandardPackFee(uint256 packFee) external onlyOwner {
        _standardPackFee = packFee;
    }

    function setStandardPackMint(uint256 mintNumber) external onlyOwner {
        _standardPackMint = mintNumber;
    }

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function seedAllowlist(
        address[] memory addresses,
        uint256[] memory numSlots
    ) external onlyOwner {
        require(
            addresses.length == numSlots.length,
            "addresses does not match numSlots length"
        );
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = numSlots[i];
        }
    }

    function buyStandardPack(uint256 noOfPack) external payable nonReentrant {
        require(
            soldStandardPack <= _totalStandardPacks,
            "All Standard Packs has been sold"
        );
        require(
            balanceOf(msg.sender) <= _standardPackMint,
            "Maximum purchase limit reached"
        );
        require(_standardPackFee * noOfPack == msg.value, "Invalid Fee");
        _safeMint(msg.sender, noOfPack);
        soldStandardPack = soldStandardPack + noOfPack;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

File 2 of 14 : 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 3 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 5 of 14 : 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 6 of 14 : 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 7 of 14 : 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 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 9 of 14 : 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 10 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './IERC721Enumerable.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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();
        string memory _tokenExtension= string(abi.encodePacked(tokenId.toString(), ".json"));
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenExtension)) : '';
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        _addressData[to].balance += uint128(quantity);
        _addressData[to].numberMinted += uint128(quantity);

        _ownerships[startTokenId].addr = to;
        _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            if (safe) {
                require(
                    _checkOnERC721Received(address(0), to, updatedIndex, _data),
                    'ERC721A: transfer to non ERC721Receiver implementer'
                );
            }
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId].addr = to;
        _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId].addr = prevOwnership.addr;
                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 11 of 14 : 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 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 14 : 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 14 of 14 : 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);
            }
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"noOfPack","type":"uint256"}],"name":"buyStandardPack","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"checkInAllowListForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStandardPack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStandardPackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","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":"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":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","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":"totalStandardPack","type":"uint256"}],"name":"setStandardPack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"packFee","type":"uint256"}],"name":"setStandardPackFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintNumber","type":"uint256"}],"name":"setStandardPackMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldStandardPack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","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"}]

608060405260006001553480156200001657600080fd5b506040518060400160405280600e81526020017f54686520382e313a2053756e6e790000000000000000000000000000000000008152506040518060400160405280600581526020017f53756e6e79000000000000000000000000000000000000000000000000000000815250620000a3620000976200011460201b60201c565b6200011c60201b60201c565b8160029080519060200190620000bb929190620001e0565b508060039080519060200190620000d4929190620001e0565b50505060016008819055506051600d8190555066ae153d89fe8000600e819055506009600b81905550600060108190555061044c600f81905550620002f5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ee9062000290565b90600052602060002090601f0160209004810192826200021257600085556200025e565b82601f106200022d57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025d57825182559160200191906001019062000240565b5b5090506200026d919062000271565b5090565b5b808211156200028c57600081600090555060010162000272565b5090565b60006002820490506001821680620002a957607f821691505b60208210811415620002c057620002bf620002c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614be380620003056000396000f3fe6080604052600436106101f95760003560e01c8063714805931161010d578063a7cd52cb116100a0578063c180526a1161006f578063c180526a14610713578063c47046581461072f578063c87b56dd1461075a578063e985e9c514610797578063f2fde38b146107d4576101f9565b8063a7cd52cb14610668578063b05863d5146106a5578063b5b5df27146106ce578063b88d4fde146106ea576101f9565b806395d89b41116100dc57806395d89b41146105cf578063a0712d68146105fa578063a22cb46514610616578063a5104d4d1461063f576101f9565b80637148059314610539578063715018a6146105645780638da5cb5b1461057b57806393a1d312146105a6576101f9565b80633ccfd60b1161019057806359a7715a1161015f57806359a7715a1461042e5780636352211e146104595780636691a0451461049657806367f9c63d146104d357806370a08231146104fc576101f9565b80633ccfd60b1461038857806342842e0e1461039f5780634f6ccce7146103c857806355f804b314610405576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe578063031af7e21461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061345b565b6107fd565b6040516102329190613adb565b60405180910390f35b34801561024757600080fd5b50610250610947565b60405161025d9190613e98565b60405180910390f35b34801561027257600080fd5b5061027b61094d565b6040516102889190613af6565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190613502565b6109df565b6040516102c59190613a74565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f091906133a3565b610a64565b005b34801561030357600080fd5b5061030c610b7d565b6040516103199190613e98565b60405180910390f35b34801561032e57600080fd5b506103496004803603810190610344919061328d565b610b87565b005b34801561035757600080fd5b50610372600480360381019061036d91906133a3565b610b97565b60405161037f9190613e98565b60405180910390f35b34801561039457600080fd5b5061039d610d95565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061328d565b610f16565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190613502565b610f36565b6040516103fc9190613e98565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906134b5565b610f89565b005b34801561043a57600080fd5b5061044361101b565b6040516104509190613e98565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190613502565b611021565b60405161048d9190613a74565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190613220565b611037565b6040516104ca9190613e98565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613502565b611101565b005b34801561050857600080fd5b50610523600480360381019061051e9190613220565b611187565b6040516105309190613e98565b60405180910390f35b34801561054557600080fd5b5061054e611270565b60405161055b9190613e98565b60405180910390f35b34801561057057600080fd5b5061057961127a565b005b34801561058757600080fd5b50610590611302565b60405161059d9190613a74565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613502565b61132b565b005b3480156105db57600080fd5b506105e46113b1565b6040516105f19190613af6565b60405180910390f35b610614600480360381019061060f9190613502565b611443565b005b34801561062257600080fd5b5061063d60048036038101906106389190613363565b611523565b005b34801561064b57600080fd5b5061066660048036038101906106619190613502565b6116a4565b005b34801561067457600080fd5b5061068f600480360381019061068a9190613220565b61172a565b60405161069c9190613e98565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906133e3565b611742565b005b6106e860048036038101906106e39190613502565b61189e565b005b3480156106f657600080fd5b50610711600480360381019061070c91906132e0565b6119f8565b005b61072d60048036038101906107289190613502565b611a54565b005b34801561073b57600080fd5b50610744611c1e565b6040516107519190613e98565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190613502565b611c28565b60405161078e9190613af6565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061324d565b611cf4565b6040516107cb9190613adb565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190613220565b611d88565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610940575061093f82611e80565b5b9050919050565b60105481565b60606002805461095c90614206565b80601f016020809104026020016040519081016040528092919081815260200182805461098890614206565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b5050505050905090565b60006109ea82611eea565b610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613e58565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6f82611021565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790613d38565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aff611ef8565b73ffffffffffffffffffffffffffffffffffffffff161480610b2e5750610b2d81610b28611ef8565b611cf4565b5b610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490613bf8565b60405180910390fd5b610b78838383611f00565b505050565b6000600154905090565b610b92838383611fb2565b505050565b6000610ba283611187565b8210610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613b18565b60405180910390fd5b6000610bed610b7d565b905060008060005b83811015610d53576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ce757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3f5786841415610d30578195505050505050610d8f565b8380610d3b90614269565b9450505b508080610d4b90614269565b915050610bf5565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690613e18565b60405180910390fd5b92915050565b610d9d611ef8565b73ffffffffffffffffffffffffffffffffffffffff16610dbb611302565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613cb8565b60405180910390fd5b60026008541415610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613e38565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610e8590613a5f565b60006040518083038185875af1925050503d8060008114610ec2576040519150601f19603f3d011682016040523d82523d6000602084013e610ec7565b606091505b5050905080610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613d58565b60405180910390fd5b506001600881905550565b610f31838383604051806020016040528060008152506119f8565b505050565b6000610f40610b7d565b8210610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613b98565b60405180910390fd5b819050919050565b610f91611ef8565b73ffffffffffffffffffffffffffffffffffffffff16610faf611302565b73ffffffffffffffffffffffffffffffffffffffff1614611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90613cb8565b60405180910390fd5b818160099190611016929190612ed8565b505050565b600f5481565b600061102c826124fb565b600001519050919050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613c18565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611109611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611127611302565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613cb8565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613c38565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6000600e54905090565b611282611ef8565b73ffffffffffffffffffffffffffffffffffffffff166112a0611302565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90613cb8565b60405180910390fd5b6113006000612656565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611333611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611351611302565b73ffffffffffffffffffffffffffffffffffffffff16146113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90613cb8565b60405180910390fd5b80600b8190555050565b6060600380546113c090614206565b80601f01602080910402602001604051908101604052809291908181526020018280546113ec90614206565b80156114395780601f1061140e57610100808354040283529160200191611439565b820191906000526020600020905b81548152906001019060200180831161141c57829003601f168201915b5050505050905090565b61144b611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611469611302565b73ffffffffffffffffffffffffffffffffffffffff16146114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613cb8565b60405180910390fd5b600f54816114cb610b7d565b6114d59190613ff5565b1115611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613b38565b60405180910390fd5b611520338261271a565b50565b61152b611ef8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613cf8565b60405180910390fd5b80600760006115a6611ef8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611653611ef8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116989190613adb565b60405180910390a35050565b6116ac611ef8565b73ffffffffffffffffffffffffffffffffffffffff166116ca611302565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790613cb8565b60405180910390fd5b80600e8190555050565b600a6020528060005260406000206000915090505481565b61174a611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611768611302565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613cb8565b60405180910390fd5b8051825114611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613e78565b60405180910390fd5b60005b82518110156118995781818151811061182157611820614370565b5b6020026020010151600a60008584815181106118405761183f614370565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061189190614269565b915050611805565b505050565b600260085414156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90613e38565b60405180910390fd5b6002600881905550600d546010541115611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613dd8565b60405180910390fd5b600b5461193f33611187565b1115611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613c58565b60405180910390fd5b3481600e5461198f919061407c565b146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690613bd8565b60405180910390fd5b6119d9338261271a565b806010546119e79190613ff5565b601081905550600160088190555050565b611a03848484611fb2565b611a0f84848484612738565b611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4590613d78565b60405180910390fd5b50505050565b60026008541415611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190613e38565b60405180910390fd5b6002600881905550600f5481611aae610b7d565b611ab89190613ff5565b1115611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090613b38565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613c78565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bc691906140d6565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c13338261271a565b600160088190555050565b6000600d54905090565b6060611c3382611eea565b611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990613cd8565b60405180910390fd5b6000611c7c6128cf565b90506000611c8984612961565b604051602001611c999190613a3d565b60405160208183030381529060405290506000825111611cc85760405180602001604052806000815250611ceb565b8181604051602001611cdb929190613a19565b6040516020818303038152906040525b92505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d90611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611dae611302565b73ffffffffffffffffffffffffffffffffffffffff1614611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90613cb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613b58565b60405180910390fd5b611e7d81612656565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fbd826124fb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe4611ef8565b73ffffffffffffffffffffffffffffffffffffffff1614806120405750612009611ef8565b73ffffffffffffffffffffffffffffffffffffffff16612028846109df565b73ffffffffffffffffffffffffffffffffffffffff16145b8061205c575061205b8260000151612056611ef8565b611cf4565b5b90508061209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613d18565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613c98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790613bb8565b60405180910390fd5b61218d8585856001612ac2565b61219d6000848460000151611f00565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001846123749190613ff5565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561248b576123ea81611eea565b1561248a5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f38686866001612ac8565b505050505050565b612503612f5e565b61250c82611eea565b61254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254290613b78565b60405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263d578092505050612651565b508080612649906141dc565b915050612551565b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612734828260405180602001604052806000815250612ace565b5050565b60006127598473ffffffffffffffffffffffffffffffffffffffff16612ae0565b156128c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612782611ef8565b8786866040518563ffffffff1660e01b81526004016127a49493929190613a8f565b602060405180830381600087803b1580156127be57600080fd5b505af19250505080156127ef57506040513d601f19601f820116820180604052508101906127ec9190613488565b60015b612872573d806000811461281f576040519150601f19603f3d011682016040523d82523d6000602084013e612824565b606091505b5060008151141561286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190613d78565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128c7565b600190505b949350505050565b6060600980546128de90614206565b80601f016020809104026020016040519081016040528092919081815260200182805461290a90614206565b80156129575780601f1061292c57610100808354040283529160200191612957565b820191906000526020600020905b81548152906001019060200180831161293a57829003601f168201915b5050505050905090565b606060008214156129a9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612abd565b600082905060005b600082146129db5780806129c490614269565b915050600a826129d4919061404b565b91506129b1565b60008167ffffffffffffffff8111156129f7576129f661439f565b5b6040519080825280601f01601f191660200182016040528015612a295781602001600182028036833780820191505090505b5090505b60008514612ab657600182612a4291906140d6565b9150600a85612a5191906142b2565b6030612a5d9190613ff5565b60f81b818381518110612a7357612a72614370565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aaf919061404b565b9450612a2d565b8093505050505b919050565b50505050565b50505050565b612adb8383836001612af3565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6190613db8565b60405180910390fd5b612b7381611eea565b15612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa90613d98565b60405180910390fd5b60008411612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed90613df8565b60405180910390fd5b612c036000868387612ac2565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612c709190613faf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16612d139190613faf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ebb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612e9a57612e5a6000888488612738565b612e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9090613d78565b60405180910390fd5b5b8180612ea590614269565b9250508080612eb390614269565b915050612de3565b5080600181905550612ed06000878488612ac8565b505050505050565b828054612ee490614206565b90600052602060002090601f016020900481019282612f065760008555612f4d565b82601f10612f1f57803560ff1916838001178555612f4d565b82800160010185558215612f4d579182015b82811115612f4c578235825591602001919060010190612f31565b5b509050612f5a9190612f98565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612fb1576000816000905550600101612f99565b5090565b6000612fc8612fc384613ed8565b613eb3565b90508083825260208201905082856020860282011115612feb57612fea6143d8565b5b60005b8581101561301b578161300188826130d7565b845260208401935060208301925050600181019050612fee565b5050509392505050565b600061303861303384613f04565b613eb3565b9050808382526020820190508285602086028201111561305b5761305a6143d8565b5b60005b8581101561308b5781613071888261320b565b84526020840193506020830192505060018101905061305e565b5050509392505050565b60006130a86130a384613f30565b613eb3565b9050828152602081018484840111156130c4576130c36143dd565b5b6130cf84828561419a565b509392505050565b6000813590506130e681614b51565b92915050565b600082601f830112613101576131006143d3565b5b8135613111848260208601612fb5565b91505092915050565b600082601f83011261312f5761312e6143d3565b5b813561313f848260208601613025565b91505092915050565b60008135905061315781614b68565b92915050565b60008135905061316c81614b7f565b92915050565b60008151905061318181614b7f565b92915050565b600082601f83011261319c5761319b6143d3565b5b81356131ac848260208601613095565b91505092915050565b60008083601f8401126131cb576131ca6143d3565b5b8235905067ffffffffffffffff8111156131e8576131e76143ce565b5b602083019150836001820283011115613204576132036143d8565b5b9250929050565b60008135905061321a81614b96565b92915050565b600060208284031215613236576132356143e7565b5b6000613244848285016130d7565b91505092915050565b60008060408385031215613264576132636143e7565b5b6000613272858286016130d7565b9250506020613283858286016130d7565b9150509250929050565b6000806000606084860312156132a6576132a56143e7565b5b60006132b4868287016130d7565b93505060206132c5868287016130d7565b92505060406132d68682870161320b565b9150509250925092565b600080600080608085870312156132fa576132f96143e7565b5b6000613308878288016130d7565b9450506020613319878288016130d7565b935050604061332a8782880161320b565b925050606085013567ffffffffffffffff81111561334b5761334a6143e2565b5b61335787828801613187565b91505092959194509250565b6000806040838503121561337a576133796143e7565b5b6000613388858286016130d7565b925050602061339985828601613148565b9150509250929050565b600080604083850312156133ba576133b96143e7565b5b60006133c8858286016130d7565b92505060206133d98582860161320b565b9150509250929050565b600080604083850312156133fa576133f96143e7565b5b600083013567ffffffffffffffff811115613418576134176143e2565b5b613424858286016130ec565b925050602083013567ffffffffffffffff811115613445576134446143e2565b5b6134518582860161311a565b9150509250929050565b600060208284031215613471576134706143e7565b5b600061347f8482850161315d565b91505092915050565b60006020828403121561349e5761349d6143e7565b5b60006134ac84828501613172565b91505092915050565b600080602083850312156134cc576134cb6143e7565b5b600083013567ffffffffffffffff8111156134ea576134e96143e2565b5b6134f6858286016131b5565b92509250509250929050565b600060208284031215613518576135176143e7565b5b60006135268482850161320b565b91505092915050565b6135388161410a565b82525050565b6135478161411c565b82525050565b600061355882613f61565b6135628185613f77565b93506135728185602086016141a9565b61357b816143ec565b840191505092915050565b600061359182613f6c565b61359b8185613f93565b93506135ab8185602086016141a9565b6135b4816143ec565b840191505092915050565b60006135ca82613f6c565b6135d48185613fa4565b93506135e48185602086016141a9565b80840191505092915050565b60006135fd602283613f93565b9150613608826143fd565b604082019050919050565b6000613620602783613f93565b915061362b8261444c565b604082019050919050565b6000613643602683613f93565b915061364e8261449b565b604082019050919050565b6000613666602a83613f93565b9150613671826144ea565b604082019050919050565b6000613689602383613f93565b915061369482614539565b604082019050919050565b60006136ac602583613f93565b91506136b782614588565b604082019050919050565b60006136cf600b83613f93565b91506136da826145d7565b602082019050919050565b60006136f2603983613f93565b91506136fd82614600565b604082019050919050565b6000613715601e83613f93565b91506137208261464f565b602082019050919050565b6000613738602b83613f93565b915061374382614678565b604082019050919050565b600061375b601e83613f93565b9150613766826146c7565b602082019050919050565b600061377e601f83613f93565b9150613789826146f0565b602082019050919050565b60006137a1602683613f93565b91506137ac82614719565b604082019050919050565b60006137c4600583613fa4565b91506137cf82614768565b600582019050919050565b60006137e7602083613f93565b91506137f282614791565b602082019050919050565b600061380a602f83613f93565b9150613815826147ba565b604082019050919050565b600061382d601a83613f93565b915061383882614809565b602082019050919050565b6000613850603283613f93565b915061385b82614832565b604082019050919050565b6000613873602283613f93565b915061387e82614881565b604082019050919050565b6000613896600083613f88565b91506138a1826148d0565b600082019050919050565b60006138b9601083613f93565b91506138c4826148d3565b602082019050919050565b60006138dc603383613f93565b91506138e7826148fc565b604082019050919050565b60006138ff601d83613f93565b915061390a8261494b565b602082019050919050565b6000613922602183613f93565b915061392d82614974565b604082019050919050565b6000613945602083613f93565b9150613950826149c3565b602082019050919050565b6000613968602883613f93565b9150613973826149ec565b604082019050919050565b600061398b602e83613f93565b915061399682614a3b565b604082019050919050565b60006139ae601f83613f93565b91506139b982614a8a565b602082019050919050565b60006139d1602d83613f93565b91506139dc82614ab3565b604082019050919050565b60006139f4602883613f93565b91506139ff82614b02565b604082019050919050565b613a1381614190565b82525050565b6000613a2582856135bf565b9150613a3182846135bf565b91508190509392505050565b6000613a4982846135bf565b9150613a54826137b7565b915081905092915050565b6000613a6a82613889565b9150819050919050565b6000602082019050613a89600083018461352f565b92915050565b6000608082019050613aa4600083018761352f565b613ab1602083018661352f565b613abe6040830185613a0a565b8181036060830152613ad0818461354d565b905095945050505050565b6000602082019050613af0600083018461353e565b92915050565b60006020820190508181036000830152613b108184613586565b905092915050565b60006020820190508181036000830152613b31816135f0565b9050919050565b60006020820190508181036000830152613b5181613613565b9050919050565b60006020820190508181036000830152613b7181613636565b9050919050565b60006020820190508181036000830152613b9181613659565b9050919050565b60006020820190508181036000830152613bb18161367c565b9050919050565b60006020820190508181036000830152613bd18161369f565b9050919050565b60006020820190508181036000830152613bf1816136c2565b9050919050565b60006020820190508181036000830152613c11816136e5565b9050919050565b60006020820190508181036000830152613c3181613708565b9050919050565b60006020820190508181036000830152613c518161372b565b9050919050565b60006020820190508181036000830152613c718161374e565b9050919050565b60006020820190508181036000830152613c9181613771565b9050919050565b60006020820190508181036000830152613cb181613794565b9050919050565b60006020820190508181036000830152613cd1816137da565b9050919050565b60006020820190508181036000830152613cf1816137fd565b9050919050565b60006020820190508181036000830152613d1181613820565b9050919050565b60006020820190508181036000830152613d3181613843565b9050919050565b60006020820190508181036000830152613d5181613866565b9050919050565b60006020820190508181036000830152613d71816138ac565b9050919050565b60006020820190508181036000830152613d91816138cf565b9050919050565b60006020820190508181036000830152613db1816138f2565b9050919050565b60006020820190508181036000830152613dd181613915565b9050919050565b60006020820190508181036000830152613df181613938565b9050919050565b60006020820190508181036000830152613e118161395b565b9050919050565b60006020820190508181036000830152613e318161397e565b9050919050565b60006020820190508181036000830152613e51816139a1565b9050919050565b60006020820190508181036000830152613e71816139c4565b9050919050565b60006020820190508181036000830152613e91816139e7565b9050919050565b6000602082019050613ead6000830184613a0a565b92915050565b6000613ebd613ece565b9050613ec98282614238565b919050565b6000604051905090565b600067ffffffffffffffff821115613ef357613ef261439f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f1f57613f1e61439f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f4b57613f4a61439f565b5b613f54826143ec565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fba82614154565b9150613fc583614154565b9250826fffffffffffffffffffffffffffffffff03821115613fea57613fe96142e3565b5b828201905092915050565b600061400082614190565b915061400b83614190565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140405761403f6142e3565b5b828201905092915050565b600061405682614190565b915061406183614190565b92508261407157614070614312565b5b828204905092915050565b600061408782614190565b915061409283614190565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140cb576140ca6142e3565b5b828202905092915050565b60006140e182614190565b91506140ec83614190565b9250828210156140ff576140fe6142e3565b5b828203905092915050565b600061411582614170565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141c75780820151818401526020810190506141ac565b838111156141d6576000848401525b50505050565b60006141e782614190565b915060008214156141fb576141fa6142e3565b5b600182039050919050565b6000600282049050600182168061421e57607f821691505b6020821081141561423257614231614341565b5b50919050565b614241826143ec565b810181811067ffffffffffffffff821117156142605761425f61439f565b5b80604052505050565b600061427482614190565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a7576142a66142e3565b5b600182019050919050565b60006142bd82614190565b91506142c883614190565b9250826142d8576142d7614312565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e206d6f7265207468616e20646566696e6520746f74616c60008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420466565000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f55736572204e6f7420696e205374616e64617264205061636b204c6973740000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d207075726368617365206c696d697420726561636865640000600082015250565b7f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c205374616e64617264205061636b7320686173206265656e20736f6c64600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b614b5a8161410a565b8114614b6557600080fd5b50565b614b718161411c565b8114614b7c57600080fd5b50565b614b8881614128565b8114614b9357600080fd5b50565b614b9f81614190565b8114614baa57600080fd5b5056fea2646970667358221220d25428d0cad0bf0bb94912f6d4a1c57d0e874ea4d1fc8ed57db4d77fc983d26464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063714805931161010d578063a7cd52cb116100a0578063c180526a1161006f578063c180526a14610713578063c47046581461072f578063c87b56dd1461075a578063e985e9c514610797578063f2fde38b146107d4576101f9565b8063a7cd52cb14610668578063b05863d5146106a5578063b5b5df27146106ce578063b88d4fde146106ea576101f9565b806395d89b41116100dc57806395d89b41146105cf578063a0712d68146105fa578063a22cb46514610616578063a5104d4d1461063f576101f9565b80637148059314610539578063715018a6146105645780638da5cb5b1461057b57806393a1d312146105a6576101f9565b80633ccfd60b1161019057806359a7715a1161015f57806359a7715a1461042e5780636352211e146104595780636691a0451461049657806367f9c63d146104d357806370a08231146104fc576101f9565b80633ccfd60b1461038857806342842e0e1461039f5780634f6ccce7146103c857806355f804b314610405576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f757806323b872dd146103225780632f745c591461034b576101f9565b806301ffc9a7146101fe578063031af7e21461023b57806306fdde0314610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061345b565b6107fd565b6040516102329190613adb565b60405180910390f35b34801561024757600080fd5b50610250610947565b60405161025d9190613e98565b60405180910390f35b34801561027257600080fd5b5061027b61094d565b6040516102889190613af6565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190613502565b6109df565b6040516102c59190613a74565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f091906133a3565b610a64565b005b34801561030357600080fd5b5061030c610b7d565b6040516103199190613e98565b60405180910390f35b34801561032e57600080fd5b506103496004803603810190610344919061328d565b610b87565b005b34801561035757600080fd5b50610372600480360381019061036d91906133a3565b610b97565b60405161037f9190613e98565b60405180910390f35b34801561039457600080fd5b5061039d610d95565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061328d565b610f16565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190613502565b610f36565b6040516103fc9190613e98565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906134b5565b610f89565b005b34801561043a57600080fd5b5061044361101b565b6040516104509190613e98565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190613502565b611021565b60405161048d9190613a74565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190613220565b611037565b6040516104ca9190613e98565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613502565b611101565b005b34801561050857600080fd5b50610523600480360381019061051e9190613220565b611187565b6040516105309190613e98565b60405180910390f35b34801561054557600080fd5b5061054e611270565b60405161055b9190613e98565b60405180910390f35b34801561057057600080fd5b5061057961127a565b005b34801561058757600080fd5b50610590611302565b60405161059d9190613a74565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613502565b61132b565b005b3480156105db57600080fd5b506105e46113b1565b6040516105f19190613af6565b60405180910390f35b610614600480360381019061060f9190613502565b611443565b005b34801561062257600080fd5b5061063d60048036038101906106389190613363565b611523565b005b34801561064b57600080fd5b5061066660048036038101906106619190613502565b6116a4565b005b34801561067457600080fd5b5061068f600480360381019061068a9190613220565b61172a565b60405161069c9190613e98565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906133e3565b611742565b005b6106e860048036038101906106e39190613502565b61189e565b005b3480156106f657600080fd5b50610711600480360381019061070c91906132e0565b6119f8565b005b61072d60048036038101906107289190613502565b611a54565b005b34801561073b57600080fd5b50610744611c1e565b6040516107519190613e98565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190613502565b611c28565b60405161078e9190613af6565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061324d565b611cf4565b6040516107cb9190613adb565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190613220565b611d88565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610940575061093f82611e80565b5b9050919050565b60105481565b60606002805461095c90614206565b80601f016020809104026020016040519081016040528092919081815260200182805461098890614206565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b5050505050905090565b60006109ea82611eea565b610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613e58565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6f82611021565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790613d38565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aff611ef8565b73ffffffffffffffffffffffffffffffffffffffff161480610b2e5750610b2d81610b28611ef8565b611cf4565b5b610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490613bf8565b60405180910390fd5b610b78838383611f00565b505050565b6000600154905090565b610b92838383611fb2565b505050565b6000610ba283611187565b8210610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613b18565b60405180910390fd5b6000610bed610b7d565b905060008060005b83811015610d53576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ce757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3f5786841415610d30578195505050505050610d8f565b8380610d3b90614269565b9450505b508080610d4b90614269565b915050610bf5565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690613e18565b60405180910390fd5b92915050565b610d9d611ef8565b73ffffffffffffffffffffffffffffffffffffffff16610dbb611302565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613cb8565b60405180910390fd5b60026008541415610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613e38565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610e8590613a5f565b60006040518083038185875af1925050503d8060008114610ec2576040519150601f19603f3d011682016040523d82523d6000602084013e610ec7565b606091505b5050905080610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613d58565b60405180910390fd5b506001600881905550565b610f31838383604051806020016040528060008152506119f8565b505050565b6000610f40610b7d565b8210610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613b98565b60405180910390fd5b819050919050565b610f91611ef8565b73ffffffffffffffffffffffffffffffffffffffff16610faf611302565b73ffffffffffffffffffffffffffffffffffffffff1614611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90613cb8565b60405180910390fd5b818160099190611016929190612ed8565b505050565b600f5481565b600061102c826124fb565b600001519050919050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613c18565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611109611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611127611302565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613cb8565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90613c38565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6000600e54905090565b611282611ef8565b73ffffffffffffffffffffffffffffffffffffffff166112a0611302565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90613cb8565b60405180910390fd5b6113006000612656565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611333611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611351611302565b73ffffffffffffffffffffffffffffffffffffffff16146113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e90613cb8565b60405180910390fd5b80600b8190555050565b6060600380546113c090614206565b80601f01602080910402602001604051908101604052809291908181526020018280546113ec90614206565b80156114395780601f1061140e57610100808354040283529160200191611439565b820191906000526020600020905b81548152906001019060200180831161141c57829003601f168201915b5050505050905090565b61144b611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611469611302565b73ffffffffffffffffffffffffffffffffffffffff16146114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613cb8565b60405180910390fd5b600f54816114cb610b7d565b6114d59190613ff5565b1115611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613b38565b60405180910390fd5b611520338261271a565b50565b61152b611ef8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613cf8565b60405180910390fd5b80600760006115a6611ef8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611653611ef8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116989190613adb565b60405180910390a35050565b6116ac611ef8565b73ffffffffffffffffffffffffffffffffffffffff166116ca611302565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790613cb8565b60405180910390fd5b80600e8190555050565b600a6020528060005260406000206000915090505481565b61174a611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611768611302565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613cb8565b60405180910390fd5b8051825114611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613e78565b60405180910390fd5b60005b82518110156118995781818151811061182157611820614370565b5b6020026020010151600a60008584815181106118405761183f614370565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061189190614269565b915050611805565b505050565b600260085414156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90613e38565b60405180910390fd5b6002600881905550600d546010541115611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613dd8565b60405180910390fd5b600b5461193f33611187565b1115611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613c58565b60405180910390fd5b3481600e5461198f919061407c565b146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690613bd8565b60405180910390fd5b6119d9338261271a565b806010546119e79190613ff5565b601081905550600160088190555050565b611a03848484611fb2565b611a0f84848484612738565b611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4590613d78565b60405180910390fd5b50505050565b60026008541415611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190613e38565b60405180910390fd5b6002600881905550600f5481611aae610b7d565b611ab89190613ff5565b1115611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090613b38565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613c78565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bc691906140d6565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c13338261271a565b600160088190555050565b6000600d54905090565b6060611c3382611eea565b611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990613cd8565b60405180910390fd5b6000611c7c6128cf565b90506000611c8984612961565b604051602001611c999190613a3d565b60405160208183030381529060405290506000825111611cc85760405180602001604052806000815250611ceb565b8181604051602001611cdb929190613a19565b6040516020818303038152906040525b92505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d90611ef8565b73ffffffffffffffffffffffffffffffffffffffff16611dae611302565b73ffffffffffffffffffffffffffffffffffffffff1614611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90613cb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613b58565b60405180910390fd5b611e7d81612656565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fbd826124fb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe4611ef8565b73ffffffffffffffffffffffffffffffffffffffff1614806120405750612009611ef8565b73ffffffffffffffffffffffffffffffffffffffff16612028846109df565b73ffffffffffffffffffffffffffffffffffffffff16145b8061205c575061205b8260000151612056611ef8565b611cf4565b5b90508061209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613d18565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613c98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790613bb8565b60405180910390fd5b61218d8585856001612ac2565b61219d6000848460000151611f00565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001846123749190613ff5565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561248b576123ea81611eea565b1561248a5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f38686866001612ac8565b505050505050565b612503612f5e565b61250c82611eea565b61254b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254290613b78565b60405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263d578092505050612651565b508080612649906141dc565b915050612551565b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612734828260405180602001604052806000815250612ace565b5050565b60006127598473ffffffffffffffffffffffffffffffffffffffff16612ae0565b156128c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612782611ef8565b8786866040518563ffffffff1660e01b81526004016127a49493929190613a8f565b602060405180830381600087803b1580156127be57600080fd5b505af19250505080156127ef57506040513d601f19601f820116820180604052508101906127ec9190613488565b60015b612872573d806000811461281f576040519150601f19603f3d011682016040523d82523d6000602084013e612824565b606091505b5060008151141561286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190613d78565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128c7565b600190505b949350505050565b6060600980546128de90614206565b80601f016020809104026020016040519081016040528092919081815260200182805461290a90614206565b80156129575780601f1061292c57610100808354040283529160200191612957565b820191906000526020600020905b81548152906001019060200180831161293a57829003601f168201915b5050505050905090565b606060008214156129a9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612abd565b600082905060005b600082146129db5780806129c490614269565b915050600a826129d4919061404b565b91506129b1565b60008167ffffffffffffffff8111156129f7576129f661439f565b5b6040519080825280601f01601f191660200182016040528015612a295781602001600182028036833780820191505090505b5090505b60008514612ab657600182612a4291906140d6565b9150600a85612a5191906142b2565b6030612a5d9190613ff5565b60f81b818381518110612a7357612a72614370565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aaf919061404b565b9450612a2d565b8093505050505b919050565b50505050565b50505050565b612adb8383836001612af3565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6190613db8565b60405180910390fd5b612b7381611eea565b15612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa90613d98565b60405180910390fd5b60008411612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed90613df8565b60405180910390fd5b612c036000868387612ac2565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612c709190613faf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16612d139190613faf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ebb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612e9a57612e5a6000888488612738565b612e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9090613d78565b60405180910390fd5b5b8180612ea590614269565b9250508080612eb390614269565b915050612de3565b5080600181905550612ed06000878488612ac8565b505050505050565b828054612ee490614206565b90600052602060002090601f016020900481019282612f065760008555612f4d565b82601f10612f1f57803560ff1916838001178555612f4d565b82800160010185558215612f4d579182015b82811115612f4c578235825591602001919060010190612f31565b5b509050612f5a9190612f98565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612fb1576000816000905550600101612f99565b5090565b6000612fc8612fc384613ed8565b613eb3565b90508083825260208201905082856020860282011115612feb57612fea6143d8565b5b60005b8581101561301b578161300188826130d7565b845260208401935060208301925050600181019050612fee565b5050509392505050565b600061303861303384613f04565b613eb3565b9050808382526020820190508285602086028201111561305b5761305a6143d8565b5b60005b8581101561308b5781613071888261320b565b84526020840193506020830192505060018101905061305e565b5050509392505050565b60006130a86130a384613f30565b613eb3565b9050828152602081018484840111156130c4576130c36143dd565b5b6130cf84828561419a565b509392505050565b6000813590506130e681614b51565b92915050565b600082601f830112613101576131006143d3565b5b8135613111848260208601612fb5565b91505092915050565b600082601f83011261312f5761312e6143d3565b5b813561313f848260208601613025565b91505092915050565b60008135905061315781614b68565b92915050565b60008135905061316c81614b7f565b92915050565b60008151905061318181614b7f565b92915050565b600082601f83011261319c5761319b6143d3565b5b81356131ac848260208601613095565b91505092915050565b60008083601f8401126131cb576131ca6143d3565b5b8235905067ffffffffffffffff8111156131e8576131e76143ce565b5b602083019150836001820283011115613204576132036143d8565b5b9250929050565b60008135905061321a81614b96565b92915050565b600060208284031215613236576132356143e7565b5b6000613244848285016130d7565b91505092915050565b60008060408385031215613264576132636143e7565b5b6000613272858286016130d7565b9250506020613283858286016130d7565b9150509250929050565b6000806000606084860312156132a6576132a56143e7565b5b60006132b4868287016130d7565b93505060206132c5868287016130d7565b92505060406132d68682870161320b565b9150509250925092565b600080600080608085870312156132fa576132f96143e7565b5b6000613308878288016130d7565b9450506020613319878288016130d7565b935050604061332a8782880161320b565b925050606085013567ffffffffffffffff81111561334b5761334a6143e2565b5b61335787828801613187565b91505092959194509250565b6000806040838503121561337a576133796143e7565b5b6000613388858286016130d7565b925050602061339985828601613148565b9150509250929050565b600080604083850312156133ba576133b96143e7565b5b60006133c8858286016130d7565b92505060206133d98582860161320b565b9150509250929050565b600080604083850312156133fa576133f96143e7565b5b600083013567ffffffffffffffff811115613418576134176143e2565b5b613424858286016130ec565b925050602083013567ffffffffffffffff811115613445576134446143e2565b5b6134518582860161311a565b9150509250929050565b600060208284031215613471576134706143e7565b5b600061347f8482850161315d565b91505092915050565b60006020828403121561349e5761349d6143e7565b5b60006134ac84828501613172565b91505092915050565b600080602083850312156134cc576134cb6143e7565b5b600083013567ffffffffffffffff8111156134ea576134e96143e2565b5b6134f6858286016131b5565b92509250509250929050565b600060208284031215613518576135176143e7565b5b60006135268482850161320b565b91505092915050565b6135388161410a565b82525050565b6135478161411c565b82525050565b600061355882613f61565b6135628185613f77565b93506135728185602086016141a9565b61357b816143ec565b840191505092915050565b600061359182613f6c565b61359b8185613f93565b93506135ab8185602086016141a9565b6135b4816143ec565b840191505092915050565b60006135ca82613f6c565b6135d48185613fa4565b93506135e48185602086016141a9565b80840191505092915050565b60006135fd602283613f93565b9150613608826143fd565b604082019050919050565b6000613620602783613f93565b915061362b8261444c565b604082019050919050565b6000613643602683613f93565b915061364e8261449b565b604082019050919050565b6000613666602a83613f93565b9150613671826144ea565b604082019050919050565b6000613689602383613f93565b915061369482614539565b604082019050919050565b60006136ac602583613f93565b91506136b782614588565b604082019050919050565b60006136cf600b83613f93565b91506136da826145d7565b602082019050919050565b60006136f2603983613f93565b91506136fd82614600565b604082019050919050565b6000613715601e83613f93565b91506137208261464f565b602082019050919050565b6000613738602b83613f93565b915061374382614678565b604082019050919050565b600061375b601e83613f93565b9150613766826146c7565b602082019050919050565b600061377e601f83613f93565b9150613789826146f0565b602082019050919050565b60006137a1602683613f93565b91506137ac82614719565b604082019050919050565b60006137c4600583613fa4565b91506137cf82614768565b600582019050919050565b60006137e7602083613f93565b91506137f282614791565b602082019050919050565b600061380a602f83613f93565b9150613815826147ba565b604082019050919050565b600061382d601a83613f93565b915061383882614809565b602082019050919050565b6000613850603283613f93565b915061385b82614832565b604082019050919050565b6000613873602283613f93565b915061387e82614881565b604082019050919050565b6000613896600083613f88565b91506138a1826148d0565b600082019050919050565b60006138b9601083613f93565b91506138c4826148d3565b602082019050919050565b60006138dc603383613f93565b91506138e7826148fc565b604082019050919050565b60006138ff601d83613f93565b915061390a8261494b565b602082019050919050565b6000613922602183613f93565b915061392d82614974565b604082019050919050565b6000613945602083613f93565b9150613950826149c3565b602082019050919050565b6000613968602883613f93565b9150613973826149ec565b604082019050919050565b600061398b602e83613f93565b915061399682614a3b565b604082019050919050565b60006139ae601f83613f93565b91506139b982614a8a565b602082019050919050565b60006139d1602d83613f93565b91506139dc82614ab3565b604082019050919050565b60006139f4602883613f93565b91506139ff82614b02565b604082019050919050565b613a1381614190565b82525050565b6000613a2582856135bf565b9150613a3182846135bf565b91508190509392505050565b6000613a4982846135bf565b9150613a54826137b7565b915081905092915050565b6000613a6a82613889565b9150819050919050565b6000602082019050613a89600083018461352f565b92915050565b6000608082019050613aa4600083018761352f565b613ab1602083018661352f565b613abe6040830185613a0a565b8181036060830152613ad0818461354d565b905095945050505050565b6000602082019050613af0600083018461353e565b92915050565b60006020820190508181036000830152613b108184613586565b905092915050565b60006020820190508181036000830152613b31816135f0565b9050919050565b60006020820190508181036000830152613b5181613613565b9050919050565b60006020820190508181036000830152613b7181613636565b9050919050565b60006020820190508181036000830152613b9181613659565b9050919050565b60006020820190508181036000830152613bb18161367c565b9050919050565b60006020820190508181036000830152613bd18161369f565b9050919050565b60006020820190508181036000830152613bf1816136c2565b9050919050565b60006020820190508181036000830152613c11816136e5565b9050919050565b60006020820190508181036000830152613c3181613708565b9050919050565b60006020820190508181036000830152613c518161372b565b9050919050565b60006020820190508181036000830152613c718161374e565b9050919050565b60006020820190508181036000830152613c9181613771565b9050919050565b60006020820190508181036000830152613cb181613794565b9050919050565b60006020820190508181036000830152613cd1816137da565b9050919050565b60006020820190508181036000830152613cf1816137fd565b9050919050565b60006020820190508181036000830152613d1181613820565b9050919050565b60006020820190508181036000830152613d3181613843565b9050919050565b60006020820190508181036000830152613d5181613866565b9050919050565b60006020820190508181036000830152613d71816138ac565b9050919050565b60006020820190508181036000830152613d91816138cf565b9050919050565b60006020820190508181036000830152613db1816138f2565b9050919050565b60006020820190508181036000830152613dd181613915565b9050919050565b60006020820190508181036000830152613df181613938565b9050919050565b60006020820190508181036000830152613e118161395b565b9050919050565b60006020820190508181036000830152613e318161397e565b9050919050565b60006020820190508181036000830152613e51816139a1565b9050919050565b60006020820190508181036000830152613e71816139c4565b9050919050565b60006020820190508181036000830152613e91816139e7565b9050919050565b6000602082019050613ead6000830184613a0a565b92915050565b6000613ebd613ece565b9050613ec98282614238565b919050565b6000604051905090565b600067ffffffffffffffff821115613ef357613ef261439f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f1f57613f1e61439f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f4b57613f4a61439f565b5b613f54826143ec565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fba82614154565b9150613fc583614154565b9250826fffffffffffffffffffffffffffffffff03821115613fea57613fe96142e3565b5b828201905092915050565b600061400082614190565b915061400b83614190565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140405761403f6142e3565b5b828201905092915050565b600061405682614190565b915061406183614190565b92508261407157614070614312565b5b828204905092915050565b600061408782614190565b915061409283614190565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140cb576140ca6142e3565b5b828202905092915050565b60006140e182614190565b91506140ec83614190565b9250828210156140ff576140fe6142e3565b5b828203905092915050565b600061411582614170565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141c75780820151818401526020810190506141ac565b838111156141d6576000848401525b50505050565b60006141e782614190565b915060008214156141fb576141fa6142e3565b5b600182039050919050565b6000600282049050600182168061421e57607f821691505b6020821081141561423257614231614341565b5b50919050565b614241826143ec565b810181811067ffffffffffffffff821117156142605761425f61439f565b5b80604052505050565b600061427482614190565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a7576142a66142e3565b5b600182019050919050565b60006142bd82614190565b91506142c883614190565b9250826142d8576142d7614312565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e206d6f7265207468616e20646566696e6520746f74616c60008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420466565000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f55736572204e6f7420696e205374616e64617264205061636b204c6973740000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d207075726368617365206c696d697420726561636865640000600082015250565b7f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c205374616e64617264205061636b7320686173206265656e20736f6c64600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b614b5a8161410a565b8114614b6557600080fd5b50565b614b718161411c565b8114614b7c57600080fd5b50565b614b8881614128565b8114614b9357600080fd5b50565b614b9f81614190565b8114614baa57600080fd5b5056fea2646970667358221220d25428d0cad0bf0bb94912f6d4a1c57d0e874ea4d1fc8ed57db4d77fc983d26464736f6c63430008070033

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.