ETH Price: $3,389.09 (-1.55%)
Gas: 2 Gwei

Token

Flipped Apes (FPG)
 

Overview

Max Total Supply

968 FPG

Holders

527

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FPG
0xc64b62c5122A9F4333E5faf8bE095e6189775dca
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:
FlippedApesToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 2 of 18 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 3 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 18 : 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 5 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 18 : 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 8 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 18 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 10 of 18 : 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 11 of 18 : 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 12 of 18 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 18 : 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 18 : 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 15 of 18 : 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 16 of 18 : 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 17 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 18 of 18 : FlippedApesToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract FlippedApesToken is ERC721, ERC721URIStorage, ERC721Enumerable, Ownable, Pausable, PaymentSplitter, ReentrancyGuard {
  using SafeMath for uint256;

  uint256 public constant TOKEN_LIMIT = 10000;
  uint internal nonce = 0;
  uint[TOKEN_LIMIT] internal indices;

  uint256 private _tokenPrice;
  uint256 private _maxTokensAtOnce = 50;

  uint256[] private _teamShares = [50, 50];
  address[] private _team = [
    0xCE81fdDfdEF44EA5d56944c9CCF2D0EA0f7B604C, // M
    0xF67D0DE7fC3642f78FD2d5B4e50c46E0279C7BBA  // B
  ];

  constructor()
    PaymentSplitter(_team, _teamShares)
    ERC721("Flipped Apes", "FPG")
  {
    setTokenPrice(20000000000000000);
  }

  function _baseURI() internal override pure returns (string memory) {
    return "https://api.flippedapes.io/ape/";
  }

  function getTokenPrice() public view returns(uint256) {
    return _tokenPrice;
  }

  function setTokenPrice(uint256 _price) public onlyOwner {
    _tokenPrice = _price;
  }

  function togglePaused() public onlyOwner {
    if (paused()) { _unpause(); } else { _pause(); }
  }

  function _newTokenIndex() internal returns (uint256) {
    uint256 totalSize = TOKEN_LIMIT - totalSupply();
    uint256 index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize;
    uint256 value = 0;
    if (indices[index] != 0) { value = indices[index]; } else { value = index; }
    if (indices[totalSize-1] == 0) { indices[index] = totalSize-1; } else { indices[index] = indices[totalSize-1]; }
    nonce++;
    return value.add(1);
  }

  function _mintRandom(address _to) private {
    uint _tokenID = _newTokenIndex();
    _safeMint(_to, _tokenID);
  }

  function devMint(uint256 _amount) public payable nonReentrant onlyOwner {
    require(totalSupply().add(_amount) <= TOKEN_LIMIT, "Exceeds max supply of tokens");

    for(uint256 i = 0; i < _amount; i++) {
      _mintRandom(msg.sender);
    }
  }

  function mintMultipleTokens(uint256 _amount) public payable nonReentrant whenNotPaused {
    require(totalSupply().add(_amount) <= TOKEN_LIMIT, "Exceeds max supply of tokens");
    require(_amount <= _maxTokensAtOnce, "Too many tokens");
    require(getTokenPrice().mul(_amount) == msg.value, "Insufficient funds");

    for(uint256 i = 0; i < _amount; i++) {
      _mintRandom(msg.sender);
    }
  }

  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) {
    return string(super.tokenURI(tokenId));
  }

  function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
    return super.supportsInterface(interfaceId);
  }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","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":"_amount","type":"uint256"}],"name":"mintMultipleTokens","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"stateMutability":"payable","type":"receive"}]

