ETH Price: $3,333.26 (-1.62%)
Gas: 21 Gwei

Token

Chains NFT (CHAINS)
 

Overview

Max Total Supply

10,000 CHAINS

Holders

2,522

Market

Volume (24H)

0.0181 ETH

Min Price (24H)

$20.00 @ 0.006000 ETH

Max Price (24H)

$20.33 @ 0.006100 ETH
Balance
1 CHAINS
0x194feaadb5972dd0451baca1300921c730062e77
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome to the first generative fine jewelry drop in the world. Chains NFT is a series of 10,000 FULLY PRODUCIBLE unique fine jewelry assets.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ChainsNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : ChainsNFT.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

//       ___          ___          ___                     ___          ___                   ___          ___       ___
//      /\  \        /\__\        /\  \         ___       /\__\        /\  \                 /\__\        /\  \     /\  \
//     /::\  \      /:/  /       /::\  \       /\  \     /::|  |      /::\  \               /::|  |      /::\  \    \:\  \
//    /:/\:\  \    /:/__/       /:/\:\  \      \:\  \   /:|:|  |     /:/\ \  \             /:|:|  |     /:/\:\  \    \:\  \
//   /:/  \:\  \  /::\  \ ___  /::\~\:\  \     /::\__\ /:/|:|  |__  _\:\~\ \  \           /:/|:|  |__  /::\~\:\  \   /::\  \
//  /:/__/ \:\__\/:/\:\  /\__\/:/\:\ \:\__\ __/:/\/__//:/ |:| /\__\/\ \:\ \ \__\         /:/ |:| /\__\/:/\:\ \:\__\ /:/\:\__\
//  \:\  \  \/__/\/__\:\/:/  /\/__\:\/:/  //\/:/  /   \/__|:|/:/  /\:\ \:\ \/__/         \/__|:|/:/  /\/__\:\ \/__//:/  \/__/
//   \:\  \           \::/  /      \::/  / \::/__/        |:/:/  /  \:\ \:\__\               |:/:/  /      \:\__\ /:/  /
//    \:\  \          /:/  /       /:/  /   \:\__\        |::/  /    \:\/:/  /               |::/  /        \/__/ \/__/
//     \:\__\        /:/  /       /:/  /     \/__/        /:/  /      \::/  /                /:/  /
//      \/__/        \/__/        \/__/                   \/__/        \/__/                 \/__/

// Smart Contract By: @backseats_eth

contract ChainsNFT is ERC721, PaymentSplitter, Ownable {

    // Setup

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    // Public Properties

    bool public mintEnabled;
    bool public allowListMintEnabled;

    mapping(address => uint) public allowListMintCount;

    bytes32 public merkleRoot;

    // Private Properties

    string private _baseTokenURI;

    uint private price = 0.1 ether;

    address private teamWallet = 0x35c4599b34AC1Aa0b8436A4019E3b0B7E0546D52;

    // Modifiers

    modifier isNotPaused(bool _enabled) {
        require(_enabled, "Mint paused");
        _;
    }

    // Constructor

    constructor(address[] memory _payees, uint256[] memory _shares) ERC721("Chains NFT", "CHAINS") PaymentSplitter(_payees, _shares) {
        _mintChains(teamWallet, 50);
    }

    // Mint Functions

    // Function requires a Merkle proof and will only work if called from the minting site.
    // Allows the allowList minter to come back and mint again if they mint under 3 max mints in the first transaction(s).
    function allowListMint(bytes32[] calldata _merkleProof, uint _amount) external payable isNotPaused(allowListMintEnabled) {
        require((_amount > 0 && _amount < 4), "Wrong amount");
        require(totalSupply() + _amount < 10_001, 'Exceeds max supply');
        require(allowListMintCount[msg.sender] + _amount < 4, "Can only mint 3");
        require(price * _amount == msg.value, "Wrong ETH amount");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Not on the list');

        allowListMintCount[msg.sender] = allowListMintCount[msg.sender] + _amount;

        _mintChains(msg.sender, _amount);
    }

    function mint(uint _amount) external payable isNotPaused(mintEnabled) {
        require((_amount > 0 && _amount < 21), "Wrong amount");
        require(totalSupply() + _amount < 10_001, 'Exceeds max supply');
        require(price * _amount == msg.value, "Wrong ETH amount");

        _mintChains(msg.sender, _amount);
    }

    // Allows the team to mint Chains to a destination address
    function promoMint(address _to, uint _amount) external onlyOwner {
        require(_amount > 0, "Mint 1");
        require(totalSupply() + _amount < 10_001, 'Exceeds max supply');
        _mintChains(_to, _amount);
    }

    function _mintChains(address _to, uint _amount) internal {
        for(uint i = 0; i < _amount; i++) {
            _tokenSupply.increment();
            _safeMint(_to, totalSupply());
        }
    }

    function totalSupply() public view returns (uint) {
        return _tokenSupply.current();
    }

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

    // Ownable Functions

    function setMerkleRoot(bytes32 _root) external onlyOwner {
        merkleRoot = _root;
    }

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

    function setAllowListMintEnabled(bool _val) external onlyOwner {
        allowListMintEnabled = _val;
    }

    function setMintEnabled(bool _val) external onlyOwner {
        mintEnabled = _val;
    }

    // Important: Set new price in wei (i.e. 50000000000000000 for 0.05 ETH)
    function setPrice(uint _newPrice) external onlyOwner {
        price = _newPrice;
    }

}

File 2 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 3 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 4 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 16 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 6 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 7 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 8 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 9 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 10 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 11 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 12 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 13 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 14 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);
}

File 15 of 16 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","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":[{"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":"bool","name":"_val","type":"bool"}],"name":"setAllowListMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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"},{"stateMutability":"payable","type":"receive"}]

