ETH Price: $2,969.39 (-4.05%)
Gas: 2 Gwei

Token

Secret Money Society V2 (SMS)
 

Overview

Max Total Supply

555 SMS

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 SMS
0x0000000000000000000000000000000000000000
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:
SecretMoneySocietyV2

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 16 : SecretMoneySocietyV2.sol
// SPDX-License-Identifier: UNLICENSED
// 
// 
//  .d8888b.                                    888         888b     d888                                           .d8888b.                    d8b          888             
// d88P  Y88b                                   888         8888b   d8888                                          d88P  Y88b                   Y8P          888             
// Y88b.                                        888         88888b.d88888                                          Y88b.                                     888             
//  "Y888b.    .d88b.   .d8888b 888d888 .d88b.  888888      888Y88888P888  .d88b.  88888b.   .d88b.  888  888       "Y888b.    .d88b.   .d8888b 888  .d88b.  888888 888  888 
//     "Y88b. d8P  Y8b d88P"    888P"  d8P  Y8b 888         888 Y888P 888 d88""88b 888 "88b d8P  Y8b 888  888          "Y88b. d88""88b d88P"    888 d8P  Y8b 888    888  888 
//       "888 88888888 888      888    88888888 888         888  Y8P  888 888  888 888  888 88888888 888  888            "888 888  888 888      888 88888888 888    888  888 
// Y88b  d88P Y8b.     Y88b.    888    Y8b.     Y88b.       888   "   888 Y88..88P 888  888 Y8b.     Y88b 888      Y88b  d88P Y88..88P Y88b.    888 Y8b.     Y88b.  Y88b 888 
//  "Y8888P"   "Y8888   "Y8888P 888     "Y8888   "Y888      888       888  "Y88P"  888  888  "Y8888   "Y88888       "Y8888P"   "Y88P"   "Y8888P 888  "Y8888   "Y888  "Y88888 
//                                                                                                        888                                                            888 
//                                                                                                   Y8b d88P                                                       Y8b d88P 
//                                                                                                    "Y88P"                                                         "Y88P"  
//
// [website] https://secretmoneysociety.xyz/
// [discord] https://discord.gg/secretmoneynft
// [twitter] https://twitter.com/secretmoneynft
// 
// [we like the art]

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract SecretMoneySocietyV2 is ERC721, Ownable, ReentrancyGuard, PaymentSplitter {

    using Strings for uint256;
    using MerkleProof for bytes32[];

    string public baseURI;
    string public baseExtension = ".json";

    uint256 public currentPrice = 0.14 ether;
    uint256 public maxSupply = 5555;
    uint256 public totalSupply = 0;
    uint256 public maxWhitelistMintPerWallet = 4;
    uint256 public maxMintPerTxn = 10;

    bool public publicPaused = true;
    bool public whitelistPaused = true;
    bool public revealed = false;

    bytes32 public merkleRoot;

    address t1 = 0xE90256ec73Ec4591fFa86AC99ee03dC664F31f0F; // Community Wallet
    address t2 = 0xbbe43612b9B577d5d9cB786324880c01d5792Ebc; // Artist
    address t3 = 0xab52ddd891F3FED34632c8560b0970A97D306946; // Developer
    address t4 = 0x66021c830939f39eEf8DaB95D6dcF427F2b25658; // Marketing

    address[] addressList = [t1, t2, t3, t4];
    uint256[] shareList = [40, 40, 10, 10];

    mapping(address => uint256) public whitelistMintPerWallet;

    constructor()
    ERC721("Secret Money Society V2", "SMS")
    PaymentSplitter(addressList, shareList)  {}

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

    function mint(uint256 quantity) public payable nonReentrant {
        require(!publicPaused, "mint: public sale not active");
        require(quantity > 0, "mint: minimum 1");
        require(quantity <= maxMintPerTxn, "mint: exceeded maximum quantity per txn");
        require(totalSupply + quantity <= maxSupply, "mint: would exceed max supply");
        require(msg.value >= currentPrice * quantity, "mint: ether sent is not correct");

        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender, totalSupply + 1);
            totalSupply += 1;
        }
    }

    function mintWhitelist(
        bytes32[] calldata proof,
        uint256 quantity
    ) public payable nonReentrant {
        require(proof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender))), "mint: not on whitelist");
        require(!whitelistPaused, "mint: whitelist sale not active");
        require(whitelistMintPerWallet[msg.sender] + quantity <= maxWhitelistMintPerWallet, "mint: exceeds maximum quanity per whitelist");
        require(quantity > 0, "mint: minimum 1");
        require(quantity <= maxWhitelistMintPerWallet, "mint: exceeded maximum quantity per txn for whitelist");
        require(totalSupply + quantity <= maxSupply, "mint: would exceed max supply");
        require(msg.value >= currentPrice * quantity, "mint: ether sent is not correct");

        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender, totalSupply + 1);
            whitelistMintPerWallet[msg.sender] += 1;
            totalSupply += 1;
        }
    }

    function gift(
        address _wallet,
        uint256 quantity
    ) public onlyOwner {
        require(quantity > 0, "gift: minimum 1");
        require(totalSupply + quantity <= maxSupply, "gift: would exceed max supply");
        
        for(uint256 i; i < quantity; i++){
            _safeMint(_wallet, totalSupply + 1);
            totalSupply += 1;
        }
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        if (revealed) {
            return bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
                : "";
        } else {
            return bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, "preview", baseExtension))
                : "";
        }
    }

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

    function setPrice(uint256 _newPrice) public onlyOwner {
        currentPrice = _newPrice;
    }

    function setMaxMintPerTxn(uint256 _newMaxMintPerTxn) public onlyOwner {
        maxMintPerTxn = _newMaxMintPerTxn;
    }

    function setMaxMintPerWhitelist(uint256 _newMaxMintPerWhitelist) public onlyOwner {
        maxWhitelistMintPerWallet = _newMaxMintPerWhitelist;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setWhitelistPaused(bool _state) public onlyOwner {
        whitelistPaused = _state;
    }

    function setPublicPaused(bool _state) public onlyOwner {
        publicPaused = _state;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

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

    function migrateTokens(address addr) public onlyOwner {
        uint256 previousSupply = IERC20(addr).totalSupply();
        for (uint i = 1; i <= previousSupply; i++) {
            address owner = IERC721(addr).ownerOf(i);
            _safeMint(owner, i);
            totalSupply += 1;
        }
    }

}

File 2 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

File 3 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 16 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.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.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, 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;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @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 total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @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 amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][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 = _pendingPayment(account, totalReceived, released(account));

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

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

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

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

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

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

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @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 5 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 7 of 16 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 8 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

File 9 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

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 10 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

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 12 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

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 13 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 14 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

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 15 of 16 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 16 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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"},{"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"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"migrateTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerTxn","type":"uint256"}],"name":"setMaxMintPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintPerWhitelist","type":"uint256"}],"name":"setMaxMintPerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistPaused","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891601091906200063a565b506701f161421c8e00006011556115b3601255600060135560046014819055600a6015556016805461010162ffffff199091161790556018805473e90256ec73ec4591ffa86ac99ee03dc664f31f0f6001600160a01b031991821681179092556019805473bbe43612b9b577d5d9cb786324880c01d5792ebc9083168117909155601a805473ab52ddd891f3fed34632c8560b0970a97d3069469084168117909155601b80547366021c830939f39eef8dab95d6dcf427f2b256589416841790556040805160808101825294855260208501929092529083015260608201526200011691601c9190620006c9565b506040805160808101825260288082526020820152600a91810182905260608101919091526200014b90601d90600462000721565b503480156200015957600080fd5b50601c805480602002602001604051908101604052809291908181526020018280548015620001b257602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000193575b5050505050601d8054806020026020016040519081016040528092919081815260200182805480156200020557602002820191906000526020600020905b815481526020019060010190808311620001f0575b5050604080518082018252601781527f536563726574204d6f6e657920536f6369657479205632000000000000000000602080830191825283518085019094526003845262534d5360e81b9084015281519195509193506200026c9250600091906200063a565b508051620002829060019060208401906200063a565b5050506200029f62000299620003f660201b60201c565b620003fa565b60016007558051825114620003165760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003695760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200030d565b60005b8251811015620003ed57620003d88382815181106200039b57634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110620003c457634e487b7160e01b600052603260045260246000fd5b60200260200101516200044c60201b60201c565b80620003e481620007d3565b9150506200036c565b50505062000807565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004b95760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200030d565b600081116200050b5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200030d565b6001600160a01b0382166000908152600a602052604090205415620005875760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200030d565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a60205260409020819055600854620005f19082906200077b565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620006489062000796565b90600052602060002090601f0160209004810192826200066c5760008555620006b7565b82601f106200068757805160ff1916838001178555620006b7565b82800160010185558215620006b7579182015b82811115620006b75782518255916020019190600101906200069a565b50620006c592915062000764565b5090565b828054828255906000526020600020908101928215620006b7579160200282015b82811115620006b757825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006ea565b828054828255906000526020600020908101928215620006b7579160200282015b82811115620006b7578251829060ff1690559160200191906001019062000742565b5b80821115620006c5576000815560010162000765565b60008219821115620007915762000791620007f1565b500190565b600181811c90821680620007ab57607f821691505b60208210811415620007cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620007ea57620007ea620007f1565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6132a480620008176000396000f3fe60806040526004361061023c5760003560e01c8062eb70131461028157806301ffc9a7146102a357806305026cee146102d857806306fdde03146102f8578063081812fc1461031a578063095ea7b3146103475780630bb12bb81461036757806318160ddd1461038157806319165587146103a55780632392ff53146103c557806323b872dd146103f25780632eb4a7ab146104125780633a98ef39146104285780633ccfd60b1461043d578063406072a91461045257806342842e0e1461047257806348b750441461049257806351830227146104b257806355f804b3146104d257806361e61a25146104f25780636352211e146105115780636c0360eb1461053157806370a0823114610546578063715018a6146105665780637cb647591461057b5780638a54af1d1461059b5780638b83209b146105bb5780638da5cb5b146105db57806391b7f5ed146105f057806395d89b41146106105780639852595c146106255780639d1b464a14610645578063a0712d681461065b578063a22cb4651461066e578063a6d612f91461068e578063b293f2b4146106a1578063b7203b8f146106b7578063b88d4fde146106d7578063c1684711146106f7578063c668286214610717578063c87b56dd1461072c578063caa8078f1461074c578063cbce4c9714610762578063ce7c2ac214610782578063d5abeb01146107b8578063d79779b2146107ce578063e0a80853146107ee578063e33b7de31461080e578063e985e9c514610823578063f2fde38b1461084357600080fd5b3661027c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7703334604051610272929190612e21565b60405180910390a1005b600080fd5b34801561028d57600080fd5b506102a161029c366004612c03565b610863565b005b3480156102af57600080fd5b506102c36102be366004612c1b565b6108a0565b60405190151581526020015b60405180910390f35b3480156102e457600080fd5b506102a16102f3366004612c03565b6108b1565b34801561030457600080fd5b5061030d6108e5565b6040516102cf9190612e77565b34801561032657600080fd5b5061033a610335366004612c03565b610977565b6040516102cf9190612e0d565b34801561035357600080fd5b506102a1610362366004612b2b565b6109ff565b34801561037357600080fd5b506016546102c39060ff1681565b34801561038d57600080fd5b5061039760135481565b6040519081526020016102cf565b3480156103b157600080fd5b506102a16103c03660046129d2565b610b10565b3480156103d157600080fd5b506103976103e03660046129d2565b601e6020526000908152604090205481565b3480156103fe57600080fd5b506102a161040d366004612a42565b610c1f565b34801561041e57600080fd5b5061039760175481565b34801561043457600080fd5b50600854610397565b34801561044957600080fd5b506102a1610c50565b34801561045e57600080fd5b5061039761046d366004612c53565b610cb2565b34801561047e57600080fd5b506102a161048d366004612a42565b610cdd565b34801561049e57600080fd5b506102a16104ad366004612c53565b610cf8565b3480156104be57600080fd5b506016546102c39062010000900460ff1681565b3480156104de57600080fd5b506102a16104ed366004612c65565b610eae565b3480156104fe57600080fd5b506016546102c390610100900460ff1681565b34801561051d57600080fd5b5061033a61052c366004612c03565b610ef0565b34801561053d57600080fd5b5061030d610f67565b34801561055257600080fd5b506103976105613660046129d2565b610ff5565b34801561057257600080fd5b506102a161107c565b34801561058757600080fd5b506102a1610596366004612c03565b6110b7565b3480156105a757600080fd5b506102a16105b6366004612bcb565b6110eb565b3480156105c757600080fd5b5061033a6105d6366004612c03565b61112d565b3480156105e757600080fd5b5061033a61116b565b3480156105fc57600080fd5b506102a161060b366004612c03565b61117a565b34801561061c57600080fd5b5061030d6111ae565b34801561063157600080fd5b506103976106403660046129d2565b6111bd565b34801561065157600080fd5b5061039760115481565b6102a1610669366004612c03565b6111d8565b34801561067a57600080fd5b506102a1610689366004612afe565b611375565b6102a161069c366004612b56565b611380565b3480156106ad57600080fd5b5061039760145481565b3480156106c357600080fd5b506102a16106d2366004612bcb565b61168e565b3480156106e357600080fd5b506102a16106f2366004612a82565b6116d7565b34801561070357600080fd5b506102a16107123660046129d2565b61170f565b34801561072357600080fd5b5061030d611871565b34801561073857600080fd5b5061030d610747366004612c03565b61187e565b34801561075857600080fd5b5061039760155481565b34801561076e57600080fd5b506102a161077d366004612b2b565b611996565b34801561078e57600080fd5b5061039761079d3660046129d2565b6001600160a01b03166000908152600a602052604090205490565b3480156107c457600080fd5b5061039760125481565b3480156107da57600080fd5b506103976107e93660046129d2565b611aaf565b3480156107fa57600080fd5b506102a1610809366004612bcb565b611aca565b34801561081a57600080fd5b50600954610397565b34801561082f57600080fd5b506102c361083e366004612a0a565b611b15565b34801561084f57600080fd5b506102a161085e3660046129d2565b611b43565b3361086c61116b565b6001600160a01b03161461089b5760405162461bcd60e51b815260040161089290612f96565b60405180910390fd5b601455565b60006108ab82611be3565b92915050565b336108ba61116b565b6001600160a01b0316146108e05760405162461bcd60e51b815260040161089290612f96565b601555565b6060600080546108f49061314f565b80601f01602080910402602001604051908101604052809291908181526020018280546109209061314f565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b600061098282611c33565b6109e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610892565b506000908152600460205260409020546001600160a01b031690565b6000610a0a82610ef0565b9050806001600160a01b0316836001600160a01b03161415610a785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610892565b336001600160a01b0382161480610a945750610a948133611b15565b610b015760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610892565b610b0b8383611c50565b505050565b6001600160a01b0381166000908152600a6020526040902054610b455760405162461bcd60e51b815260040161089290612f05565b6000610b5060095490565b610b5a90476130c1565b90506000610b718383610b6c866111bd565b611cbe565b905080610b905760405162461bcd60e51b815260040161089290612f4b565b6001600160a01b0383166000908152600b602052604081208054839290610bb89084906130c1565b925050819055508060096000828254610bd191906130c1565b90915550610be190508382611d04565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610c12929190612e21565b60405180910390a1505050565b610c293382611e1a565b610c455760405162461bcd60e51b815260040161089290613002565b610b0b838383611edc565b33610c5961116b565b6001600160a01b031614610c7f5760405162461bcd60e51b815260040161089290612f96565b6040514790339082156108fc029083906000818181858888f19350505050158015610cae573d6000803e3d6000fd5b5050565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b610b0b838383604051806020016040528060008152506116d7565b6001600160a01b0381166000908152600a6020526040902054610d2d5760405162461bcd60e51b815260040161089290612f05565b6000610d3883611aaf565b6040516370a0823160e01b81526001600160a01b038516906370a0823190610d64903090600401612e0d565b60206040518083038186803b158015610d7c57600080fd5b505afa158015610d90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db49190612caa565b610dbe91906130c1565b90506000610dd18383610b6c8787610cb2565b905080610df05760405162461bcd60e51b815260040161089290612f4b565b6001600160a01b038085166000908152600e6020908152604080832093871683529290529081208054839290610e279084906130c1565b90915550506001600160a01b0384166000908152600d602052604081208054839290610e549084906130c1565b90915550610e65905084848361206a565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051610ea0929190612e21565b60405180910390a250505050565b33610eb761116b565b6001600160a01b031614610edd5760405162461bcd60e51b815260040161089290612f96565b8051610cae90600f9060208401906128c4565b6000818152600260205260408120546001600160a01b0316806108ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610892565b600f8054610f749061314f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa09061314f565b8015610fed5780601f10610fc257610100808354040283529160200191610fed565b820191906000526020600020905b815481529060010190602001808311610fd057829003601f168201915b505050505081565b60006001600160a01b0382166110605760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610892565b506001600160a01b031660009081526003602052604090205490565b3361108561116b565b6001600160a01b0316146110ab5760405162461bcd60e51b815260040161089290612f96565b6110b560006120c0565b565b336110c061116b565b6001600160a01b0316146110e65760405162461bcd60e51b815260040161089290612f96565b601755565b336110f461116b565b6001600160a01b03161461111a5760405162461bcd60e51b815260040161089290612f96565b6016805460ff1916911515919091179055565b6000600c828154811061115057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6006546001600160a01b031690565b3361118361116b565b6001600160a01b0316146111a95760405162461bcd60e51b815260040161089290612f96565b601155565b6060600180546108f49061314f565b6001600160a01b03166000908152600b602052604090205490565b600260075414156111fb5760405162461bcd60e51b815260040161089290613053565b600260075560165460ff16156112525760405162461bcd60e51b815260206004820152601c60248201527b6d696e743a207075626c69632073616c65206e6f742061637469766560201b6044820152606401610892565b600081116112725760405162461bcd60e51b815260040161089290612edc565b6015548111156112c25760405162461bcd60e51b8152602060048201526027602482015260008051602061322f8339815191526044820152663832b9103a3c3760c91b6064820152608401610892565b601254816013546112d391906130c1565b11156112f15760405162461bcd60e51b81526004016108929061308a565b806011546112ff91906130ed565b34101561131e5760405162461bcd60e51b815260040161089290612fcb565b60005b8181101561136c5761134133601354600161133c91906130c1565b612112565b60016013600082825461135491906130c1565b9091555081905061136481613184565b915050611321565b50506001600755565b610cae33838361212c565b600260075414156113a35760405162461bcd60e51b815260040161089290613053565b60026007556017546040516001600160601b03193360601b16602082015261141c9190603401604051602081830303815290604052805190602001208585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509294939250506121f79050565b6114615760405162461bcd60e51b81526020600482015260166024820152751b5a5b9d0e881b9bdd081bdb881dda1a5d195b1a5cdd60521b6044820152606401610892565b601654610100900460ff16156114b95760405162461bcd60e51b815260206004820152601f60248201527f6d696e743a2077686974656c6973742073616c65206e6f7420616374697665006044820152606401610892565b601454336000908152601e60205260409020546114d79083906130c1565b11156115395760405162461bcd60e51b815260206004820152602b60248201527f6d696e743a2065786365656473206d6178696d756d207175616e69747920706560448201526a1c881dda1a5d195b1a5cdd60aa1b6064820152608401610892565b600081116115595760405162461bcd60e51b815260040161089290612edc565b6014548111156115b75760405162461bcd60e51b8152602060048201526035602482015260008051602061322f8339815191526044820152741c195c881d1e1b88199bdc881dda1a5d195b1a5cdd605a1b6064820152608401610892565b601254816013546115c891906130c1565b11156115e65760405162461bcd60e51b81526004016108929061308a565b806011546115f491906130ed565b3410156116135760405162461bcd60e51b815260040161089290612fcb565b60005b818110156116835761163133601354600161133c91906130c1565b336000908152601e602052604081208054600192906116519084906130c1565b9250508190555060016013600082825461166b91906130c1565b9091555081905061167b81613184565b915050611616565b505060016007555050565b3361169761116b565b6001600160a01b0316146116bd5760405162461bcd60e51b815260040161089290612f96565b601680549115156101000261ff0019909216919091179055565b6116e13383611e1a565b6116fd5760405162461bcd60e51b815260040161089290613002565b6117098484848461220d565b50505050565b3361171861116b565b6001600160a01b03161461173e5760405162461bcd60e51b815260040161089290612f96565b6000816001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561177957600080fd5b505afa15801561178d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b19190612caa565b905060015b818111610b0b576040516331a9108f60e11b8152600481018290526000906001600160a01b03851690636352211e9060240160206040518083038186803b15801561180057600080fd5b505afa158015611814573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183891906129ee565b90506118448183612112565b60016013600082825461185791906130c1565b90915550829150611869905081613184565b9150506117b6565b60108054610f749061314f565b606061188982611c33565b6118ed5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610892565b60006118f7612240565b60165490915062010000900460ff161561195e5760008151116119295760405180602001604052806000815250611957565b806119338461224f565b601060405160200161194793929190612da2565b6040516020818303038152906040525b9392505050565b600081511161197c5760405180602001604052806000815250611957565b806010604051602001611947929190612dd4565b50919050565b3361199f61116b565b6001600160a01b0316146119c55760405162461bcd60e51b815260040161089290612f96565b60008111611a075760405162461bcd60e51b815260206004820152600f60248201526e676966743a206d696e696d756d203160881b6044820152606401610892565b60125481601354611a1891906130c1565b1115611a665760405162461bcd60e51b815260206004820152601d60248201527f676966743a20776f756c6420657863656564206d617820737570706c790000006044820152606401610892565b60005b81811015610b0b57611a8483601354600161133c91906130c1565b600160136000828254611a9791906130c1565b90915550819050611aa781613184565b915050611a69565b6001600160a01b03166000908152600d602052604090205490565b33611ad361116b565b6001600160a01b031614611af95760405162461bcd60e51b815260040161089290612f96565b60168054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33611b4c61116b565b6001600160a01b031614611b725760405162461bcd60e51b815260040161089290612f96565b6001600160a01b038116611bd75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610892565b611be0816120c0565b50565b60006001600160e01b031982166380ac58cd60e01b1480611c1457506001600160e01b03198216635b5e139f60e01b145b806108ab57506301ffc9a760e01b6001600160e01b03198316146108ab565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c8582610ef0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6008546001600160a01b0384166000908152600a602052604081205490918391611ce890866130ed565b611cf291906130d9565b611cfc919061310c565b949350505050565b80471015611d545760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610892565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611da1576040519150601f19603f3d011682016040523d82523d6000602084013e611da6565b606091505b5050905080610b0b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610892565b6000611e2582611c33565b611e865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610892565b6000611e9183610ef0565b9050806001600160a01b0316846001600160a01b03161480611ecc5750836001600160a01b0316611ec184610977565b6001600160a01b0316145b80611cfc5750611cfc8185611b15565b826001600160a01b0316611eef82610ef0565b6001600160a01b031614611f575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610892565b6001600160a01b038216611fb95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610892565b611fc4600082611c50565b6001600160a01b0383166000908152600360205260408120805460019290611fed90849061310c565b90915550506001600160a01b038216600090815260036020526040812080546001929061201b9084906130c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061324f83398151915291a4505050565b610b0b8363a9059cbb60e01b8484604051602401612089929190612e21565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612368565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cae82826040518060200160405280600081525061243a565b816001600160a01b0316836001600160a01b0316141561218a5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610892565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082612204858461246d565b14949350505050565b612218848484611edc565b61222484848484612527565b6117095760405162461bcd60e51b815260040161089290612e8a565b6060600f80546108f49061314f565b6060816122735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561229d578061228781613184565b91506122969050600a836130d9565b9150612277565b6000816001600160401b038111156122c557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122ef576020820181803683370190505b5090505b8415611cfc5761230460018361310c565b9150612311600a8661319f565b61231c9060306130c1565b60f81b81838151811061233f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612361600a866130d9565b94506122f3565b60006123bd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166126349092919063ffffffff16565b805190915015610b0b57808060200190518101906123db9190612be7565b610b0b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610892565b6124448383612643565b6124516000848484612527565b610b0b5760405162461bcd60e51b815260040161089290612e8a565b600081815b845181101561251f57600085828151811061249d57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116124df57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061250c565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061251781613184565b915050612472565b509392505050565b60006001600160a01b0384163b1561262957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061256b903390899088908890600401612e3a565b602060405180830381600087803b15801561258557600080fd5b505af19250505080156125b5575060408051601f3d908101601f191682019092526125b291810190612c37565b60015b61260f573d8080156125e3576040519150601f19603f3d011682016040523d82523d6000602084013e6125e8565b606091505b5080516126075760405162461bcd60e51b815260040161089290612e8a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cfc565b506001949350505050565b6060611cfc8484600085612763565b6001600160a01b0382166126995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610892565b6126a281611c33565b156126ee5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610892565b6001600160a01b03821660009081526003602052604081208054600192906127179084906130c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038616908117909155905183929060008051602061324f833981519152908290a45050565b6060824710156127c45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610892565b843b6128125760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610892565b600080866001600160a01b0316858760405161282e9190612d86565b60006040518083038185875af1925050503d806000811461286b576040519150601f19603f3d011682016040523d82523d6000602084013e612870565b606091505b509150915061288082828661288b565b979650505050505050565b6060831561289a575081611957565b8251156128aa5782518084602001fd5b8160405162461bcd60e51b81526004016108929190612e77565b8280546128d09061314f565b90600052602060002090601f0160209004810192826128f25760008555612938565b82601f1061290b57805160ff1916838001178555612938565b82800160010185558215612938579182015b8281111561293857825182559160200191906001019061291d565b50612944929150612948565b5090565b5b808211156129445760008155600101612949565b60006001600160401b0380841115612977576129776131df565b604051601f8501601f19908116603f0116810190828211818310171561299f5761299f6131df565b816040528093508581528686860111156129b857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156129e3578081fd5b8135611957816131f5565b6000602082840312156129ff578081fd5b8151611957816131f5565b60008060408385031215612a1c578081fd5b8235612a27816131f5565b91506020830135612a37816131f5565b809150509250929050565b600080600060608486031215612a56578081fd5b8335612a61816131f5565b92506020840135612a71816131f5565b929592945050506040919091013590565b60008060008060808587031215612a97578081fd5b8435612aa2816131f5565b93506020850135612ab2816131f5565b92506040850135915060608501356001600160401b03811115612ad3578182fd5b8501601f81018713612ae3578182fd5b612af28782356020840161295d565b91505092959194509250565b60008060408385031215612b10578182fd5b8235612b1b816131f5565b91506020830135612a378161320a565b60008060408385031215612b3d578182fd5b8235612b48816131f5565b946020939093013593505050565b600080600060408486031215612b6a578283fd5b83356001600160401b0380821115612b80578485fd5b818601915086601f830112612b93578485fd5b813581811115612ba1578586fd5b8760208260051b8501011115612bb5578586fd5b6020928301989097509590910135949350505050565b600060208284031215612bdc578081fd5b81356119578161320a565b600060208284031215612bf8578081fd5b81516119578161320a565b600060208284031215612c14578081fd5b5035919050565b600060208284031215612c2c578081fd5b813561195781613218565b600060208284031215612c48578081fd5b815161195781613218565b60008060408385031215612a1c578182fd5b600060208284031215612c76578081fd5b81356001600160401b03811115612c8b578182fd5b8201601f81018413612c9b578182fd5b611cfc8482356020840161295d565b600060208284031215612cbb578081fd5b5051919050565b60008151808452612cda816020860160208601613123565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612d0857607f831692505b6020808410821415612d2857634e487b7160e01b86526022600452602486fd5b818015612d3c5760018114612d4d57612d7a565b60ff19861689528489019650612d7a565b60008881526020902060005b86811015612d725781548b820152908501908301612d59565b505084890196505b50505050505092915050565b60008251612d98818460208701613123565b9190910192915050565b60008451612db4818460208901613123565b845190830190612dc8818360208901613123565b61288081830186612cee565b60008351612de6818460208801613123565b667072657669657760c81b908301908152612e046007820185612cee565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e6d90830184612cc2565b9695505050505050565b6020815260006119576020830184612cc2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e6d696e743a206d696e696d756d203160881b604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f6d696e743a2065746865722073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601d908201527f6d696e743a20776f756c6420657863656564206d617820737570706c79000000604082015260600190565b600082198211156130d4576130d46131b3565b500190565b6000826130e8576130e86131c9565b500490565b6000816000190483118215151615613107576131076131b3565b500290565b60008282101561311e5761311e6131b3565b500390565b60005b8381101561313e578181015183820152602001613126565b838111156117095750506000910152565b600181811c9082168061316357607f821691505b6020821081141561199057634e487b7160e01b600052602260045260246000fd5b6000600019821415613198576131986131b3565b5060010190565b6000826131ae576131ae6131c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611be057600080fd5b8015158114611be057600080fd5b6001600160e01b031981168114611be057600080fdfe6d696e743a206578636565646564206d6178696d756d207175616e7469747920ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204b4903b2aa5e3a790a36d3c14e9af406679ad333871079f8a128160a2546f1e064736f6c63430008040033

Deployed Bytecode

0x60806040526004361061023c5760003560e01c8062eb70131461028157806301ffc9a7146102a357806305026cee146102d857806306fdde03146102f8578063081812fc1461031a578063095ea7b3146103475780630bb12bb81461036757806318160ddd1461038157806319165587146103a55780632392ff53146103c557806323b872dd146103f25780632eb4a7ab146104125780633a98ef39146104285780633ccfd60b1461043d578063406072a91461045257806342842e0e1461047257806348b750441461049257806351830227146104b257806355f804b3146104d257806361e61a25146104f25780636352211e146105115780636c0360eb1461053157806370a0823114610546578063715018a6146105665780637cb647591461057b5780638a54af1d1461059b5780638b83209b146105bb5780638da5cb5b146105db57806391b7f5ed146105f057806395d89b41146106105780639852595c146106255780639d1b464a14610645578063a0712d681461065b578063a22cb4651461066e578063a6d612f91461068e578063b293f2b4146106a1578063b7203b8f146106b7578063b88d4fde146106d7578063c1684711146106f7578063c668286214610717578063c87b56dd1461072c578063caa8078f1461074c578063cbce4c9714610762578063ce7c2ac214610782578063d5abeb01146107b8578063d79779b2146107ce578063e0a80853146107ee578063e33b7de31461080e578063e985e9c514610823578063f2fde38b1461084357600080fd5b3661027c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7703334604051610272929190612e21565b60405180910390a1005b600080fd5b34801561028d57600080fd5b506102a161029c366004612c03565b610863565b005b3480156102af57600080fd5b506102c36102be366004612c1b565b6108a0565b60405190151581526020015b60405180910390f35b3480156102e457600080fd5b506102a16102f3366004612c03565b6108b1565b34801561030457600080fd5b5061030d6108e5565b6040516102cf9190612e77565b34801561032657600080fd5b5061033a610335366004612c03565b610977565b6040516102cf9190612e0d565b34801561035357600080fd5b506102a1610362366004612b2b565b6109ff565b34801561037357600080fd5b506016546102c39060ff1681565b34801561038d57600080fd5b5061039760135481565b6040519081526020016102cf565b3480156103b157600080fd5b506102a16103c03660046129d2565b610b10565b3480156103d157600080fd5b506103976103e03660046129d2565b601e6020526000908152604090205481565b3480156103fe57600080fd5b506102a161040d366004612a42565b610c1f565b34801561041e57600080fd5b5061039760175481565b34801561043457600080fd5b50600854610397565b34801561044957600080fd5b506102a1610c50565b34801561045e57600080fd5b5061039761046d366004612c53565b610cb2565b34801561047e57600080fd5b506102a161048d366004612a42565b610cdd565b34801561049e57600080fd5b506102a16104ad366004612c53565b610cf8565b3480156104be57600080fd5b506016546102c39062010000900460ff1681565b3480156104de57600080fd5b506102a16104ed366004612c65565b610eae565b3480156104fe57600080fd5b506016546102c390610100900460ff1681565b34801561051d57600080fd5b5061033a61052c366004612c03565b610ef0565b34801561053d57600080fd5b5061030d610f67565b34801561055257600080fd5b506103976105613660046129d2565b610ff5565b34801561057257600080fd5b506102a161107c565b34801561058757600080fd5b506102a1610596366004612c03565b6110b7565b3480156105a757600080fd5b506102a16105b6366004612bcb565b6110eb565b3480156105c757600080fd5b5061033a6105d6366004612c03565b61112d565b3480156105e757600080fd5b5061033a61116b565b3480156105fc57600080fd5b506102a161060b366004612c03565b61117a565b34801561061c57600080fd5b5061030d6111ae565b34801561063157600080fd5b506103976106403660046129d2565b6111bd565b34801561065157600080fd5b5061039760115481565b6102a1610669366004612c03565b6111d8565b34801561067a57600080fd5b506102a1610689366004612afe565b611375565b6102a161069c366004612b56565b611380565b3480156106ad57600080fd5b5061039760145481565b3480156106c357600080fd5b506102a16106d2366004612bcb565b61168e565b3480156106e357600080fd5b506102a16106f2366004612a82565b6116d7565b34801561070357600080fd5b506102a16107123660046129d2565b61170f565b34801561072357600080fd5b5061030d611871565b34801561073857600080fd5b5061030d610747366004612c03565b61187e565b34801561075857600080fd5b5061039760155481565b34801561076e57600080fd5b506102a161077d366004612b2b565b611996565b34801561078e57600080fd5b5061039761079d3660046129d2565b6001600160a01b03166000908152600a602052604090205490565b3480156107c457600080fd5b5061039760125481565b3480156107da57600080fd5b506103976107e93660046129d2565b611aaf565b3480156107fa57600080fd5b506102a1610809366004612bcb565b611aca565b34801561081a57600080fd5b50600954610397565b34801561082f57600080fd5b506102c361083e366004612a0a565b611b15565b34801561084f57600080fd5b506102a161085e3660046129d2565b611b43565b3361086c61116b565b6001600160a01b03161461089b5760405162461bcd60e51b815260040161089290612f96565b60405180910390fd5b601455565b60006108ab82611be3565b92915050565b336108ba61116b565b6001600160a01b0316146108e05760405162461bcd60e51b815260040161089290612f96565b601555565b6060600080546108f49061314f565b80601f01602080910402602001604051908101604052809291908181526020018280546109209061314f565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b600061098282611c33565b6109e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610892565b506000908152600460205260409020546001600160a01b031690565b6000610a0a82610ef0565b9050806001600160a01b0316836001600160a01b03161415610a785760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610892565b336001600160a01b0382161480610a945750610a948133611b15565b610b015760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610892565b610b0b8383611c50565b505050565b6001600160a01b0381166000908152600a6020526040902054610b455760405162461bcd60e51b815260040161089290612f05565b6000610b5060095490565b610b5a90476130c1565b90506000610b718383610b6c866111bd565b611cbe565b905080610b905760405162461bcd60e51b815260040161089290612f4b565b6001600160a01b0383166000908152600b602052604081208054839290610bb89084906130c1565b925050819055508060096000828254610bd191906130c1565b90915550610be190508382611d04565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610c12929190612e21565b60405180910390a1505050565b610c293382611e1a565b610c455760405162461bcd60e51b815260040161089290613002565b610b0b838383611edc565b33610c5961116b565b6001600160a01b031614610c7f5760405162461bcd60e51b815260040161089290612f96565b6040514790339082156108fc029083906000818181858888f19350505050158015610cae573d6000803e3d6000fd5b5050565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b610b0b838383604051806020016040528060008152506116d7565b6001600160a01b0381166000908152600a6020526040902054610d2d5760405162461bcd60e51b815260040161089290612f05565b6000610d3883611aaf565b6040516370a0823160e01b81526001600160a01b038516906370a0823190610d64903090600401612e0d565b60206040518083038186803b158015610d7c57600080fd5b505afa158015610d90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db49190612caa565b610dbe91906130c1565b90506000610dd18383610b6c8787610cb2565b905080610df05760405162461bcd60e51b815260040161089290612f4b565b6001600160a01b038085166000908152600e6020908152604080832093871683529290529081208054839290610e279084906130c1565b90915550506001600160a01b0384166000908152600d602052604081208054839290610e549084906130c1565b90915550610e65905084848361206a565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051610ea0929190612e21565b60405180910390a250505050565b33610eb761116b565b6001600160a01b031614610edd5760405162461bcd60e51b815260040161089290612f96565b8051610cae90600f9060208401906128c4565b6000818152600260205260408120546001600160a01b0316806108ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610892565b600f8054610f749061314f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa09061314f565b8015610fed5780601f10610fc257610100808354040283529160200191610fed565b820191906000526020600020905b815481529060010190602001808311610fd057829003601f168201915b505050505081565b60006001600160a01b0382166110605760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610892565b506001600160a01b031660009081526003602052604090205490565b3361108561116b565b6001600160a01b0316146110ab5760405162461bcd60e51b815260040161089290612f96565b6110b560006120c0565b565b336110c061116b565b6001600160a01b0316146110e65760405162461bcd60e51b815260040161089290612f96565b601755565b336110f461116b565b6001600160a01b03161461111a5760405162461bcd60e51b815260040161089290612f96565b6016805460ff1916911515919091179055565b6000600c828154811061115057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b6006546001600160a01b031690565b3361118361116b565b6001600160a01b0316146111a95760405162461bcd60e51b815260040161089290612f96565b601155565b6060600180546108f49061314f565b6001600160a01b03166000908152600b602052604090205490565b600260075414156111fb5760405162461bcd60e51b815260040161089290613053565b600260075560165460ff16156112525760405162461bcd60e51b815260206004820152601c60248201527b6d696e743a207075626c69632073616c65206e6f742061637469766560201b6044820152606401610892565b600081116112725760405162461bcd60e51b815260040161089290612edc565b6015548111156112c25760405162461bcd60e51b8152602060048201526027602482015260008051602061322f8339815191526044820152663832b9103a3c3760c91b6064820152608401610892565b601254816013546112d391906130c1565b11156112f15760405162461bcd60e51b81526004016108929061308a565b806011546112ff91906130ed565b34101561131e5760405162461bcd60e51b815260040161089290612fcb565b60005b8181101561136c5761134133601354600161133c91906130c1565b612112565b60016013600082825461135491906130c1565b9091555081905061136481613184565b915050611321565b50506001600755565b610cae33838361212c565b600260075414156113a35760405162461bcd60e51b815260040161089290613053565b60026007556017546040516001600160601b03193360601b16602082015261141c9190603401604051602081830303815290604052805190602001208585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509294939250506121f79050565b6114615760405162461bcd60e51b81526020600482015260166024820152751b5a5b9d0e881b9bdd081bdb881dda1a5d195b1a5cdd60521b6044820152606401610892565b601654610100900460ff16156114b95760405162461bcd60e51b815260206004820152601f60248201527f6d696e743a2077686974656c6973742073616c65206e6f7420616374697665006044820152606401610892565b601454336000908152601e60205260409020546114d79083906130c1565b11156115395760405162461bcd60e51b815260206004820152602b60248201527f6d696e743a2065786365656473206d6178696d756d207175616e69747920706560448201526a1c881dda1a5d195b1a5cdd60aa1b6064820152608401610892565b600081116115595760405162461bcd60e51b815260040161089290612edc565b6014548111156115b75760405162461bcd60e51b8152602060048201526035602482015260008051602061322f8339815191526044820152741c195c881d1e1b88199bdc881dda1a5d195b1a5cdd605a1b6064820152608401610892565b601254816013546115c891906130c1565b11156115e65760405162461bcd60e51b81526004016108929061308a565b806011546115f491906130ed565b3410156116135760405162461bcd60e51b815260040161089290612fcb565b60005b818110156116835761163133601354600161133c91906130c1565b336000908152601e602052604081208054600192906116519084906130c1565b9250508190555060016013600082825461166b91906130c1565b9091555081905061167b81613184565b915050611616565b505060016007555050565b3361169761116b565b6001600160a01b0316146116bd5760405162461bcd60e51b815260040161089290612f96565b601680549115156101000261ff0019909216919091179055565b6116e13383611e1a565b6116fd5760405162461bcd60e51b815260040161089290613002565b6117098484848461220d565b50505050565b3361171861116b565b6001600160a01b03161461173e5760405162461bcd60e51b815260040161089290612f96565b6000816001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561177957600080fd5b505afa15801561178d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b19190612caa565b905060015b818111610b0b576040516331a9108f60e11b8152600481018290526000906001600160a01b03851690636352211e9060240160206040518083038186803b15801561180057600080fd5b505afa158015611814573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183891906129ee565b90506118448183612112565b60016013600082825461185791906130c1565b90915550829150611869905081613184565b9150506117b6565b60108054610f749061314f565b606061188982611c33565b6118ed5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610892565b60006118f7612240565b60165490915062010000900460ff161561195e5760008151116119295760405180602001604052806000815250611957565b806119338461224f565b601060405160200161194793929190612da2565b6040516020818303038152906040525b9392505050565b600081511161197c5760405180602001604052806000815250611957565b806010604051602001611947929190612dd4565b50919050565b3361199f61116b565b6001600160a01b0316146119c55760405162461bcd60e51b815260040161089290612f96565b60008111611a075760405162461bcd60e51b815260206004820152600f60248201526e676966743a206d696e696d756d203160881b6044820152606401610892565b60125481601354611a1891906130c1565b1115611a665760405162461bcd60e51b815260206004820152601d60248201527f676966743a20776f756c6420657863656564206d617820737570706c790000006044820152606401610892565b60005b81811015610b0b57611a8483601354600161133c91906130c1565b600160136000828254611a9791906130c1565b90915550819050611aa781613184565b915050611a69565b6001600160a01b03166000908152600d602052604090205490565b33611ad361116b565b6001600160a01b031614611af95760405162461bcd60e51b815260040161089290612f96565b60168054911515620100000262ff000019909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33611b4c61116b565b6001600160a01b031614611b725760405162461bcd60e51b815260040161089290612f96565b6001600160a01b038116611bd75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610892565b611be0816120c0565b50565b60006001600160e01b031982166380ac58cd60e01b1480611c1457506001600160e01b03198216635b5e139f60e01b145b806108ab57506301ffc9a760e01b6001600160e01b03198316146108ab565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c8582610ef0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6008546001600160a01b0384166000908152600a602052604081205490918391611ce890866130ed565b611cf291906130d9565b611cfc919061310c565b949350505050565b80471015611d545760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610892565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611da1576040519150601f19603f3d011682016040523d82523d6000602084013e611da6565b606091505b5050905080610b0b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610892565b6000611e2582611c33565b611e865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610892565b6000611e9183610ef0565b9050806001600160a01b0316846001600160a01b03161480611ecc5750836001600160a01b0316611ec184610977565b6001600160a01b0316145b80611cfc5750611cfc8185611b15565b826001600160a01b0316611eef82610ef0565b6001600160a01b031614611f575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610892565b6001600160a01b038216611fb95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610892565b611fc4600082611c50565b6001600160a01b0383166000908152600360205260408120805460019290611fed90849061310c565b90915550506001600160a01b038216600090815260036020526040812080546001929061201b9084906130c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061324f83398151915291a4505050565b610b0b8363a9059cbb60e01b8484604051602401612089929190612e21565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612368565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cae82826040518060200160405280600081525061243a565b816001600160a01b0316836001600160a01b0316141561218a5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610892565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082612204858461246d565b14949350505050565b612218848484611edc565b61222484848484612527565b6117095760405162461bcd60e51b815260040161089290612e8a565b6060600f80546108f49061314f565b6060816122735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561229d578061228781613184565b91506122969050600a836130d9565b9150612277565b6000816001600160401b038111156122c557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122ef576020820181803683370190505b5090505b8415611cfc5761230460018361310c565b9150612311600a8661319f565b61231c9060306130c1565b60f81b81838151811061233f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612361600a866130d9565b94506122f3565b60006123bd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166126349092919063ffffffff16565b805190915015610b0b57808060200190518101906123db9190612be7565b610b0b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610892565b6124448383612643565b6124516000848484612527565b610b0b5760405162461bcd60e51b815260040161089290612e8a565b600081815b845181101561251f57600085828151811061249d57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116124df57604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061250c565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061251781613184565b915050612472565b509392505050565b60006001600160a01b0384163b1561262957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061256b903390899088908890600401612e3a565b602060405180830381600087803b15801561258557600080fd5b505af19250505080156125b5575060408051601f3d908101601f191682019092526125b291810190612c37565b60015b61260f573d8080156125e3576040519150601f19603f3d011682016040523d82523d6000602084013e6125e8565b606091505b5080516126075760405162461bcd60e51b815260040161089290612e8a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cfc565b506001949350505050565b6060611cfc8484600085612763565b6001600160a01b0382166126995760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610892565b6126a281611c33565b156126ee5760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610892565b6001600160a01b03821660009081526003602052604081208054600192906127179084906130c1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038616908117909155905183929060008051602061324f833981519152908290a45050565b6060824710156127c45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610892565b843b6128125760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610892565b600080866001600160a01b0316858760405161282e9190612d86565b60006040518083038185875af1925050503d806000811461286b576040519150601f19603f3d011682016040523d82523d6000602084013e612870565b606091505b509150915061288082828661288b565b979650505050505050565b6060831561289a575081611957565b8251156128aa5782518084602001fd5b8160405162461bcd60e51b81526004016108929190612e77565b8280546128d09061314f565b90600052602060002090601f0160209004810192826128f25760008555612938565b82601f1061290b57805160ff1916838001178555612938565b82800160010185558215612938579182015b8281111561293857825182559160200191906001019061291d565b50612944929150612948565b5090565b5b808211156129445760008155600101612949565b60006001600160401b0380841115612977576129776131df565b604051601f8501601f19908116603f0116810190828211818310171561299f5761299f6131df565b816040528093508581528686860111156129b857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156129e3578081fd5b8135611957816131f5565b6000602082840312156129ff578081fd5b8151611957816131f5565b60008060408385031215612a1c578081fd5b8235612a27816131f5565b91506020830135612a37816131f5565b809150509250929050565b600080600060608486031215612a56578081fd5b8335612a61816131f5565b92506020840135612a71816131f5565b929592945050506040919091013590565b60008060008060808587031215612a97578081fd5b8435612aa2816131f5565b93506020850135612ab2816131f5565b92506040850135915060608501356001600160401b03811115612ad3578182fd5b8501601f81018713612ae3578182fd5b612af28782356020840161295d565b91505092959194509250565b60008060408385031215612b10578182fd5b8235612b1b816131f5565b91506020830135612a378161320a565b60008060408385031215612b3d578182fd5b8235612b48816131f5565b946020939093013593505050565b600080600060408486031215612b6a578283fd5b83356001600160401b0380821115612b80578485fd5b818601915086601f830112612b93578485fd5b813581811115612ba1578586fd5b8760208260051b8501011115612bb5578586fd5b6020928301989097509590910135949350505050565b600060208284031215612bdc578081fd5b81356119578161320a565b600060208284031215612bf8578081fd5b81516119578161320a565b600060208284031215612c14578081fd5b5035919050565b600060208284031215612c2c578081fd5b813561195781613218565b600060208284031215612c48578081fd5b815161195781613218565b60008060408385031215612a1c578182fd5b600060208284031215612c76578081fd5b81356001600160401b03811115612c8b578182fd5b8201601f81018413612c9b578182fd5b611cfc8482356020840161295d565b600060208284031215612cbb578081fd5b5051919050565b60008151808452612cda816020860160208601613123565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612d0857607f831692505b6020808410821415612d2857634e487b7160e01b86526022600452602486fd5b818015612d3c5760018114612d4d57612d7a565b60ff19861689528489019650612d7a565b60008881526020902060005b86811015612d725781548b820152908501908301612d59565b505084890196505b50505050505092915050565b60008251612d98818460208701613123565b9190910192915050565b60008451612db4818460208901613123565b845190830190612dc8818360208901613123565b61288081830186612cee565b60008351612de6818460208801613123565b667072657669657760c81b908301908152612e046007820185612cee565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e6d90830184612cc2565b9695505050505050565b6020815260006119576020830184612cc2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e6d696e743a206d696e696d756d203160881b604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f6d696e743a2065746865722073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601d908201527f6d696e743a20776f756c6420657863656564206d617820737570706c79000000604082015260600190565b600082198211156130d4576130d46131b3565b500190565b6000826130e8576130e86131c9565b500490565b6000816000190483118215151615613107576131076131b3565b500290565b60008282101561311e5761311e6131b3565b500390565b60005b8381101561313e578181015183820152602001613126565b838111156117095750506000910152565b600181811c9082168061316357607f821691505b6020821081141561199057634e487b7160e01b600052602260045260246000fd5b6000600019821415613198576131986131b3565b5060010190565b6000826131ae576131ae6131c9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611be057600080fd5b8015158114611be057600080fd5b6001600160e01b031981168114611be057600080fdfe6d696e743a206578636565646564206d6178696d756d207175616e7469747920ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212204b4903b2aa5e3a790a36d3c14e9af406679ad333871079f8a128160a2546f1e064736f6c63430008040033

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.