608060405260006012556032612724556040518060400160405280603260ff168152602001603260ff168152506127259060026200003f929190620007a2565b50604051806040016040528073ce81fddfdef44ea5d56944c9ccf2d0ea0f7b604c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173f67d0de7fc3642f78fd2d5b4e50c46e0279c7bba73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250612726906002620000e8929190620007f9565b50348015620000f657600080fd5b506127268054806020026020016040519081016040528092919081815260200182805480156200017c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831162000131575b5050505050612725805480602002602001604051908101604052809291908181526020018280548015620001d057602002820191906000526020600020905b815481526020019060010190808311620001bb575b50505050506040518060400160405280600c81526020017f466c6970706564204170657300000000000000000000000000000000000000008152506040518060400160405280600381526020017f465047000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200025992919062000888565b5080600190805190602001906200027292919062000888565b5050506200029562000289620003d660201b60201c565b620003de60201b60201c565b6000600b60146101000a81548160ff0219169083151502179055508051825114620002f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ee9062000ab5565b60405180910390fd5b60008251116200033e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003359062000af9565b60405180910390fd5b60005b8251811015620003ad576200039783828151811062000365576200036462000ccb565b5b602002602001015183838151811062000383576200038262000ccb565b5b6020026020010151620004a460201b60201c565b8080620003a49062000c1f565b91505062000341565b5050506001601181905550620003d066470de4df820000620006de60201b60201c565b62000e62565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000517576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050e9062000a71565b60405180910390fd5b600081116200055d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005549062000b1b565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414620005e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d99062000ad7565b60405180910390fd5b6010829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c5462000699919062000b4e565b600c819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620006d292919062000a44565b60405180910390a15050565b620006ee620003d660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007146200077860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007649062000a93565b60405180910390fd5b806127238190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054828255906000526020600020908101928215620007e6579160200282015b82811115620007e5578251829060ff16905591602001919060010190620007c3565b5b509050620007f5919062000919565b5090565b82805482825590600052602060002090810192821562000875579160200282015b82811115620008745782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200081a565b5b50905062000884919062000919565b5090565b828054620008969062000be9565b90600052602060002090601f016020900481019282620008ba576000855562000906565b82601f10620008d557805160ff191683800117855562000906565b8280016001018555821562000906579182015b8281111562000905578251825591602001919060010190620008e8565b5b50905062000915919062000919565b5090565b5b80821115620009345760008160009055506001016200091a565b5090565b620009438162000bab565b82525050565b600062000958602c8362000b3d565b9150620009658262000cfa565b604082019050919050565b60006200097f60208362000b3d565b91506200098c8262000d49565b602082019050919050565b6000620009a660328362000b3d565b9150620009b38262000d72565b604082019050919050565b6000620009cd602b8362000b3d565b9150620009da8262000dc1565b604082019050919050565b6000620009f4601a8362000b3d565b915062000a018262000e10565b602082019050919050565b600062000a1b601d8362000b3d565b915062000a288262000e39565b602082019050919050565b62000a3e8162000bdf565b82525050565b600060408201905062000a5b600083018562000938565b62000a6a602083018462000a33565b9392505050565b6000602082019050818103600083015262000a8c8162000949565b9050919050565b6000602082019050818103600083015262000aae8162000970565b9050919050565b6000602082019050818103600083015262000ad08162000997565b9050919050565b6000602082019050818103600083015262000af281620009be565b9050919050565b6000602082019050818103600083015262000b1481620009e5565b9050919050565b6000602082019050818103600083015262000b368162000a0c565b9050919050565b600082825260208201905092915050565b600062000b5b8262000bdf565b915062000b688362000bdf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ba05762000b9f62000c6d565b5b828201905092915050565b600062000bb88262000bbf565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c0257607f821691505b6020821081141562000c195762000c1862000c9c565b5b50919050565b600062000c2c8262000bdf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000c625762000c6162000c6d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b614b988062000e726000396000f3fe6080604052600436106101e75760003560e01c80636352211e11610102578063a22cb46511610095578063e1dffcb911610064578063e1dffcb914610756578063e33b7de314610772578063e985e9c51461079d578063f2fde38b146107da5761022e565b8063a22cb4651461068a578063b88d4fde146106b3578063c87b56dd146106dc578063ce7c2ac2146107195761022e565b80638b83209b116100d15780638b83209b146105ba5780638da5cb5b146105f757806395d89b41146106225780639852595c1461064d5761022e565b80636352211e146105005780636a61e5fc1461053d57806370a0823114610566578063715018a6146105a35761022e565b80632f745c591161017a57806342842e0e1161014957806342842e0e146104445780634b94f50e1461046d5780634f6ccce7146104985780635c975abb146104d55761022e565b80632f745c59146103a957806336566f06146103e6578063375a069a146103fd5780633a98ef39146104195761022e565b8063095ea7b3116101b6578063095ea7b31461030357806318160ddd1461032c578063191655871461035757806323b872dd146103805761022e565b806301ffc9a714610233578063031bd4c41461027057806306fdde031461029b578063081812fc146102c65761022e565b3661022e577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610215610803565b34604051610224929190613a6c565b60405180910390a1005b600080fd5b34801561023f57600080fd5b5061025a600480360381019061025591906133a7565b61080b565b6040516102679190613a95565b60405180910390f35b34801561027c57600080fd5b5061028561081d565b6040516102929190613e72565b60405180910390f35b3480156102a757600080fd5b506102b0610823565b6040516102bd9190613ab0565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613401565b6108b5565b6040516102fa91906139dc565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613367565b61093a565b005b34801561033857600080fd5b50610341610a52565b60405161034e9190613e72565b60405180910390f35b34801561036357600080fd5b5061037e600480360381019061037991906131e4565b610a5f565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613251565b610cc7565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613367565b610d27565b6040516103dd9190613e72565b60405180910390f35b3480156103f257600080fd5b506103fb610dcc565b005b61041760048036038101906104129190613401565b610e6d565b005b34801561042557600080fd5b5061042e610fc8565b60405161043b9190613e72565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190613251565b610fd2565b005b34801561047957600080fd5b50610482610ff2565b60405161048f9190613e72565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613401565b610ffd565b6040516104cc9190613e72565b60405180910390f35b3480156104e157600080fd5b506104ea61106e565b6040516104f79190613a95565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613401565b611085565b60405161053491906139dc565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613401565b611137565b005b34801561057257600080fd5b5061058d600480360381019061058891906131b7565b6111be565b60405161059a9190613e72565b60405180910390f35b3480156105af57600080fd5b506105b8611276565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190613401565b6112fe565b6040516105ee91906139dc565b60405180910390f35b34801561060357600080fd5b5061060c611346565b60405161061991906139dc565b60405180910390f35b34801561062e57600080fd5b50610637611370565b6040516106449190613ab0565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f91906131b7565b611402565b6040516106819190613e72565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190613327565b61144b565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906132a4565b6115cc565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190613401565b61162e565b6040516107109190613ab0565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906131b7565b611640565b60405161074d9190613e72565b60405180910390f35b610770600480360381019061076b9190613401565b611689565b005b34801561077e57600080fd5b50610787611851565b6040516107949190613e72565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613211565b61185b565b6040516107d19190613a95565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc91906131b7565b6118ef565b005b600033905090565b6000610816826119e7565b9050919050565b61271081565b60606000805461083290614144565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90614144565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b60006108c082611a61565b6108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690613d72565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094582611085565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90613df2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d5610803565b73ffffffffffffffffffffffffffffffffffffffff161480610a045750610a03816109fe610803565b61185b565b5b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90613cd2565b60405180910390fd5b610a4d8383611acd565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890613bb2565b60405180910390fd5b6000600d5447610af19190613f31565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610b839190613fb8565b610b8d9190613f87565b610b979190614012565b90506000811415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490613c72565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c289190613f31565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610c799190613f31565b600d81905550610c898382611b86565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610cba9291906139f7565b60405180910390a1505050565b610cd8610cd2610803565b82611c7a565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613e12565b60405180910390fd5b610d22838383611d58565b505050565b6000610d32836111be565b8210610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90613af2565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dd4610803565b73ffffffffffffffffffffffffffffffffffffffff16610df2611346565b73ffffffffffffffffffffffffffffffffffffffff1614610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613d92565b60405180910390fd5b610e5061106e565b15610e6257610e5d611fb4565b610e6b565b610e6a612056565b5b565b60026011541415610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613e52565b60405180910390fd5b6002601181905550610ec3610803565b73ffffffffffffffffffffffffffffffffffffffff16610ee1611346565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613d92565b60405180910390fd5b612710610f5482610f46610a52565b6120f990919063ffffffff16565b1115610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613b52565b60405180910390fd5b60005b81811015610fbc57610fa93361210f565b8080610fb4906141a7565b915050610f98565b50600160118190555050565b6000600c54905090565b610fed838383604051806020016040528060008152506115cc565b505050565b600061272354905090565b6000611007610a52565b8210611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613e32565b60405180910390fd5b6009828154811061105c5761105b61430b565b5b90600052602060002001549050919050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590613d12565b60405180910390fd5b80915050919050565b61113f610803565b73ffffffffffffffffffffffffffffffffffffffff1661115d611346565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613d92565b60405180910390fd5b806127238190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613cf2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127e610803565b73ffffffffffffffffffffffffffffffffffffffff1661129c611346565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613d92565b60405180910390fd5b6112fc6000612129565b565b6000601082815481106113145761131361430b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461137f90614144565b80601f01602080910402602001604051908101604052809291908181526020018280546113ab90614144565b80156113f85780601f106113cd576101008083540402835291602001916113f8565b820191906000526020600020905b8154815290600101906020018083116113db57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611453610803565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890613bf2565b60405180910390fd5b80600560006114ce610803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157b610803565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c09190613a95565b60405180910390a35050565b6115dd6115d7610803565b83611c7a565b61161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613e12565b60405180910390fd5b611628848484846121ef565b50505050565b60606116398261224b565b9050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600260115414156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613e52565b60405180910390fd5b60026011819055506116df61106e565b1561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613cb2565b60405180910390fd5b61271061173c8261172e610a52565b6120f990919063ffffffff16565b111561177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490613b52565b60405180910390fd5b612724548111156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613b72565b60405180910390fd5b346117de826117d0610ff2565b61239d90919063ffffffff16565b1461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613c92565b60405180910390fd5b60005b81811015611845576118323361210f565b808061183d906141a7565b915050611821565b50600160118190555050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118f7610803565b73ffffffffffffffffffffffffffffffffffffffff16611915611346565b73ffffffffffffffffffffffffffffffffffffffff161461196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613d92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613b32565b60405180910390fd5b6119e481612129565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a5a5750611a59826123b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b4083611085565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090613c32565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611bef90613979565b60006040518083038185875af1925050503d8060008114611c2c576040519150601f19603f3d011682016040523d82523d6000602084013e611c31565b606091505b5050905080611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c90613c12565b60405180910390fd5b505050565b6000611c8582611a61565b611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613c52565b60405180910390fd5b6000611ccf83611085565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d3e57508373ffffffffffffffffffffffffffffffffffffffff16611d26846108b5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d4f5750611d4e818561185b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d7882611085565b73ffffffffffffffffffffffffffffffffffffffff1614611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc590613db2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590613bd2565b60405180910390fd5b611e49838383612495565b611e54600082611acd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea49190614012565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611efb9190613f31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fbc61106e565b611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290613ad2565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61203f610803565b60405161204c91906139dc565b60405180910390a1565b61205e61106e565b1561209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613cb2565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120e2610803565b6040516120ef91906139dc565b60405180910390a1565b600081836121079190613f31565b905092915050565b60006121196124a5565b9050612125828261260a565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121fa848484611d58565b61220684848484612628565b612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c90613b12565b60405180910390fd5b50505050565b606061225682611a61565b612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90613d52565b60405180910390fd5b60006006600084815260200190815260200160002080546122b590614144565b80601f01602080910402602001604051908101604052809291908181526020018280546122e190614144565b801561232e5780601f106123035761010080835404028352916020019161232e565b820191906000526020600020905b81548152906001019060200180831161231157829003601f168201915b50505050509050600061233f6127bf565b9050600081511415612355578192505050612398565b60008251111561238a578082604051602001612372929190613955565b60405160208183030381529060405292505050612398565b612393846127fc565b925050505b919050565b600081836123ab9190613fb8565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061248e575061248d826128a3565b5b9050919050565b6124a083838361290d565b505050565b6000806124b0610a52565b6127106124bd9190614012565b90506000816012543344426040516020016124db949392919061398e565b6040516020818303038152906040528051906020012060001c6124fe919061421e565b905060008060138361271081106125185761251761430b565b5b01541461253d5760138261271081106125345761253361430b565b5b01549050612541565b8190505b600060136001856125529190614012565b61271081106125645761256361430b565b5b01541415612598576001836125799190614012565b601383612710811061258e5761258d61430b565b5b01819055506125d6565b60136001846125a79190614012565b61271081106125b9576125b861430b565b5b015460138361271081106125d0576125cf61430b565b5b01819055505b601260008154809291906125e9906141a7565b91905055506126026001826120f990919063ffffffff16565b935050505090565b612624828260405180602001604052806000815250612a21565b5050565b60006126498473ffffffffffffffffffffffffffffffffffffffff16612a7c565b156127b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612672610803565b8786866040518563ffffffff1660e01b81526004016126949493929190613a20565b602060405180830381600087803b1580156126ae57600080fd5b505af19250505080156126df57506040513d601f19601f820116820180604052508101906126dc91906133d4565b60015b612762573d806000811461270f576040519150601f19603f3d011682016040523d82523d6000602084013e612714565b606091505b5060008151141561275a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275190613b12565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b7565b600190505b949350505050565b60606040518060400160405280601f81526020017f68747470733a2f2f6170692e666c6970706564617065732e696f2f6170652f00815250905090565b606061280782611a61565b612846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d90613dd2565b60405180910390fd5b60006128506127bf565b90506000815111612870576040518060200160405280600081525061289b565b8061287a84612a8f565b60405160200161288b929190613955565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612918838383612bf0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295b5761295681612bf5565b61299a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612999576129988382612c3e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dd576129d881612dab565b612a1c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a1b57612a1a8282612e7c565b5b5b505050565b612a2b8383612efb565b612a386000848484612628565b612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6e90613b12565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415612ad7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612beb565b600082905060005b60008214612b09578080612af2906141a7565b915050600a82612b029190613f87565b9150612adf565b60008167ffffffffffffffff811115612b2557612b2461433a565b5b6040519080825280601f01601f191660200182016040528015612b575781602001600182028036833780820191505090505b5090505b60008514612be457600182612b709190614012565b9150600a85612b7f919061421e565b6030612b8b9190613f31565b60f81b818381518110612ba157612ba061430b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bdd9190613f87565b9450612b5b565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c4b846111be565b612c559190614012565b9050600060086000848152602001908152602001600020549050818114612d3a576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612dbf9190614012565b90506000600a6000848152602001908152602001600020549050600060098381548110612def57612dee61430b565b5b906000526020600020015490508060098381548110612e1157612e1061430b565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612e6057612e5f6142dc565b5b6001900381819060005260206000200160009055905550505050565b6000612e87836111be565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6290613d32565b60405180910390fd5b612f7481611a61565b15612fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fab90613b92565b60405180910390fd5b612fc060008383612495565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130109190613f31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006130dc6130d784613eb2565b613e8d565b9050828152602081018484840111156130f8576130f761436e565b5b613103848285614102565b509392505050565b60008135905061311a81614aef565b92915050565b60008135905061312f81614b06565b92915050565b60008135905061314481614b1d565b92915050565b60008135905061315981614b34565b92915050565b60008151905061316e81614b34565b92915050565b600082601f83011261318957613188614369565b5b81356131998482602086016130c9565b91505092915050565b6000813590506131b181614b4b565b92915050565b6000602082840312156131cd576131cc614378565b5b60006131db8482850161310b565b91505092915050565b6000602082840312156131fa576131f9614378565b5b600061320884828501613120565b91505092915050565b6000806040838503121561322857613227614378565b5b60006132368582860161310b565b92505060206132478582860161310b565b9150509250929050565b60008060006060848603121561326a57613269614378565b5b60006132788682870161310b565b93505060206132898682870161310b565b925050604061329a868287016131a2565b9150509250925092565b600080600080608085870312156132be576132bd614378565b5b60006132cc8782880161310b565b94505060206132dd8782880161310b565b93505060406132ee878288016131a2565b925050606085013567ffffffffffffffff81111561330f5761330e614373565b5b61331b87828801613174565b91505092959194509250565b6000806040838503121561333e5761333d614378565b5b600061334c8582860161310b565b925050602061335d85828601613135565b9150509250929050565b6000806040838503121561337e5761337d614378565b5b600061338c8582860161310b565b925050602061339d858286016131a2565b9150509250929050565b6000602082840312156133bd576133bc614378565b5b60006133cb8482850161314a565b91505092915050565b6000602082840312156133ea576133e9614378565b5b60006133f88482850161315f565b91505092915050565b60006020828403121561341757613416614378565b5b6000613425848285016131a2565b91505092915050565b613437816140cc565b82525050565b61344681614046565b82525050565b61345d61345882614046565b6141f0565b82525050565b61346c8161406a565b82525050565b600061347d82613ee3565b6134878185613ef9565b9350613497818560208601614111565b6134a08161437d565b840191505092915050565b60006134b682613eee565b6134c08185613f15565b93506134d0818560208601614111565b6134d98161437d565b840191505092915050565b60006134ef82613eee565b6134f98185613f26565b9350613509818560208601614111565b80840191505092915050565b6000613522601483613f15565b915061352d8261439b565b602082019050919050565b6000613545602b83613f15565b9150613550826143c4565b604082019050919050565b6000613568603283613f15565b915061357382614413565b604082019050919050565b600061358b602683613f15565b915061359682614462565b604082019050919050565b60006135ae601c83613f15565b91506135b9826144b1565b602082019050919050565b60006135d1600f83613f15565b91506135dc826144da565b602082019050919050565b60006135f4601c83613f15565b91506135ff82614503565b602082019050919050565b6000613617602683613f15565b91506136228261452c565b604082019050919050565b600061363a602483613f15565b91506136458261457b565b604082019050919050565b600061365d601983613f15565b9150613668826145ca565b602082019050919050565b6000613680603a83613f15565b915061368b826145f3565b604082019050919050565b60006136a3601d83613f15565b91506136ae82614642565b602082019050919050565b60006136c6602c83613f15565b91506136d18261466b565b604082019050919050565b60006136e9602b83613f15565b91506136f4826146ba565b604082019050919050565b600061370c601283613f15565b915061371782614709565b602082019050919050565b600061372f601083613f15565b915061373a82614732565b602082019050919050565b6000613752603883613f15565b915061375d8261475b565b604082019050919050565b6000613775602a83613f15565b9150613780826147aa565b604082019050919050565b6000613798602983613f15565b91506137a3826147f9565b604082019050919050565b60006137bb602083613f15565b91506137c682614848565b602082019050919050565b60006137de603183613f15565b91506137e982614871565b604082019050919050565b6000613801602c83613f15565b915061380c826148c0565b604082019050919050565b6000613824602083613f15565b915061382f8261490f565b602082019050919050565b6000613847602983613f15565b915061385282614938565b604082019050919050565b600061386a602f83613f15565b915061387582614987565b604082019050919050565b600061388d602183613f15565b9150613898826149d6565b604082019050919050565b60006138b0600083613f0a565b91506138bb82614a25565b600082019050919050565b60006138d3603183613f15565b91506138de82614a28565b604082019050919050565b60006138f6602c83613f15565b915061390182614a77565b604082019050919050565b6000613919601f83613f15565b915061392482614ac6565b602082019050919050565b613938816140c2565b82525050565b61394f61394a826140c2565b614214565b82525050565b600061396182856134e4565b915061396d82846134e4565b91508190509392505050565b6000613984826138a3565b9150819050919050565b600061399a828761393e565b6020820191506139aa828661344c565b6014820191506139ba828561393e565b6020820191506139ca828461393e565b60208201915081905095945050505050565b60006020820190506139f1600083018461343d565b92915050565b6000604082019050613a0c600083018561342e565b613a19602083018461392f565b9392505050565b6000608082019050613a35600083018761343d565b613a42602083018661343d565b613a4f604083018561392f565b8181036060830152613a618184613472565b905095945050505050565b6000604082019050613a81600083018561343d565b613a8e602083018461392f565b9392505050565b6000602082019050613aaa6000830184613463565b92915050565b60006020820190508181036000830152613aca81846134ab565b905092915050565b60006020820190508181036000830152613aeb81613515565b9050919050565b60006020820190508181036000830152613b0b81613538565b9050919050565b60006020820190508181036000830152613b2b8161355b565b9050919050565b60006020820190508181036000830152613b4b8161357e565b9050919050565b60006020820190508181036000830152613b6b816135a1565b9050919050565b60006020820190508181036000830152613b8b816135c4565b9050919050565b60006020820190508181036000830152613bab816135e7565b9050919050565b60006020820190508181036000830152613bcb8161360a565b9050919050565b60006020820190508181036000830152613beb8161362d565b9050919050565b60006020820190508181036000830152613c0b81613650565b9050919050565b60006020820190508181036000830152613c2b81613673565b9050919050565b60006020820190508181036000830152613c4b81613696565b9050919050565b60006020820190508181036000830152613c6b816136b9565b9050919050565b60006020820190508181036000830152613c8b816136dc565b9050919050565b60006020820190508181036000830152613cab816136ff565b9050919050565b60006020820190508181036000830152613ccb81613722565b9050919050565b60006020820190508181036000830152613ceb81613745565b9050919050565b60006020820190508181036000830152613d0b81613768565b9050919050565b60006020820190508181036000830152613d2b8161378b565b9050919050565b60006020820190508181036000830152613d4b816137ae565b9050919050565b60006020820190508181036000830152613d6b816137d1565b9050919050565b60006020820190508181036000830152613d8b816137f4565b9050919050565b60006020820190508181036000830152613dab81613817565b9050919050565b60006020820190508181036000830152613dcb8161383a565b9050919050565b60006020820190508181036000830152613deb8161385d565b9050919050565b60006020820190508181036000830152613e0b81613880565b9050919050565b60006020820190508181036000830152613e2b816138c6565b9050919050565b60006020820190508181036000830152613e4b816138e9565b9050919050565b60006020820190508181036000830152613e6b8161390c565b9050919050565b6000602082019050613e87600083018461392f565b92915050565b6000613e97613ea8565b9050613ea38282614176565b919050565b6000604051905090565b600067ffffffffffffffff821115613ecd57613ecc61433a565b5b613ed68261437d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3c826140c2565b9150613f47836140c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7c57613f7b61424f565b5b828201905092915050565b6000613f92826140c2565b9150613f9d836140c2565b925082613fad57613fac61427e565b5b828204905092915050565b6000613fc3826140c2565b9150613fce836140c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140075761400661424f565b5b828202905092915050565b600061401d826140c2565b9150614028836140c2565b92508282101561403b5761403a61424f565b5b828203905092915050565b6000614051826140a2565b9050919050565b6000614063826140a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006140d7826140de565b9050919050565b60006140e9826140f0565b9050919050565b60006140fb826140a2565b9050919050565b82818337600083830152505050565b60005b8381101561412f578082015181840152602081019050614114565b8381111561413e576000848401525b50505050565b6000600282049050600182168061415c57607f821691505b602082108114156141705761416f6142ad565b5b50919050565b61417f8261437d565b810181811067ffffffffffffffff8211171561419e5761419d61433a565b5b80604052505050565b60006141b2826140c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141e5576141e461424f565b5b600182019050919050565b60006141fb82614202565b9050919050565b600061420d8261438e565b9050919050565b6000819050919050565b6000614229826140c2565b9150614234836140c2565b9250826142445761424361427e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c79206f6620746f6b656e7300000000600082015250565b7f546f6f206d616e7920746f6b656e730000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614af881614046565b8114614b0357600080fd5b50565b614b0f81614058565b8114614b1a57600080fd5b50565b614b268161406a565b8114614b3157600080fd5b50565b614b3d81614076565b8114614b4857600080fd5b50565b614b54816140c2565b8114614b5f57600080fd5b5056fea26469706673582212205c1aef914a1f339a9f2765fa9bc8774cc50dd30d64a1ab89c7940991c630aa6064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80636352211e11610102578063a22cb46511610095578063e1dffcb911610064578063e1dffcb914610756578063e33b7de314610772578063e985e9c51461079d578063f2fde38b146107da5761022e565b8063a22cb4651461068a578063b88d4fde146106b3578063c87b56dd146106dc578063ce7c2ac2146107195761022e565b80638b83209b116100d15780638b83209b146105ba5780638da5cb5b146105f757806395d89b41146106225780639852595c1461064d5761022e565b80636352211e146105005780636a61e5fc1461053d57806370a0823114610566578063715018a6146105a35761022e565b80632f745c591161017a57806342842e0e1161014957806342842e0e146104445780634b94f50e1461046d5780634f6ccce7146104985780635c975abb146104d55761022e565b80632f745c59146103a957806336566f06146103e6578063375a069a146103fd5780633a98ef39146104195761022e565b8063095ea7b3116101b6578063095ea7b31461030357806318160ddd1461032c578063191655871461035757806323b872dd146103805761022e565b806301ffc9a714610233578063031bd4c41461027057806306fdde031461029b578063081812fc146102c65761022e565b3661022e577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610215610803565b34604051610224929190613a6c565b60405180910390a1005b600080fd5b34801561023f57600080fd5b5061025a600480360381019061025591906133a7565b61080b565b6040516102679190613a95565b60405180910390f35b34801561027c57600080fd5b5061028561081d565b6040516102929190613e72565b60405180910390f35b3480156102a757600080fd5b506102b0610823565b6040516102bd9190613ab0565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613401565b6108b5565b6040516102fa91906139dc565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613367565b61093a565b005b34801561033857600080fd5b50610341610a52565b60405161034e9190613e72565b60405180910390f35b34801561036357600080fd5b5061037e600480360381019061037991906131e4565b610a5f565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613251565b610cc7565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613367565b610d27565b6040516103dd9190613e72565b60405180910390f35b3480156103f257600080fd5b506103fb610dcc565b005b61041760048036038101906104129190613401565b610e6d565b005b34801561042557600080fd5b5061042e610fc8565b60405161043b9190613e72565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190613251565b610fd2565b005b34801561047957600080fd5b50610482610ff2565b60405161048f9190613e72565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613401565b610ffd565b6040516104cc9190613e72565b60405180910390f35b3480156104e157600080fd5b506104ea61106e565b6040516104f79190613a95565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190613401565b611085565b60405161053491906139dc565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613401565b611137565b005b34801561057257600080fd5b5061058d600480360381019061058891906131b7565b6111be565b60405161059a9190613e72565b60405180910390f35b3480156105af57600080fd5b506105b8611276565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190613401565b6112fe565b6040516105ee91906139dc565b60405180910390f35b34801561060357600080fd5b5061060c611346565b60405161061991906139dc565b60405180910390f35b34801561062e57600080fd5b50610637611370565b6040516106449190613ab0565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f91906131b7565b611402565b6040516106819190613e72565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190613327565b61144b565b005b3480156106bf57600080fd5b506106da60048036038101906106d591906132a4565b6115cc565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190613401565b61162e565b6040516107109190613ab0565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906131b7565b611640565b60405161074d9190613e72565b60405180910390f35b610770600480360381019061076b9190613401565b611689565b005b34801561077e57600080fd5b50610787611851565b6040516107949190613e72565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190613211565b61185b565b6040516107d19190613a95565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc91906131b7565b6118ef565b005b600033905090565b6000610816826119e7565b9050919050565b61271081565b60606000805461083290614144565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90614144565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b5050505050905090565b60006108c082611a61565b6108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690613d72565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094582611085565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90613df2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d5610803565b73ffffffffffffffffffffffffffffffffffffffff161480610a045750610a03816109fe610803565b61185b565b5b610a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3a90613cd2565b60405180910390fd5b610a4d8383611acd565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890613bb2565b60405180910390fd5b6000600d5447610af19190613f31565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610b839190613fb8565b610b8d9190613f87565b610b979190614012565b90506000811415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490613c72565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c289190613f31565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610c799190613f31565b600d81905550610c898382611b86565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610cba9291906139f7565b60405180910390a1505050565b610cd8610cd2610803565b82611c7a565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613e12565b60405180910390fd5b610d22838383611d58565b505050565b6000610d32836111be565b8210610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90613af2565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dd4610803565b73ffffffffffffffffffffffffffffffffffffffff16610df2611346565b73ffffffffffffffffffffffffffffffffffffffff1614610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613d92565b60405180910390fd5b610e5061106e565b15610e6257610e5d611fb4565b610e6b565b610e6a612056565b5b565b60026011541415610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613e52565b60405180910390fd5b6002601181905550610ec3610803565b73ffffffffffffffffffffffffffffffffffffffff16610ee1611346565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613d92565b60405180910390fd5b612710610f5482610f46610a52565b6120f990919063ffffffff16565b1115610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613b52565b60405180910390fd5b60005b81811015610fbc57610fa93361210f565b8080610fb4906141a7565b915050610f98565b50600160118190555050565b6000600c54905090565b610fed838383604051806020016040528060008152506115cc565b505050565b600061272354905090565b6000611007610a52565b8210611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613e32565b60405180910390fd5b6009828154811061105c5761105b61430b565b5b90600052602060002001549050919050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590613d12565b60405180910390fd5b80915050919050565b61113f610803565b73ffffffffffffffffffffffffffffffffffffffff1661115d611346565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613d92565b60405180910390fd5b806127238190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690613cf2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127e610803565b73ffffffffffffffffffffffffffffffffffffffff1661129c611346565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613d92565b60405180910390fd5b6112fc6000612129565b565b6000601082815481106113145761131361430b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461137f90614144565b80601f01602080910402602001604051908101604052809291908181526020018280546113ab90614144565b80156113f85780601f106113cd576101008083540402835291602001916113f8565b820191906000526020600020905b8154815290600101906020018083116113db57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611453610803565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890613bf2565b60405180910390fd5b80600560006114ce610803565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157b610803565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c09190613a95565b60405180910390a35050565b6115dd6115d7610803565b83611c7a565b61161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613e12565b60405180910390fd5b611628848484846121ef565b50505050565b60606116398261224b565b9050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600260115414156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613e52565b60405180910390fd5b60026011819055506116df61106e565b1561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613cb2565b60405180910390fd5b61271061173c8261172e610a52565b6120f990919063ffffffff16565b111561177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490613b52565b60405180910390fd5b612724548111156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613b72565b60405180910390fd5b346117de826117d0610ff2565b61239d90919063ffffffff16565b1461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613c92565b60405180910390fd5b60005b81811015611845576118323361210f565b808061183d906141a7565b915050611821565b50600160118190555050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118f7610803565b73ffffffffffffffffffffffffffffffffffffffff16611915611346565b73ffffffffffffffffffffffffffffffffffffffff161461196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613d92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613b32565b60405180910390fd5b6119e481612129565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a5a5750611a59826123b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b4083611085565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090613c32565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611bef90613979565b60006040518083038185875af1925050503d8060008114611c2c576040519150601f19603f3d011682016040523d82523d6000602084013e611c31565b606091505b5050905080611c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6c90613c12565b60405180910390fd5b505050565b6000611c8582611a61565b611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613c52565b60405180910390fd5b6000611ccf83611085565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d3e57508373ffffffffffffffffffffffffffffffffffffffff16611d26846108b5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d4f5750611d4e818561185b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d7882611085565b73ffffffffffffffffffffffffffffffffffffffff1614611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc590613db2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590613bd2565b60405180910390fd5b611e49838383612495565b611e54600082611acd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea49190614012565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611efb9190613f31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fbc61106e565b611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290613ad2565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61203f610803565b60405161204c91906139dc565b60405180910390a1565b61205e61106e565b1561209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590613cb2565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120e2610803565b6040516120ef91906139dc565b60405180910390a1565b600081836121079190613f31565b905092915050565b60006121196124a5565b9050612125828261260a565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121fa848484611d58565b61220684848484612628565b612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c90613b12565b60405180910390fd5b50505050565b606061225682611a61565b612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90613d52565b60405180910390fd5b60006006600084815260200190815260200160002080546122b590614144565b80601f01602080910402602001604051908101604052809291908181526020018280546122e190614144565b801561232e5780601f106123035761010080835404028352916020019161232e565b820191906000526020600020905b81548152906001019060200180831161231157829003601f168201915b50505050509050600061233f6127bf565b9050600081511415612355578192505050612398565b60008251111561238a578082604051602001612372929190613955565b60405160208183030381529060405292505050612398565b612393846127fc565b925050505b919050565b600081836123ab9190613fb8565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061247e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061248e575061248d826128a3565b5b9050919050565b6124a083838361290d565b505050565b6000806124b0610a52565b6127106124bd9190614012565b90506000816012543344426040516020016124db949392919061398e565b6040516020818303038152906040528051906020012060001c6124fe919061421e565b905060008060138361271081106125185761251761430b565b5b01541461253d5760138261271081106125345761253361430b565b5b01549050612541565b8190505b600060136001856125529190614012565b61271081106125645761256361430b565b5b01541415612598576001836125799190614012565b601383612710811061258e5761258d61430b565b5b01819055506125d6565b60136001846125a79190614012565b61271081106125b9576125b861430b565b5b015460138361271081106125d0576125cf61430b565b5b01819055505b601260008154809291906125e9906141a7565b91905055506126026001826120f990919063ffffffff16565b935050505090565b612624828260405180602001604052806000815250612a21565b5050565b60006126498473ffffffffffffffffffffffffffffffffffffffff16612a7c565b156127b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612672610803565b8786866040518563ffffffff1660e01b81526004016126949493929190613a20565b602060405180830381600087803b1580156126ae57600080fd5b505af19250505080156126df57506040513d601f19601f820116820180604052508101906126dc91906133d4565b60015b612762573d806000811461270f576040519150601f19603f3d011682016040523d82523d6000602084013e612714565b606091505b5060008151141561275a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275190613b12565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127b7565b600190505b949350505050565b60606040518060400160405280601f81526020017f68747470733a2f2f6170692e666c6970706564617065732e696f2f6170652f00815250905090565b606061280782611a61565b612846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d90613dd2565b60405180910390fd5b60006128506127bf565b90506000815111612870576040518060200160405280600081525061289b565b8061287a84612a8f565b60405160200161288b929190613955565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612918838383612bf0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295b5761295681612bf5565b61299a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612999576129988382612c3e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dd576129d881612dab565b612a1c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a1b57612a1a8282612e7c565b5b5b505050565b612a2b8383612efb565b612a386000848484612628565b612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6e90613b12565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415612ad7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612beb565b600082905060005b60008214612b09578080612af2906141a7565b915050600a82612b029190613f87565b9150612adf565b60008167ffffffffffffffff811115612b2557612b2461433a565b5b6040519080825280601f01601f191660200182016040528015612b575781602001600182028036833780820191505090505b5090505b60008514612be457600182612b709190614012565b9150600a85612b7f919061421e565b6030612b8b9190613f31565b60f81b818381518110612ba157612ba061430b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bdd9190613f87565b9450612b5b565b8093505050505b919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c4b846111be565b612c559190614012565b9050600060086000848152602001908152602001600020549050818114612d3a576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612dbf9190614012565b90506000600a6000848152602001908152602001600020549050600060098381548110612def57612dee61430b565b5b906000526020600020015490508060098381548110612e1157612e1061430b565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612e6057612e5f6142dc565b5b6001900381819060005260206000200160009055905550505050565b6000612e87836111be565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6290613d32565b60405180910390fd5b612f7481611a61565b15612fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fab90613b92565b60405180910390fd5b612fc060008383612495565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130109190613f31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006130dc6130d784613eb2565b613e8d565b9050828152602081018484840111156130f8576130f761436e565b5b613103848285614102565b509392505050565b60008135905061311a81614aef565b92915050565b60008135905061312f81614b06565b92915050565b60008135905061314481614b1d565b92915050565b60008135905061315981614b34565b92915050565b60008151905061316e81614b34565b92915050565b600082601f83011261318957613188614369565b5b81356131998482602086016130c9565b91505092915050565b6000813590506131b181614b4b565b92915050565b6000602082840312156131cd576131cc614378565b5b60006131db8482850161310b565b91505092915050565b6000602082840312156131fa576131f9614378565b5b600061320884828501613120565b91505092915050565b6000806040838503121561322857613227614378565b5b60006132368582860161310b565b92505060206132478582860161310b565b9150509250929050565b60008060006060848603121561326a57613269614378565b5b60006132788682870161310b565b93505060206132898682870161310b565b925050604061329a868287016131a2565b9150509250925092565b600080600080608085870312156132be576132bd614378565b5b60006132cc8782880161310b565b94505060206132dd8782880161310b565b93505060406132ee878288016131a2565b925050606085013567ffffffffffffffff81111561330f5761330e614373565b5b61331b87828801613174565b91505092959194509250565b6000806040838503121561333e5761333d614378565b5b600061334c8582860161310b565b925050602061335d85828601613135565b9150509250929050565b6000806040838503121561337e5761337d614378565b5b600061338c8582860161310b565b925050602061339d858286016131a2565b9150509250929050565b6000602082840312156133bd576133bc614378565b5b60006133cb8482850161314a565b91505092915050565b6000602082840312156133ea576133e9614378565b5b60006133f88482850161315f565b91505092915050565b60006020828403121561341757613416614378565b5b6000613425848285016131a2565b91505092915050565b613437816140cc565b82525050565b61344681614046565b82525050565b61345d61345882614046565b6141f0565b82525050565b61346c8161406a565b82525050565b600061347d82613ee3565b6134878185613ef9565b9350613497818560208601614111565b6134a08161437d565b840191505092915050565b60006134b682613eee565b6134c08185613f15565b93506134d0818560208601614111565b6134d98161437d565b840191505092915050565b60006134ef82613eee565b6134f98185613f26565b9350613509818560208601614111565b80840191505092915050565b6000613522601483613f15565b915061352d8261439b565b602082019050919050565b6000613545602b83613f15565b9150613550826143c4565b604082019050919050565b6000613568603283613f15565b915061357382614413565b604082019050919050565b600061358b602683613f15565b915061359682614462565b604082019050919050565b60006135ae601c83613f15565b91506135b9826144b1565b602082019050919050565b60006135d1600f83613f15565b91506135dc826144da565b602082019050919050565b60006135f4601c83613f15565b91506135ff82614503565b602082019050919050565b6000613617602683613f15565b91506136228261452c565b604082019050919050565b600061363a602483613f15565b91506136458261457b565b604082019050919050565b600061365d601983613f15565b9150613668826145ca565b602082019050919050565b6000613680603a83613f15565b915061368b826145f3565b604082019050919050565b60006136a3601d83613f15565b91506136ae82614642565b602082019050919050565b60006136c6602c83613f15565b91506136d18261466b565b604082019050919050565b60006136e9602b83613f15565b91506136f4826146ba565b604082019050919050565b600061370c601283613f15565b915061371782614709565b602082019050919050565b600061372f601083613f15565b915061373a82614732565b602082019050919050565b6000613752603883613f15565b915061375d8261475b565b604082019050919050565b6000613775602a83613f15565b9150613780826147aa565b604082019050919050565b6000613798602983613f15565b91506137a3826147f9565b604082019050919050565b60006137bb602083613f15565b91506137c682614848565b602082019050919050565b60006137de603183613f15565b91506137e982614871565b604082019050919050565b6000613801602c83613f15565b915061380c826148c0565b604082019050919050565b6000613824602083613f15565b915061382f8261490f565b602082019050919050565b6000613847602983613f15565b915061385282614938565b604082019050919050565b600061386a602f83613f15565b915061387582614987565b604082019050919050565b600061388d602183613f15565b9150613898826149d6565b604082019050919050565b60006138b0600083613f0a565b91506138bb82614a25565b600082019050919050565b60006138d3603183613f15565b91506138de82614a28565b604082019050919050565b60006138f6602c83613f15565b915061390182614a77565b604082019050919050565b6000613919601f83613f15565b915061392482614ac6565b602082019050919050565b613938816140c2565b82525050565b61394f61394a826140c2565b614214565b82525050565b600061396182856134e4565b915061396d82846134e4565b91508190509392505050565b6000613984826138a3565b9150819050919050565b600061399a828761393e565b6020820191506139aa828661344c565b6014820191506139ba828561393e565b6020820191506139ca828461393e565b60208201915081905095945050505050565b60006020820190506139f1600083018461343d565b92915050565b6000604082019050613a0c600083018561342e565b613a19602083018461392f565b9392505050565b6000608082019050613a35600083018761343d565b613a42602083018661343d565b613a4f604083018561392f565b8181036060830152613a618184613472565b905095945050505050565b6000604082019050613a81600083018561343d565b613a8e602083018461392f565b9392505050565b6000602082019050613aaa6000830184613463565b92915050565b60006020820190508181036000830152613aca81846134ab565b905092915050565b60006020820190508181036000830152613aeb81613515565b9050919050565b60006020820190508181036000830152613b0b81613538565b9050919050565b60006020820190508181036000830152613b2b8161355b565b9050919050565b60006020820190508181036000830152613b4b8161357e565b9050919050565b60006020820190508181036000830152613b6b816135a1565b9050919050565b60006020820190508181036000830152613b8b816135c4565b9050919050565b60006020820190508181036000830152613bab816135e7565b9050919050565b60006020820190508181036000830152613bcb8161360a565b9050919050565b60006020820190508181036000830152613beb8161362d565b9050919050565b60006020820190508181036000830152613c0b81613650565b9050919050565b60006020820190508181036000830152613c2b81613673565b9050919050565b60006020820190508181036000830152613c4b81613696565b9050919050565b60006020820190508181036000830152613c6b816136b9565b9050919050565b60006020820190508181036000830152613c8b816136dc565b9050919050565b60006020820190508181036000830152613cab816136ff565b9050919050565b60006020820190508181036000830152613ccb81613722565b9050919050565b60006020820190508181036000830152613ceb81613745565b9050919050565b60006020820190508181036000830152613d0b81613768565b9050919050565b60006020820190508181036000830152613d2b8161378b565b9050919050565b60006020820190508181036000830152613d4b816137ae565b9050919050565b60006020820190508181036000830152613d6b816137d1565b9050919050565b60006020820190508181036000830152613d8b816137f4565b9050919050565b60006020820190508181036000830152613dab81613817565b9050919050565b60006020820190508181036000830152613dcb8161383a565b9050919050565b60006020820190508181036000830152613deb8161385d565b9050919050565b60006020820190508181036000830152613e0b81613880565b9050919050565b60006020820190508181036000830152613e2b816138c6565b9050919050565b60006020820190508181036000830152613e4b816138e9565b9050919050565b60006020820190508181036000830152613e6b8161390c565b9050919050565b6000602082019050613e87600083018461392f565b92915050565b6000613e97613ea8565b9050613ea38282614176565b919050565b6000604051905090565b600067ffffffffffffffff821115613ecd57613ecc61433a565b5b613ed68261437d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3c826140c2565b9150613f47836140c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7c57613f7b61424f565b5b828201905092915050565b6000613f92826140c2565b9150613f9d836140c2565b925082613fad57613fac61427e565b5b828204905092915050565b6000613fc3826140c2565b9150613fce836140c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140075761400661424f565b5b828202905092915050565b600061401d826140c2565b9150614028836140c2565b92508282101561403b5761403a61424f565b5b828203905092915050565b6000614051826140a2565b9050919050565b6000614063826140a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006140d7826140de565b9050919050565b60006140e9826140f0565b9050919050565b60006140fb826140a2565b9050919050565b82818337600083830152505050565b60005b8381101561412f578082015181840152602081019050614114565b8381111561413e576000848401525b50505050565b6000600282049050600182168061415c57607f821691505b602082108114156141705761416f6142ad565b5b50919050565b61417f8261437d565b810181811067ffffffffffffffff8211171561419e5761419d61433a565b5b80604052505050565b60006141b2826140c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141e5576141e461424f565b5b600182019050919050565b60006141fb82614202565b9050919050565b600061420d8261438e565b9050919050565b6000819050919050565b6000614229826140c2565b9150614234836140c2565b9250826142445761424361427e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c79206f6620746f6b656e7300000000600082015250565b7f546f6f206d616e7920746f6b656e730000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614af881614046565b8114614b0357600080fd5b50565b614b0f81614058565b8114614b1a57600080fd5b50565b614b268161406a565b8114614b3157600080fd5b50565b614b3d81614076565b8114614b4857600080fd5b50565b614b54816140c2565b8114614b5f57600080fd5b5056fea26469706673582212205c1aef914a1f339a9f2765fa9bc8774cc50dd30d64a1ab89c7940991c630aa6064736f6c63430008070033

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.