608060405267016345785d8a00006013557335c4599b34ac1aa0b8436a4019e3b0b7e0546d52601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200007257600080fd5b50604051620069bc380380620069bc833981810160405281019062000098919062000d79565b81816040518060400160405280600a81526020017f436861696e73204e4654000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f434841494e53000000000000000000000000000000000000000000000000000081525081600090805190602001906200011e92919062000b40565b5080600190805190602001906200013792919062000b40565b505050805182511462000181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200017890620010bc565b60405180910390fd5b6000825111620001c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001bf9062001100565b60405180910390fd5b60005b82518110156200027f576200026983828151811062000213577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811062000255577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151620002df60201b60201c565b8080620002769062001361565b915050620001cb565b505050620002a2620002966200051960201b60201c565b6200052160201b60201c565b620002d7601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166032620005e760201b60201c565b50506200167b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003499062001056565b60405180910390fd5b6000811162000398576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038f9062001122565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200041d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041490620010de565b60405180910390fd5b600a829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600654620004d49190620011f8565b6006819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200050d92919062001007565b60405180910390a15050565b600033905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101562000641576200060a600e6200064660201b620021701760201c565b6200062b836200061f6200065c60201b60201c565b6200067a60201b60201c565b8080620006389062001361565b915050620005ea565b505050565b6001816000016000828254019250508190555050565b600062000675600e620006a060201b620021861760201c565b905090565b6200069c828260405180602001604052806000815250620006ae60201b60201c565b5050565b600081600001549050919050565b620006c083836200071c60201b60201c565b620006d560008484846200090260201b60201c565b62000717576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070e9062001034565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000786906200109a565b60405180910390fd5b620007a08162000abc60201b60201c565b15620007e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007da9062001078565b60405180910390fd5b620007f76000838362000b2860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620008499190620011f8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620009308473ffffffffffffffffffffffffffffffffffffffff1662000b2d60201b620021941760201c565b1562000aaf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009626200051960201b60201c565b8786866040518563ffffffff1660e01b815260040162000986949392919062000fb3565b602060405180830381600087803b158015620009a157600080fd5b505af1925050508015620009d557506040513d601f19601f82011682018060405250810190620009d2919062000dec565b60015b62000a5e573d806000811462000a08576040519150601f19603f3d011682016040523d82523d6000602084013e62000a0d565b606091505b5060008151141562000a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4d9062001034565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000ab4565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b82805462000b4e90620012f5565b90600052602060002090601f01602090048101928262000b72576000855562000bbe565b82601f1062000b8d57805160ff191683800117855562000bbe565b8280016001018555821562000bbe579182015b8281111562000bbd57825182559160200191906001019062000ba0565b5b50905062000bcd919062000bd1565b5090565b5b8082111562000bec57600081600090555060010162000bd2565b5090565b600062000c0762000c01846200116d565b62001144565b9050808382526020820190508285602086028201111562000c2757600080fd5b60005b8581101562000c5b578162000c40888262000cda565b84526020840193506020830192505060018101905062000c2a565b5050509392505050565b600062000c7c62000c76846200119c565b62001144565b9050808382526020820190508285602086028201111562000c9c57600080fd5b60005b8581101562000cd0578162000cb5888262000d62565b84526020840193506020830192505060018101905062000c9f565b5050509392505050565b60008151905062000ceb816200162d565b92915050565b600082601f83011262000d0357600080fd5b815162000d1584826020860162000bf0565b91505092915050565b600082601f83011262000d3057600080fd5b815162000d4284826020860162000c65565b91505092915050565b60008151905062000d5c8162001647565b92915050565b60008151905062000d738162001661565b92915050565b6000806040838503121562000d8d57600080fd5b600083015167ffffffffffffffff81111562000da857600080fd5b62000db68582860162000cf1565b925050602083015167ffffffffffffffff81111562000dd457600080fd5b62000de28582860162000d1e565b9150509250929050565b60006020828403121562000dff57600080fd5b600062000e0f8482850162000d4b565b91505092915050565b62000e238162001255565b82525050565b600062000e3682620011cb565b62000e428185620011d6565b935062000e54818560208601620012bf565b62000e5f816200143c565b840191505092915050565b600062000e79603283620011e7565b915062000e86826200144d565b604082019050919050565b600062000ea0602c83620011e7565b915062000ead826200149c565b604082019050919050565b600062000ec7601c83620011e7565b915062000ed482620014eb565b602082019050919050565b600062000eee602083620011e7565b915062000efb8262001514565b602082019050919050565b600062000f15603283620011e7565b915062000f22826200153d565b604082019050919050565b600062000f3c602b83620011e7565b915062000f49826200158c565b604082019050919050565b600062000f63601a83620011e7565b915062000f7082620015db565b602082019050919050565b600062000f8a601d83620011e7565b915062000f978262001604565b602082019050919050565b62000fad81620012b5565b82525050565b600060808201905062000fca600083018762000e18565b62000fd9602083018662000e18565b62000fe8604083018562000fa2565b818103606083015262000ffc818462000e29565b905095945050505050565b60006040820190506200101e600083018562000e18565b6200102d602083018462000fa2565b9392505050565b600060208201905081810360008301526200104f8162000e6a565b9050919050565b60006020820190508181036000830152620010718162000e91565b9050919050565b60006020820190508181036000830152620010938162000eb8565b9050919050565b60006020820190508181036000830152620010b58162000edf565b9050919050565b60006020820190508181036000830152620010d78162000f06565b9050919050565b60006020820190508181036000830152620010f98162000f2d565b9050919050565b600060208201905081810360008301526200111b8162000f54565b9050919050565b600060208201905081810360008301526200113d8162000f7b565b9050919050565b60006200115062001163565b90506200115e82826200132b565b919050565b6000604051905090565b600067ffffffffffffffff8211156200118b576200118a6200140d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620011ba57620011b96200140d565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200120582620012b5565b91506200121283620012b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200124a5762001249620013af565b5b828201905092915050565b6000620012628262001295565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620012df578082015181840152602081019050620012c2565b83811115620012ef576000848401525b50505050565b600060028204905060018216806200130e57607f821691505b60208210811415620013255762001324620013de565b5b50919050565b62001336826200143c565b810181811067ffffffffffffffff821117156200135857620013576200140d565b5b80604052505050565b60006200136e82620012b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620013a457620013a3620013af565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b620016388162001255565b81146200164457600080fd5b50565b620016528162001269565b81146200165e57600080fd5b50565b6200166c81620012b5565b81146200167857600080fd5b50565b615331806200168b6000396000f3fe6080604052600436106102295760003560e01c80637cb6475911610123578063a2a3eb4d116100ab578063d79779b21161006f578063d79779b21461086a578063e33b7de3146108a7578063e985e9c5146108d2578063f2fde38b1461090f578063f46a04eb1461093857610270565b8063a2a3eb4d14610773578063b88d4fde1461079c578063c87b56dd146107c5578063ce7c2ac214610802578063d12397301461083f57610270565b806392ea1de2116100f257806392ea1de2146106aa57806395d89b41146106c65780639852595c146106f1578063a0712d681461072e578063a22cb4651461074a57610270565b80637cb64759146105f05780638b83209b146106195780638da5cb5b1461065657806391b7f5ed1461068157610270565b80632eb4a7ab116101b157806348b750441161017557806348b750441461050d57806355f804b3146105365780636352211e1461055f57806370a082311461059c578063715018a6146105d957610270565b80632eb4a7ab146104265780633a98ef3914610451578063406072a91461047c57806342842e0e146104b957806344707b59146104e257610270565b806318160ddd116101f857806318160ddd14610343578063191655871461036e578063195429031461039757806323b872dd146103c057806326ddb3cd146103e957610270565b806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a57610270565b36610270577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610257610961565b346040516102669291906141be565b60405180910390a1005b600080fd5b34801561028157600080fd5b5061029c600480360381019061029791906139c3565b610969565b6040516102a991906141e7565b60405180910390f35b3480156102be57600080fd5b506102c7610a4b565b6040516102d4919061421d565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613abb565b610add565b604051610311919061412e565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c91906138b4565b610b62565b005b34801561034f57600080fd5b50610358610c7a565b60405161036591906145ff565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190613749565b610c8b565b005b3480156103a357600080fd5b506103be60048036038101906103b99190613948565b610e36565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906137ae565b610ecf565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613720565b610f2f565b60405161041d91906145ff565b60405180910390f35b34801561043257600080fd5b5061043b610f47565b6040516104489190614202565b60405180910390f35b34801561045d57600080fd5b50610466610f4d565b60405161047391906145ff565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613a3e565b610f57565b6040516104b091906145ff565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906137ae565b610fde565b005b3480156104ee57600080fd5b506104f7610ffe565b60405161050491906141e7565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613a3e565b611011565b005b34801561054257600080fd5b5061055d60048036038101906105589190613a7a565b6112d9565b005b34801561056b57600080fd5b5061058660048036038101906105819190613abb565b61136f565b604051610593919061412e565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190613720565b611421565b6040516105d091906145ff565b60405180910390f35b3480156105e557600080fd5b506105ee6114d9565b005b3480156105fc57600080fd5b506106176004803603810190610612919061399a565b611561565b005b34801561062557600080fd5b50610640600480360381019061063b9190613abb565b6115e7565b60405161064d919061412e565b60405180910390f35b34801561066257600080fd5b5061066b611655565b604051610678919061412e565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613abb565b61167f565b005b6106c460048036038101906106bf91906138f0565b611705565b005b3480156106d257600080fd5b506106db611a2d565b6040516106e8919061421d565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190613720565b611abf565b60405161072591906145ff565b60405180910390f35b61074860048036038101906107439190613abb565b611b08565b005b34801561075657600080fd5b50610771600480360381019061076c9190613878565b611c5a565b005b34801561077f57600080fd5b5061079a600480360381019061079591906138b4565b611c70565b005b3480156107a857600080fd5b506107c360048036038101906107be91906137fd565b611d93565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613abb565b611df5565b6040516107f9919061421d565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613720565b611e9c565b60405161083691906145ff565b60405180910390f35b34801561084b57600080fd5b50610854611ee5565b60405161086191906141e7565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613a15565b611ef8565b60405161089e91906145ff565b60405180910390f35b3480156108b357600080fd5b506108bc611f41565b6040516108c991906145ff565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613772565b611f4b565b60405161090691906141e7565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613720565b611fdf565b005b34801561094457600080fd5b5061095f600480360381019061095a9190613948565b6120d7565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a445750610a43826121a7565b5b9050919050565b606060008054610a5a9061491e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a869061491e565b8015610ad35780601f10610aa857610100808354040283529160200191610ad3565b820191906000526020600020905b815481529060010190602001808311610ab657829003601f168201915b5050505050905090565b6000610ae882612211565b610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061449f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6d8261136f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061451f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfd610961565b73ffffffffffffffffffffffffffffffffffffffff161480610c2c5750610c2b81610c26610961565b611f4b565b5b610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c62906143df565b60405180910390fd5b610c75838361227d565b505050565b6000610c86600e612186565b905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906142bf565b60405180910390fd5b6000610d17611f41565b47610d2291906146ef565b90506000610d398383610d3486611abf565b612336565b90506000811415610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d76906143bf565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dce91906146ef565b925050819055508060076000828254610de791906146ef565b92505081905550610df883826123a4565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610e29929190614149565b60405180910390a1505050565b610e3e610961565b73ffffffffffffffffffffffffffffffffffffffff16610e5c611655565b73ffffffffffffffffffffffffffffffffffffffff1614610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea9906144bf565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b610ee0610eda610961565b82612498565b610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f169061453f565b60405180910390fd5b610f2a838383612576565b505050565b60106020528060005260406000206000915090505481565b60115481565b6000600654905090565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ff983838360405180602001604052806000815250611d93565b505050565b600f60019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a906142bf565b60405180910390fd5b600061109e83611ef8565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110d7919061412e565b60206040518083038186803b1580156110ef57600080fd5b505afa158015611103573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111279190613ae4565b61113191906146ef565b9050600061114983836111448787610f57565b612336565b9050600081141561118f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611186906143bf565b60405180910390fd5b80600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461121b91906146ef565b9250508190555080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461127191906146ef565b925050819055506112838484836127d2565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516112cb9291906141be565b60405180910390a250505050565b6112e1610961565b73ffffffffffffffffffffffffffffffffffffffff166112ff611655565b73ffffffffffffffffffffffffffffffffffffffff1614611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c906144bf565b60405180910390fd5b806012908051906020019061136b929190613491565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f9061441f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906143ff565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e1610961565b73ffffffffffffffffffffffffffffffffffffffff166114ff611655565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906144bf565b60405180910390fd5b61155f6000612858565b565b611569610961565b73ffffffffffffffffffffffffffffffffffffffff16611587611655565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906144bf565b60405180910390fd5b8060118190555050565b6000600a8281548110611623577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611687610961565b73ffffffffffffffffffffffffffffffffffffffff166116a5611655565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906144bf565b60405180910390fd5b8060138190555050565b600f60019054906101000a900460ff1680611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c9061447f565b60405180910390fd5b6000821180156117655750600482105b6117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b906145df565b60405180910390fd5b612711826117b0610c7a565b6117ba91906146ef565b106117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f19061443f565b60405180910390fd5b600482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184791906146ef565b10611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e9061459f565b60405180910390fd5b34826013546118969190614776565b146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061457f565b60405180910390fd5b6000336040516020016118e99190614097565b60405160208183030381529060405280519060200120905061194f858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506011548361291e565b61198e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119859061433f565b60405180910390fd5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119d991906146ef565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a263384612935565b5050505050565b606060018054611a3c9061491e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a689061491e565b8015611ab55780601f10611a8a57610100808354040283529160200191611ab5565b820191906000526020600020905b815481529060010190602001808311611a9857829003601f168201915b5050505050905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f60009054906101000a900460ff1680611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f9061447f565b60405180910390fd5b600082118015611b685750601582105b611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e906145df565b60405180910390fd5b61271182611bb3610c7a565b611bbd91906146ef565b10611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf49061443f565b60405180910390fd5b3482601354611c0c9190614776565b14611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c439061457f565b60405180910390fd5b611c563383612935565b5050565b611c6c611c65610961565b8383612973565b5050565b611c78610961565b73ffffffffffffffffffffffffffffffffffffffff16611c96611655565b73ffffffffffffffffffffffffffffffffffffffff1614611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906144bf565b60405180910390fd5b60008111611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d269061423f565b60405180910390fd5b61271181611d3b610c7a565b611d4591906146ef565b10611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c9061443f565b60405180910390fd5b611d8f8282612935565b5050565b611da4611d9e610961565b83612498565b611de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dda9061453f565b60405180910390fd5b611def84848484612ae0565b50505050565b6060611e0082612211565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e36906144ff565b60405180910390fd5b6000611e49612b3c565b90506000815111611e695760405180602001604052806000815250611e94565b80611e7384612bce565b604051602001611e849291906140f5565b6040516020818303038152906040525b915050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f60009054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600754905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fe7610961565b73ffffffffffffffffffffffffffffffffffffffff16612005611655565b73ffffffffffffffffffffffffffffffffffffffff161461205b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612052906144bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c29061427f565b60405180910390fd5b6120d481612858565b50565b6120df610961565b73ffffffffffffffffffffffffffffffffffffffff166120fd611655565b73ffffffffffffffffffffffffffffffffffffffff1614612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906144bf565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122f08361136f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600654600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856123879190614776565b6123919190614745565b61239b91906147d0565b90509392505050565b804710156123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de9061435f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161240d90614119565b60006040518083038185875af1925050503d806000811461244a576040519150601f19603f3d011682016040523d82523d6000602084013e61244f565b606091505b5050905080612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a9061431f565b60405180910390fd5b505050565b60006124a382612211565b6124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d99061439f565b60405180910390fd5b60006124ed8361136f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061255c57508373ffffffffffffffffffffffffffffffffffffffff1661254484610add565b73ffffffffffffffffffffffffffffffffffffffff16145b8061256d575061256c8185611f4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125968261136f565b73ffffffffffffffffffffffffffffffffffffffff16146125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e3906144df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561265c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612653906142df565b60405180910390fd5b612667838383612d7b565b61267260008261227d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c291906147d0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271991906146ef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6128538363a9059cbb60e01b84846040516024016127f19291906141be565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d80565b505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261292b8584612e47565b1490509392505050565b60005b8181101561296e5761294a600e612170565b61295b83612956610c7a565b612f20565b808061296690614981565b915050612938565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d9906142ff565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ad391906141e7565b60405180910390a3505050565b612aeb848484612576565b612af784848484612f3e565b612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d9061425f565b60405180910390fd5b50505050565b606060128054612b4b9061491e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b779061491e565b8015612bc45780601f10612b9957610100808354040283529160200191612bc4565b820191906000526020600020905b815481529060010190602001808311612ba757829003601f168201915b5050505050905090565b60606000821415612c16576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d76565b600082905060005b60008214612c48578080612c3190614981565b915050600a82612c419190614745565b9150612c1e565b60008167ffffffffffffffff811115612c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cbc5781602001600182028036833780820191505090505b5090505b60008514612d6f57600182612cd591906147d0565b9150600a85612ce491906149f8565b6030612cf091906146ef565b60f81b818381518110612d2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d689190614745565b9450612cc0565b8093505050505b919050565b505050565b6000612de2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166130d59092919063ffffffff16565b9050600081511115612e425780806020019051810190612e029190613971565b612e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e38906145bf565b60405180910390fd5b5b505050565b60008082905060005b8451811015612f15576000858281518110612e94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612ed5578281604051602001612eb89291906140b2565b604051602081830303815290604052805190602001209250612f01565b8083604051602001612ee89291906140b2565b6040516020818303038152906040528051906020012092505b508080612f0d90614981565b915050612e50565b508091505092915050565b612f3a8282604051806020016040528060008152506130ed565b5050565b6000612f5f8473ffffffffffffffffffffffffffffffffffffffff16612194565b156130c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f88610961565b8786866040518563ffffffff1660e01b8152600401612faa9493929190614172565b602060405180830381600087803b158015612fc457600080fd5b505af1925050508015612ff557506040513d601f19601f82011682018060405250810190612ff291906139ec565b60015b613078573d8060008114613025576040519150601f19603f3d011682016040523d82523d6000602084013e61302a565b606091505b50600081511415613070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130679061425f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130cd565b600190505b949350505050565b60606130e48484600085613148565b90509392505050565b6130f7838361325c565b6131046000848484612f3e565b613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a9061425f565b60405180910390fd5b505050565b60608247101561318d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131849061437f565b60405180910390fd5b61319685612194565b6131d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cc9061455f565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516131fe91906140de565b60006040518083038185875af1925050503d806000811461323b576040519150601f19603f3d011682016040523d82523d6000602084013e613240565b606091505b509150915061325082828661342a565b92505050949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c39061445f565b60405180910390fd5b6132d581612211565b15613315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330c9061429f565b60405180910390fd5b61332160008383612d7b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461337191906146ef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060831561343a5782905061348a565b60008351111561344d5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613481919061421d565b60405180910390fd5b9392505050565b82805461349d9061491e565b90600052602060002090601f0160209004810192826134bf5760008555613506565b82601f106134d857805160ff1916838001178555613506565b82800160010185558215613506579182015b828111156135055782518255916020019190600101906134ea565b5b5090506135139190613517565b5090565b5b80821115613530576000816000905550600101613518565b5090565b60006135476135428461463f565b61461a565b90508281526020810184848401111561355f57600080fd5b61356a8482856148dc565b509392505050565b600061358561358084614670565b61461a565b90508281526020810184848401111561359d57600080fd5b6135a88482856148dc565b509392505050565b6000813590506135bf8161525a565b92915050565b6000813590506135d481615271565b92915050565b60008083601f8401126135ec57600080fd5b8235905067ffffffffffffffff81111561360557600080fd5b60208301915083602082028301111561361d57600080fd5b9250929050565b60008135905061363381615288565b92915050565b60008151905061364881615288565b92915050565b60008135905061365d8161529f565b92915050565b600081359050613672816152b6565b92915050565b600081519050613687816152b6565b92915050565b600082601f83011261369e57600080fd5b81356136ae848260208601613534565b91505092915050565b6000813590506136c6816152cd565b92915050565b600082601f8301126136dd57600080fd5b81356136ed848260208601613572565b91505092915050565b600081359050613705816152e4565b92915050565b60008151905061371a816152e4565b92915050565b60006020828403121561373257600080fd5b6000613740848285016135b0565b91505092915050565b60006020828403121561375b57600080fd5b6000613769848285016135c5565b91505092915050565b6000806040838503121561378557600080fd5b6000613793858286016135b0565b92505060206137a4858286016135b0565b9150509250929050565b6000806000606084860312156137c357600080fd5b60006137d1868287016135b0565b93505060206137e2868287016135b0565b92505060406137f3868287016136f6565b9150509250925092565b6000806000806080858703121561381357600080fd5b6000613821878288016135b0565b9450506020613832878288016135b0565b9350506040613843878288016136f6565b925050606085013567ffffffffffffffff81111561386057600080fd5b61386c8782880161368d565b91505092959194509250565b6000806040838503121561388b57600080fd5b6000613899858286016135b0565b92505060206138aa85828601613624565b9150509250929050565b600080604083850312156138c757600080fd5b60006138d5858286016135b0565b92505060206138e6858286016136f6565b9150509250929050565b60008060006040848603121561390557600080fd5b600084013567ffffffffffffffff81111561391f57600080fd5b61392b868287016135da565b9350935050602061393e868287016136f6565b9150509250925092565b60006020828403121561395a57600080fd5b600061396884828501613624565b91505092915050565b60006020828403121561398357600080fd5b600061399184828501613639565b91505092915050565b6000602082840312156139ac57600080fd5b60006139ba8482850161364e565b91505092915050565b6000602082840312156139d557600080fd5b60006139e384828501613663565b91505092915050565b6000602082840312156139fe57600080fd5b6000613a0c84828501613678565b91505092915050565b600060208284031215613a2757600080fd5b6000613a35848285016136b7565b91505092915050565b60008060408385031215613a5157600080fd5b6000613a5f858286016136b7565b9250506020613a70858286016135b0565b9150509250929050565b600060208284031215613a8c57600080fd5b600082013567ffffffffffffffff811115613aa657600080fd5b613ab2848285016136cc565b91505092915050565b600060208284031215613acd57600080fd5b6000613adb848285016136f6565b91505092915050565b600060208284031215613af657600080fd5b6000613b048482850161370b565b91505092915050565b613b16816148a6565b82525050565b613b2581614804565b82525050565b613b3c613b3782614804565b6149ca565b82525050565b613b4b81614828565b82525050565b613b5a81614834565b82525050565b613b71613b6c82614834565b6149dc565b82525050565b6000613b82826146a1565b613b8c81856146b7565b9350613b9c8185602086016148eb565b613ba581614ae5565b840191505092915050565b6000613bbb826146a1565b613bc581856146c8565b9350613bd58185602086016148eb565b80840191505092915050565b6000613bec826146ac565b613bf681856146d3565b9350613c068185602086016148eb565b613c0f81614ae5565b840191505092915050565b6000613c25826146ac565b613c2f81856146e4565b9350613c3f8185602086016148eb565b80840191505092915050565b6000613c586006836146d3565b9150613c6382614b03565b602082019050919050565b6000613c7b6032836146d3565b9150613c8682614b2c565b604082019050919050565b6000613c9e6026836146d3565b9150613ca982614b7b565b604082019050919050565b6000613cc1601c836146d3565b9150613ccc82614bca565b602082019050919050565b6000613ce46026836146d3565b9150613cef82614bf3565b604082019050919050565b6000613d076024836146d3565b9150613d1282614c42565b604082019050919050565b6000613d2a6019836146d3565b9150613d3582614c91565b602082019050919050565b6000613d4d603a836146d3565b9150613d5882614cba565b604082019050919050565b6000613d70600f836146d3565b9150613d7b82614d09565b602082019050919050565b6000613d93601d836146d3565b9150613d9e82614d32565b602082019050919050565b6000613db66026836146d3565b9150613dc182614d5b565b604082019050919050565b6000613dd9602c836146d3565b9150613de482614daa565b604082019050919050565b6000613dfc602b836146d3565b9150613e0782614df9565b604082019050919050565b6000613e1f6038836146d3565b9150613e2a82614e48565b604082019050919050565b6000613e42602a836146d3565b9150613e4d82614e97565b604082019050919050565b6000613e656029836146d3565b9150613e7082614ee6565b604082019050919050565b6000613e886012836146d3565b9150613e9382614f35565b602082019050919050565b6000613eab6020836146d3565b9150613eb682614f5e565b602082019050919050565b6000613ece600b836146d3565b9150613ed982614f87565b602082019050919050565b6000613ef1602c836146d3565b9150613efc82614fb0565b604082019050919050565b6000613f146020836146d3565b9150613f1f82614fff565b602082019050919050565b6000613f376029836146d3565b9150613f4282615028565b604082019050919050565b6000613f5a602f836146d3565b9150613f6582615077565b604082019050919050565b6000613f7d6021836146d3565b9150613f88826150c6565b604082019050919050565b6000613fa06000836146c8565b9150613fab82615115565b600082019050919050565b6000613fc36031836146d3565b9150613fce82615118565b604082019050919050565b6000613fe6601d836146d3565b9150613ff182615167565b602082019050919050565b60006140096010836146d3565b915061401482615190565b602082019050919050565b600061402c600f836146d3565b9150614037826151b9565b602082019050919050565b600061404f602a836146d3565b915061405a826151e2565b604082019050919050565b6000614072600c836146d3565b915061407d82615231565b602082019050919050565b6140918161489c565b82525050565b60006140a38284613b2b565b60148201915081905092915050565b60006140be8285613b60565b6020820191506140ce8284613b60565b6020820191508190509392505050565b60006140ea8284613bb0565b915081905092915050565b60006141018285613c1a565b915061410d8284613c1a565b91508190509392505050565b600061412482613f93565b9150819050919050565b60006020820190506141436000830184613b1c565b92915050565b600060408201905061415e6000830185613b0d565b61416b6020830184614088565b9392505050565b60006080820190506141876000830187613b1c565b6141946020830186613b1c565b6141a16040830185614088565b81810360608301526141b38184613b77565b905095945050505050565b60006040820190506141d36000830185613b1c565b6141e06020830184614088565b9392505050565b60006020820190506141fc6000830184613b42565b92915050565b60006020820190506142176000830184613b51565b92915050565b600060208201905081810360008301526142378184613be1565b905092915050565b6000602082019050818103600083015261425881613c4b565b9050919050565b6000602082019050818103600083015261427881613c6e565b9050919050565b6000602082019050818103600083015261429881613c91565b9050919050565b600060208201905081810360008301526142b881613cb4565b9050919050565b600060208201905081810360008301526142d881613cd7565b9050919050565b600060208201905081810360008301526142f881613cfa565b9050919050565b6000602082019050818103600083015261431881613d1d565b9050919050565b6000602082019050818103600083015261433881613d40565b9050919050565b6000602082019050818103600083015261435881613d63565b9050919050565b6000602082019050818103600083015261437881613d86565b9050919050565b6000602082019050818103600083015261439881613da9565b9050919050565b600060208201905081810360008301526143b881613dcc565b9050919050565b600060208201905081810360008301526143d881613def565b9050919050565b600060208201905081810360008301526143f881613e12565b9050919050565b6000602082019050818103600083015261441881613e35565b9050919050565b6000602082019050818103600083015261443881613e58565b9050919050565b6000602082019050818103600083015261445881613e7b565b9050919050565b6000602082019050818103600083015261447881613e9e565b9050919050565b6000602082019050818103600083015261449881613ec1565b9050919050565b600060208201905081810360008301526144b881613ee4565b9050919050565b600060208201905081810360008301526144d881613f07565b9050919050565b600060208201905081810360008301526144f881613f2a565b9050919050565b6000602082019050818103600083015261451881613f4d565b9050919050565b6000602082019050818103600083015261453881613f70565b9050919050565b6000602082019050818103600083015261455881613fb6565b9050919050565b6000602082019050818103600083015261457881613fd9565b9050919050565b6000602082019050818103600083015261459881613ffc565b9050919050565b600060208201905081810360008301526145b88161401f565b9050919050565b600060208201905081810360008301526145d881614042565b9050919050565b600060208201905081810360008301526145f881614065565b9050919050565b60006020820190506146146000830184614088565b92915050565b6000614624614635565b90506146308282614950565b919050565b6000604051905090565b600067ffffffffffffffff82111561465a57614659614ab6565b5b61466382614ae5565b9050602081019050919050565b600067ffffffffffffffff82111561468b5761468a614ab6565b5b61469482614ae5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146fa8261489c565b91506147058361489c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561473a57614739614a29565b5b828201905092915050565b60006147508261489c565b915061475b8361489c565b92508261476b5761476a614a58565b5b828204905092915050565b60006147818261489c565b915061478c8361489c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147c5576147c4614a29565b5b828202905092915050565b60006147db8261489c565b91506147e68361489c565b9250828210156147f9576147f8614a29565b5b828203905092915050565b600061480f8261487c565b9050919050565b60006148218261487c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061487582614804565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148b1826148b8565b9050919050565b60006148c3826148ca565b9050919050565b60006148d58261487c565b9050919050565b82818337600083830152505050565b60005b838110156149095780820151818401526020810190506148ee565b83811115614918576000848401525b50505050565b6000600282049050600182168061493657607f821691505b6020821081141561494a57614949614a87565b5b50919050565b61495982614ae5565b810181811067ffffffffffffffff8211171561497857614977614ab6565b5b80604052505050565b600061498c8261489c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149bf576149be614a29565b5b600182019050919050565b60006149d5826149e6565b9050919050565b6000819050919050565b60006149f182614af6565b9050919050565b6000614a038261489c565b9150614a0e8361489c565b925082614a1e57614a1d614a58565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e7420310000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f4e6f74206f6e20746865206c6973740000000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d696e7420706175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f57726f6e672045544820616d6f756e7400000000000000000000000000000000600082015250565b7f43616e206f6e6c79206d696e7420330000000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b61526381614804565b811461526e57600080fd5b50565b61527a81614816565b811461528557600080fd5b50565b61529181614828565b811461529c57600080fd5b50565b6152a881614834565b81146152b357600080fd5b50565b6152bf8161483e565b81146152ca57600080fd5b50565b6152d68161486a565b81146152e157600080fd5b50565b6152ed8161489c565b81146152f857600080fd5b5056fea26469706673582212208d34d95df31ee409ec379b256e63f8f9e3d8bee5ff8288d3c12a633759940cd664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000d3a78c6a27be30305e7aeec9c5cab49b1390ee46000000000000000000000000f8afcacc459038a374c697bc9486a0a4106865400000000000000000000000001c29fed7470938f31d21eaccb89ecea1d779684f000000000000000000000000787bc77f1700dce0f8c1581c18a12d3153d1b150000000000000000000000000c14852b7a08d4e896ee8cc9b449a9d731ee9b7e100000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88000000000000000000000000713eed92d42df88ab85934e7156acdc47b9968c4000000000000000000000000d035efac079402bc8a77f958f28c25aa31217372000000000000000000000000d2498b4dc8402789736f7c94caf969ea65badfa20000000000000000000000006548ce1f9672a97d1a4d7e7614bca7da7bbf3f80000000000000000000000000e00688abd903c269660603148490297123ffa9210000000000000000000000001ea24ef5915cc083aacf7af142687435db116c7b000000000000000000000000d40327a2dee24b7d7cbcca1a6d3c6b84b3cfed640000000000000000000000003dbc93aecd50e485ecd2dd6dbe73d1ec19a4d83900000000000000000000000032d048b9d94ae9da7e73f4bf638cf498064b7cfc000000000000000000000000b79130ce107d7656fc0e0f193d2ba54006ef98b60000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000044c00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000044c000000000000000000000000000000000000000000000000000000000000025800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000320

Deployed Bytecode

0x6080604052600436106102295760003560e01c80637cb6475911610123578063a2a3eb4d116100ab578063d79779b21161006f578063d79779b21461086a578063e33b7de3146108a7578063e985e9c5146108d2578063f2fde38b1461090f578063f46a04eb1461093857610270565b8063a2a3eb4d14610773578063b88d4fde1461079c578063c87b56dd146107c5578063ce7c2ac214610802578063d12397301461083f57610270565b806392ea1de2116100f257806392ea1de2146106aa57806395d89b41146106c65780639852595c146106f1578063a0712d681461072e578063a22cb4651461074a57610270565b80637cb64759146105f05780638b83209b146106195780638da5cb5b1461065657806391b7f5ed1461068157610270565b80632eb4a7ab116101b157806348b750441161017557806348b750441461050d57806355f804b3146105365780636352211e1461055f57806370a082311461059c578063715018a6146105d957610270565b80632eb4a7ab146104265780633a98ef3914610451578063406072a91461047c57806342842e0e146104b957806344707b59146104e257610270565b806318160ddd116101f857806318160ddd14610343578063191655871461036e578063195429031461039757806323b872dd146103c057806326ddb3cd146103e957610270565b806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a57610270565b36610270577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610257610961565b346040516102669291906141be565b60405180910390a1005b600080fd5b34801561028157600080fd5b5061029c600480360381019061029791906139c3565b610969565b6040516102a991906141e7565b60405180910390f35b3480156102be57600080fd5b506102c7610a4b565b6040516102d4919061421d565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613abb565b610add565b604051610311919061412e565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c91906138b4565b610b62565b005b34801561034f57600080fd5b50610358610c7a565b60405161036591906145ff565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190613749565b610c8b565b005b3480156103a357600080fd5b506103be60048036038101906103b99190613948565b610e36565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906137ae565b610ecf565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613720565b610f2f565b60405161041d91906145ff565b60405180910390f35b34801561043257600080fd5b5061043b610f47565b6040516104489190614202565b60405180910390f35b34801561045d57600080fd5b50610466610f4d565b60405161047391906145ff565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613a3e565b610f57565b6040516104b091906145ff565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906137ae565b610fde565b005b3480156104ee57600080fd5b506104f7610ffe565b60405161050491906141e7565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613a3e565b611011565b005b34801561054257600080fd5b5061055d60048036038101906105589190613a7a565b6112d9565b005b34801561056b57600080fd5b5061058660048036038101906105819190613abb565b61136f565b604051610593919061412e565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190613720565b611421565b6040516105d091906145ff565b60405180910390f35b3480156105e557600080fd5b506105ee6114d9565b005b3480156105fc57600080fd5b506106176004803603810190610612919061399a565b611561565b005b34801561062557600080fd5b50610640600480360381019061063b9190613abb565b6115e7565b60405161064d919061412e565b60405180910390f35b34801561066257600080fd5b5061066b611655565b604051610678919061412e565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613abb565b61167f565b005b6106c460048036038101906106bf91906138f0565b611705565b005b3480156106d257600080fd5b506106db611a2d565b6040516106e8919061421d565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190613720565b611abf565b60405161072591906145ff565b60405180910390f35b61074860048036038101906107439190613abb565b611b08565b005b34801561075657600080fd5b50610771600480360381019061076c9190613878565b611c5a565b005b34801561077f57600080fd5b5061079a600480360381019061079591906138b4565b611c70565b005b3480156107a857600080fd5b506107c360048036038101906107be91906137fd565b611d93565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613abb565b611df5565b6040516107f9919061421d565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613720565b611e9c565b60405161083691906145ff565b60405180910390f35b34801561084b57600080fd5b50610854611ee5565b60405161086191906141e7565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613a15565b611ef8565b60405161089e91906145ff565b60405180910390f35b3480156108b357600080fd5b506108bc611f41565b6040516108c991906145ff565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613772565b611f4b565b60405161090691906141e7565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613720565b611fdf565b005b34801561094457600080fd5b5061095f600480360381019061095a9190613948565b6120d7565b005b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a445750610a43826121a7565b5b9050919050565b606060008054610a5a9061491e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a869061491e565b8015610ad35780601f10610aa857610100808354040283529160200191610ad3565b820191906000526020600020905b815481529060010190602001808311610ab657829003601f168201915b5050505050905090565b6000610ae882612211565b610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e9061449f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6d8261136f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061451f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfd610961565b73ffffffffffffffffffffffffffffffffffffffff161480610c2c5750610c2b81610c26610961565b611f4b565b5b610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c62906143df565b60405180910390fd5b610c75838361227d565b505050565b6000610c86600e612186565b905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906142bf565b60405180910390fd5b6000610d17611f41565b47610d2291906146ef565b90506000610d398383610d3486611abf565b612336565b90506000811415610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d76906143bf565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dce91906146ef565b925050819055508060076000828254610de791906146ef565b92505081905550610df883826123a4565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610e29929190614149565b60405180910390a1505050565b610e3e610961565b73ffffffffffffffffffffffffffffffffffffffff16610e5c611655565b73ffffffffffffffffffffffffffffffffffffffff1614610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea9906144bf565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b610ee0610eda610961565b82612498565b610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f169061453f565b60405180910390fd5b610f2a838383612576565b505050565b60106020528060005260406000206000915090505481565b60115481565b6000600654905090565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ff983838360405180602001604052806000815250611d93565b505050565b600f60019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a906142bf565b60405180910390fd5b600061109e83611ef8565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110d7919061412e565b60206040518083038186803b1580156110ef57600080fd5b505afa158015611103573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111279190613ae4565b61113191906146ef565b9050600061114983836111448787610f57565b612336565b9050600081141561118f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611186906143bf565b60405180910390fd5b80600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461121b91906146ef565b9250508190555080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461127191906146ef565b925050819055506112838484836127d2565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516112cb9291906141be565b60405180910390a250505050565b6112e1610961565b73ffffffffffffffffffffffffffffffffffffffff166112ff611655565b73ffffffffffffffffffffffffffffffffffffffff1614611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c906144bf565b60405180910390fd5b806012908051906020019061136b929190613491565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f9061441f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611489906143ff565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e1610961565b73ffffffffffffffffffffffffffffffffffffffff166114ff611655565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906144bf565b60405180910390fd5b61155f6000612858565b565b611569610961565b73ffffffffffffffffffffffffffffffffffffffff16611587611655565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906144bf565b60405180910390fd5b8060118190555050565b6000600a8281548110611623577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611687610961565b73ffffffffffffffffffffffffffffffffffffffff166116a5611655565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906144bf565b60405180910390fd5b8060138190555050565b600f60019054906101000a900460ff1680611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c9061447f565b60405180910390fd5b6000821180156117655750600482105b6117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b906145df565b60405180910390fd5b612711826117b0610c7a565b6117ba91906146ef565b106117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f19061443f565b60405180910390fd5b600482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461184791906146ef565b10611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e9061459f565b60405180910390fd5b34826013546118969190614776565b146118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd9061457f565b60405180910390fd5b6000336040516020016118e99190614097565b60405160208183030381529060405280519060200120905061194f858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506011548361291e565b61198e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119859061433f565b60405180910390fd5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119d991906146ef565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a263384612935565b5050505050565b606060018054611a3c9061491e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a689061491e565b8015611ab55780601f10611a8a57610100808354040283529160200191611ab5565b820191906000526020600020905b815481529060010190602001808311611a9857829003601f168201915b5050505050905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f60009054906101000a900460ff1680611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f9061447f565b60405180910390fd5b600082118015611b685750601582105b611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e906145df565b60405180910390fd5b61271182611bb3610c7a565b611bbd91906146ef565b10611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf49061443f565b60405180910390fd5b3482601354611c0c9190614776565b14611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c439061457f565b60405180910390fd5b611c563383612935565b5050565b611c6c611c65610961565b8383612973565b5050565b611c78610961565b73ffffffffffffffffffffffffffffffffffffffff16611c96611655565b73ffffffffffffffffffffffffffffffffffffffff1614611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906144bf565b60405180910390fd5b60008111611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d269061423f565b60405180910390fd5b61271181611d3b610c7a565b611d4591906146ef565b10611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c9061443f565b60405180910390fd5b611d8f8282612935565b5050565b611da4611d9e610961565b83612498565b611de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dda9061453f565b60405180910390fd5b611def84848484612ae0565b50505050565b6060611e0082612211565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e36906144ff565b60405180910390fd5b6000611e49612b3c565b90506000815111611e695760405180602001604052806000815250611e94565b80611e7384612bce565b604051602001611e849291906140f5565b6040516020818303038152906040525b915050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f60009054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600754905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fe7610961565b73ffffffffffffffffffffffffffffffffffffffff16612005611655565b73ffffffffffffffffffffffffffffffffffffffff161461205b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612052906144bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c29061427f565b60405180910390fd5b6120d481612858565b50565b6120df610961565b73ffffffffffffffffffffffffffffffffffffffff166120fd611655565b73ffffffffffffffffffffffffffffffffffffffff1614612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906144bf565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122f08361136f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600654600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856123879190614776565b6123919190614745565b61239b91906147d0565b90509392505050565b804710156123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de9061435f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161240d90614119565b60006040518083038185875af1925050503d806000811461244a576040519150601f19603f3d011682016040523d82523d6000602084013e61244f565b606091505b5050905080612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a9061431f565b60405180910390fd5b505050565b60006124a382612211565b6124e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d99061439f565b60405180910390fd5b60006124ed8361136f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061255c57508373ffffffffffffffffffffffffffffffffffffffff1661254484610add565b73ffffffffffffffffffffffffffffffffffffffff16145b8061256d575061256c8185611f4b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125968261136f565b73ffffffffffffffffffffffffffffffffffffffff16146125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e3906144df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561265c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612653906142df565b60405180910390fd5b612667838383612d7b565b61267260008261227d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c291906147d0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271991906146ef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6128538363a9059cbb60e01b84846040516024016127f19291906141be565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d80565b505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261292b8584612e47565b1490509392505050565b60005b8181101561296e5761294a600e612170565b61295b83612956610c7a565b612f20565b808061296690614981565b915050612938565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d9906142ff565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ad391906141e7565b60405180910390a3505050565b612aeb848484612576565b612af784848484612f3e565b612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d9061425f565b60405180910390fd5b50505050565b606060128054612b4b9061491e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b779061491e565b8015612bc45780601f10612b9957610100808354040283529160200191612bc4565b820191906000526020600020905b815481529060010190602001808311612ba757829003601f168201915b5050505050905090565b60606000821415612c16576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d76565b600082905060005b60008214612c48578080612c3190614981565b915050600a82612c419190614745565b9150612c1e565b60008167ffffffffffffffff811115612c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612cbc5781602001600182028036833780820191505090505b5090505b60008514612d6f57600182612cd591906147d0565b9150600a85612ce491906149f8565b6030612cf091906146ef565b60f81b818381518110612d2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d689190614745565b9450612cc0565b8093505050505b919050565b505050565b6000612de2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166130d59092919063ffffffff16565b9050600081511115612e425780806020019051810190612e029190613971565b612e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e38906145bf565b60405180910390fd5b5b505050565b60008082905060005b8451811015612f15576000858281518110612e94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612ed5578281604051602001612eb89291906140b2565b604051602081830303815290604052805190602001209250612f01565b8083604051602001612ee89291906140b2565b6040516020818303038152906040528051906020012092505b508080612f0d90614981565b915050612e50565b508091505092915050565b612f3a8282604051806020016040528060008152506130ed565b5050565b6000612f5f8473ffffffffffffffffffffffffffffffffffffffff16612194565b156130c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f88610961565b8786866040518563ffffffff1660e01b8152600401612faa9493929190614172565b602060405180830381600087803b158015612fc457600080fd5b505af1925050508015612ff557506040513d601f19601f82011682018060405250810190612ff291906139ec565b60015b613078573d8060008114613025576040519150601f19603f3d011682016040523d82523d6000602084013e61302a565b606091505b50600081511415613070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130679061425f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130cd565b600190505b949350505050565b60606130e48484600085613148565b90509392505050565b6130f7838361325c565b6131046000848484612f3e565b613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a9061425f565b60405180910390fd5b505050565b60608247101561318d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131849061437f565b60405180910390fd5b61319685612194565b6131d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131cc9061455f565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516131fe91906140de565b60006040518083038185875af1925050503d806000811461323b576040519150601f19603f3d011682016040523d82523d6000602084013e613240565b606091505b509150915061325082828661342a565b92505050949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c39061445f565b60405180910390fd5b6132d581612211565b15613315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330c9061429f565b60405180910390fd5b61332160008383612d7b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461337191906146ef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6060831561343a5782905061348a565b60008351111561344d5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613481919061421d565b60405180910390fd5b9392505050565b82805461349d9061491e565b90600052602060002090601f0160209004810192826134bf5760008555613506565b82601f106134d857805160ff1916838001178555613506565b82800160010185558215613506579182015b828111156135055782518255916020019190600101906134ea565b5b5090506135139190613517565b5090565b5b80821115613530576000816000905550600101613518565b5090565b60006135476135428461463f565b61461a565b90508281526020810184848401111561355f57600080fd5b61356a8482856148dc565b509392505050565b600061358561358084614670565b61461a565b90508281526020810184848401111561359d57600080fd5b6135a88482856148dc565b509392505050565b6000813590506135bf8161525a565b92915050565b6000813590506135d481615271565b92915050565b60008083601f8401126135ec57600080fd5b8235905067ffffffffffffffff81111561360557600080fd5b60208301915083602082028301111561361d57600080fd5b9250929050565b60008135905061363381615288565b92915050565b60008151905061364881615288565b92915050565b60008135905061365d8161529f565b92915050565b600081359050613672816152b6565b92915050565b600081519050613687816152b6565b92915050565b600082601f83011261369e57600080fd5b81356136ae848260208601613534565b91505092915050565b6000813590506136c6816152cd565b92915050565b600082601f8301126136dd57600080fd5b81356136ed848260208601613572565b91505092915050565b600081359050613705816152e4565b92915050565b60008151905061371a816152e4565b92915050565b60006020828403121561373257600080fd5b6000613740848285016135b0565b91505092915050565b60006020828403121561375b57600080fd5b6000613769848285016135c5565b91505092915050565b6000806040838503121561378557600080fd5b6000613793858286016135b0565b92505060206137a4858286016135b0565b9150509250929050565b6000806000606084860312156137c357600080fd5b60006137d1868287016135b0565b93505060206137e2868287016135b0565b92505060406137f3868287016136f6565b9150509250925092565b6000806000806080858703121561381357600080fd5b6000613821878288016135b0565b9450506020613832878288016135b0565b9350506040613843878288016136f6565b925050606085013567ffffffffffffffff81111561386057600080fd5b61386c8782880161368d565b91505092959194509250565b6000806040838503121561388b57600080fd5b6000613899858286016135b0565b92505060206138aa85828601613624565b9150509250929050565b600080604083850312156138c757600080fd5b60006138d5858286016135b0565b92505060206138e6858286016136f6565b9150509250929050565b60008060006040848603121561390557600080fd5b600084013567ffffffffffffffff81111561391f57600080fd5b61392b868287016135da565b9350935050602061393e868287016136f6565b9150509250925092565b60006020828403121561395a57600080fd5b600061396884828501613624565b91505092915050565b60006020828403121561398357600080fd5b600061399184828501613639565b91505092915050565b6000602082840312156139ac57600080fd5b60006139ba8482850161364e565b91505092915050565b6000602082840312156139d557600080fd5b60006139e384828501613663565b91505092915050565b6000602082840312156139fe57600080fd5b6000613a0c84828501613678565b91505092915050565b600060208284031215613a2757600080fd5b6000613a35848285016136b7565b91505092915050565b60008060408385031215613a5157600080fd5b6000613a5f858286016136b7565b9250506020613a70858286016135b0565b9150509250929050565b600060208284031215613a8c57600080fd5b600082013567ffffffffffffffff811115613aa657600080fd5b613ab2848285016136cc565b91505092915050565b600060208284031215613acd57600080fd5b6000613adb848285016136f6565b91505092915050565b600060208284031215613af657600080fd5b6000613b048482850161370b565b91505092915050565b613b16816148a6565b82525050565b613b2581614804565b82525050565b613b3c613b3782614804565b6149ca565b82525050565b613b4b81614828565b82525050565b613b5a81614834565b82525050565b613b71613b6c82614834565b6149dc565b82525050565b6000613b82826146a1565b613b8c81856146b7565b9350613b9c8185602086016148eb565b613ba581614ae5565b840191505092915050565b6000613bbb826146a1565b613bc581856146c8565b9350613bd58185602086016148eb565b80840191505092915050565b6000613bec826146ac565b613bf681856146d3565b9350613c068185602086016148eb565b613c0f81614ae5565b840191505092915050565b6000613c25826146ac565b613c2f81856146e4565b9350613c3f8185602086016148eb565b80840191505092915050565b6000613c586006836146d3565b9150613c6382614b03565b602082019050919050565b6000613c7b6032836146d3565b9150613c8682614b2c565b604082019050919050565b6000613c9e6026836146d3565b9150613ca982614b7b565b604082019050919050565b6000613cc1601c836146d3565b9150613ccc82614bca565b602082019050919050565b6000613ce46026836146d3565b9150613cef82614bf3565b604082019050919050565b6000613d076024836146d3565b9150613d1282614c42565b604082019050919050565b6000613d2a6019836146d3565b9150613d3582614c91565b602082019050919050565b6000613d4d603a836146d3565b9150613d5882614cba565b604082019050919050565b6000613d70600f836146d3565b9150613d7b82614d09565b602082019050919050565b6000613d93601d836146d3565b9150613d9e82614d32565b602082019050919050565b6000613db66026836146d3565b9150613dc182614d5b565b604082019050919050565b6000613dd9602c836146d3565b9150613de482614daa565b604082019050919050565b6000613dfc602b836146d3565b9150613e0782614df9565b604082019050919050565b6000613e1f6038836146d3565b9150613e2a82614e48565b604082019050919050565b6000613e42602a836146d3565b9150613e4d82614e97565b604082019050919050565b6000613e656029836146d3565b9150613e7082614ee6565b604082019050919050565b6000613e886012836146d3565b9150613e9382614f35565b602082019050919050565b6000613eab6020836146d3565b9150613eb682614f5e565b602082019050919050565b6000613ece600b836146d3565b9150613ed982614f87565b602082019050919050565b6000613ef1602c836146d3565b9150613efc82614fb0565b604082019050919050565b6000613f146020836146d3565b9150613f1f82614fff565b602082019050919050565b6000613f376029836146d3565b9150613f4282615028565b604082019050919050565b6000613f5a602f836146d3565b9150613f6582615077565b604082019050919050565b6000613f7d6021836146d3565b9150613f88826150c6565b604082019050919050565b6000613fa06000836146c8565b9150613fab82615115565b600082019050919050565b6000613fc36031836146d3565b9150613fce82615118565b604082019050919050565b6000613fe6601d836146d3565b9150613ff182615167565b602082019050919050565b60006140096010836146d3565b915061401482615190565b602082019050919050565b600061402c600f836146d3565b9150614037826151b9565b602082019050919050565b600061404f602a836146d3565b915061405a826151e2565b604082019050919050565b6000614072600c836146d3565b915061407d82615231565b602082019050919050565b6140918161489c565b82525050565b60006140a38284613b2b565b60148201915081905092915050565b60006140be8285613b60565b6020820191506140ce8284613b60565b6020820191508190509392505050565b60006140ea8284613bb0565b915081905092915050565b60006141018285613c1a565b915061410d8284613c1a565b91508190509392505050565b600061412482613f93565b9150819050919050565b60006020820190506141436000830184613b1c565b92915050565b600060408201905061415e6000830185613b0d565b61416b6020830184614088565b9392505050565b60006080820190506141876000830187613b1c565b6141946020830186613b1c565b6141a16040830185614088565b81810360608301526141b38184613b77565b905095945050505050565b60006040820190506141d36000830185613b1c565b6141e06020830184614088565b9392505050565b60006020820190506141fc6000830184613b42565b92915050565b60006020820190506142176000830184613b51565b92915050565b600060208201905081810360008301526142378184613be1565b905092915050565b6000602082019050818103600083015261425881613c4b565b9050919050565b6000602082019050818103600083015261427881613c6e565b9050919050565b6000602082019050818103600083015261429881613c91565b9050919050565b600060208201905081810360008301526142b881613cb4565b9050919050565b600060208201905081810360008301526142d881613cd7565b9050919050565b600060208201905081810360008301526142f881613cfa565b9050919050565b6000602082019050818103600083015261431881613d1d565b9050919050565b6000602082019050818103600083015261433881613d40565b9050919050565b6000602082019050818103600083015261435881613d63565b9050919050565b6000602082019050818103600083015261437881613d86565b9050919050565b6000602082019050818103600083015261439881613da9565b9050919050565b600060208201905081810360008301526143b881613dcc565b9050919050565b600060208201905081810360008301526143d881613def565b9050919050565b600060208201905081810360008301526143f881613e12565b9050919050565b6000602082019050818103600083015261441881613e35565b9050919050565b6000602082019050818103600083015261443881613e58565b9050919050565b6000602082019050818103600083015261445881613e7b565b9050919050565b6000602082019050818103600083015261447881613e9e565b9050919050565b6000602082019050818103600083015261449881613ec1565b9050919050565b600060208201905081810360008301526144b881613ee4565b9050919050565b600060208201905081810360008301526144d881613f07565b9050919050565b600060208201905081810360008301526144f881613f2a565b9050919050565b6000602082019050818103600083015261451881613f4d565b9050919050565b6000602082019050818103600083015261453881613f70565b9050919050565b6000602082019050818103600083015261455881613fb6565b9050919050565b6000602082019050818103600083015261457881613fd9565b9050919050565b6000602082019050818103600083015261459881613ffc565b9050919050565b600060208201905081810360008301526145b88161401f565b9050919050565b600060208201905081810360008301526145d881614042565b9050919050565b600060208201905081810360008301526145f881614065565b9050919050565b60006020820190506146146000830184614088565b92915050565b6000614624614635565b90506146308282614950565b919050565b6000604051905090565b600067ffffffffffffffff82111561465a57614659614ab6565b5b61466382614ae5565b9050602081019050919050565b600067ffffffffffffffff82111561468b5761468a614ab6565b5b61469482614ae5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146fa8261489c565b91506147058361489c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561473a57614739614a29565b5b828201905092915050565b60006147508261489c565b915061475b8361489c565b92508261476b5761476a614a58565b5b828204905092915050565b60006147818261489c565b915061478c8361489c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147c5576147c4614a29565b5b828202905092915050565b60006147db8261489c565b91506147e68361489c565b9250828210156147f9576147f8614a29565b5b828203905092915050565b600061480f8261487c565b9050919050565b60006148218261487c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061487582614804565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148b1826148b8565b9050919050565b60006148c3826148ca565b9050919050565b60006148d58261487c565b9050919050565b82818337600083830152505050565b60005b838110156149095780820151818401526020810190506148ee565b83811115614918576000848401525b50505050565b6000600282049050600182168061493657607f821691505b6020821081141561494a57614949614a87565b5b50919050565b61495982614ae5565b810181811067ffffffffffffffff8211171561497857614977614ab6565b5b80604052505050565b600061498c8261489c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149bf576149be614a29565b5b600182019050919050565b60006149d5826149e6565b9050919050565b6000819050919050565b60006149f182614af6565b9050919050565b6000614a038261489c565b9150614a0e8361489c565b925082614a1e57614a1d614a58565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e7420310000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f4e6f74206f6e20746865206c6973740000000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d696e7420706175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f57726f6e672045544820616d6f756e7400000000000000000000000000000000600082015250565b7f43616e206f6e6c79206d696e7420330000000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b61526381614804565b811461526e57600080fd5b50565b61527a81614816565b811461528557600080fd5b50565b61529181614828565b811461529c57600080fd5b50565b6152a881614834565b81146152b357600080fd5b50565b6152bf8161483e565b81146152ca57600080fd5b50565b6152d68161486a565b81146152e157600080fd5b50565b6152ed8161489c565b81146152f857600080fd5b5056fea26469706673582212208d34d95df31ee409ec379b256e63f8f9e3d8bee5ff8288d3c12a633759940cd664736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000d3a78c6a27be30305e7aeec9c5cab49b1390ee46000000000000000000000000f8afcacc459038a374c697bc9486a0a4106865400000000000000000000000001c29fed7470938f31d21eaccb89ecea1d779684f000000000000000000000000787bc77f1700dce0f8c1581c18a12d3153d1b150000000000000000000000000c14852b7a08d4e896ee8cc9b449a9d731ee9b7e100000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88000000000000000000000000713eed92d42df88ab85934e7156acdc47b9968c4000000000000000000000000d035efac079402bc8a77f958f28c25aa31217372000000000000000000000000d2498b4dc8402789736f7c94caf969ea65badfa20000000000000000000000006548ce1f9672a97d1a4d7e7614bca7da7bbf3f80000000000000000000000000e00688abd903c269660603148490297123ffa9210000000000000000000000001ea24ef5915cc083aacf7af142687435db116c7b000000000000000000000000d40327a2dee24b7d7cbcca1a6d3c6b84b3cfed640000000000000000000000003dbc93aecd50e485ecd2dd6dbe73d1ec19a4d83900000000000000000000000032d048b9d94ae9da7e73f4bf638cf498064b7cfc000000000000000000000000b79130ce107d7656fc0e0f193d2ba54006ef98b60000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000044c00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000044c000000000000000000000000000000000000000000000000000000000000025800000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000320

-----Decoded View---------------
Arg [0] : _payees (address[]): 0xD3a78c6a27BE30305e7AEec9c5CAb49b1390Ee46,0xf8AfCacc459038A374C697BC9486A0A410686540,0x1c29Fed7470938f31d21eaCcB89Ecea1D779684F,0x787bc77F1700DCE0f8c1581c18A12d3153D1B150,0xc14852B7A08d4e896EE8cC9B449A9D731ee9B7E1,0x75e89d5979E4f6Fba9F97c104c2F0AFB3F1dcB88,0x713eeD92d42dF88AB85934E7156aCDC47b9968C4,0xD035efAC079402bC8A77f958F28C25AA31217372,0xd2498b4Dc8402789736F7C94CAf969eA65BadFa2,0x6548Ce1F9672a97d1a4D7E7614bCa7da7Bbf3f80,0xe00688abd903c269660603148490297123fFa921,0x1Ea24eF5915Cc083aACF7Af142687435dB116c7b,0xD40327a2dEe24B7D7CBCCA1a6d3C6B84B3cFed64,0x3dBC93AEcD50e485ecD2Dd6DBE73d1eC19A4d839,0x32D048B9D94ae9da7e73F4Bf638Cf498064b7CFc,0xB79130cE107D7656FC0e0F193d2ba54006eF98B6
Arg [1] : _shares (uint256[]): 1100,1000,1100,600,500,50,400,4000,50,25,25,50,100,100,100,800

-----Encoded View---------------
36 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 000000000000000000000000d3a78c6a27be30305e7aeec9c5cab49b1390ee46
Arg [4] : 000000000000000000000000f8afcacc459038a374c697bc9486a0a410686540
Arg [5] : 0000000000000000000000001c29fed7470938f31d21eaccb89ecea1d779684f
Arg [6] : 000000000000000000000000787bc77f1700dce0f8c1581c18a12d3153d1b150
Arg [7] : 000000000000000000000000c14852b7a08d4e896ee8cc9b449a9d731ee9b7e1
Arg [8] : 00000000000000000000000075e89d5979e4f6fba9f97c104c2f0afb3f1dcb88
Arg [9] : 000000000000000000000000713eed92d42df88ab85934e7156acdc47b9968c4
Arg [10] : 000000000000000000000000d035efac079402bc8a77f958f28c25aa31217372
Arg [11] : 000000000000000000000000d2498b4dc8402789736f7c94caf969ea65badfa2
Arg [12] : 0000000000000000000000006548ce1f9672a97d1a4d7e7614bca7da7bbf3f80
Arg [13] : 000000000000000000000000e00688abd903c269660603148490297123ffa921
Arg [14] : 0000000000000000000000001ea24ef5915cc083aacf7af142687435db116c7b
Arg [15] : 000000000000000000000000d40327a2dee24b7d7cbcca1a6d3c6b84b3cfed64
Arg [16] : 0000000000000000000000003dbc93aecd50e485ecd2dd6dbe73d1ec19a4d839
Arg [17] : 00000000000000000000000032d048b9d94ae9da7e73f4bf638cf498064b7cfc
Arg [18] : 000000000000000000000000b79130ce107d7656fc0e0f193d2ba54006ef98b6
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [20] : 000000000000000000000000000000000000000000000000000000000000044c
Arg [21] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [22] : 000000000000000000000000000000000000000000000000000000000000044c
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000258
Arg [24] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000fa0
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [33] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000320


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.