ETH Price: $3,272.94 (-4.18%)
Gas: 7 Gwei

Token

Degen Doggos NFT (DDNFT)
 

Overview

Max Total Supply

442 DDNFT

Holders

158

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
coughdrop.eth
Balance
1 DDNFT
0x79C26b3468Fea1cA206c918758d978cA9079BD39
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DegenDoggos

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 16: DegenDoggos.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./Ownable.sol";
import "./PaymentSplitter.sol";
import "./ERC721Enumerable.sol";

contract DegenDoggos is ERC721Enumerable, Ownable, PaymentSplitter {
    bool    public              revealed                = false;
    uint256 public              saleStatus              = 0; // 0 closed, 1 PUBLIC
    uint256 public constant     MAX_SUPPLY              = 2666;
    uint256 public              MAX_GIVEAWAY            = 50;

    uint256 public constant     MAX_PER_TX              = 20;
    uint256 public              priceInWei              = 0.022 ether;

    uint256 public constant     FREE_MAX_PER_TX         = 3;

    string  public              provenance;
    string  public              baseURI;
    address public              proxyRegistryAddress    = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    mapping(address => bool) public projectProxy;
    mapping(address => uint) public addressToMinted;

    constructor(
        address[] memory _payees,
        uint256[] memory _paymentShares
    )
        ERC721("Degen Doggos NFT", "DDNFT") 
        PaymentSplitter(_payees, _paymentShares)
    {    }

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

    function setRevealed() public onlyOwner {
        revealed = !revealed;
    }

    function setProvenance(string memory _provenance) public onlyOwner {
        provenance = _provenance;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        if (revealed == false) {
            return string (abi.encodePacked(baseURI, "unrevealed.json"));
        }
        else {
            require(_exists(_tokenId), "Token does not exist.");
            return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json"));
        }
    }

    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function setSaleStatus(uint256 _status) external onlyOwner {
        require(saleStatus <= 1 && saleStatus >= 0, "Invalid status.");
        saleStatus = _status;
    }

    function mint(uint256 count) public payable {
        uint256 totalSupply = _owners.length;
        require(totalSupply + count <= MAX_SUPPLY, "Exceeds max supply.");
        if (saleStatus == 1 && totalSupply <= 333) {
            require(addressToMinted[_msgSender()] + count <= FREE_MAX_PER_TX, "Exceeds free max per address."); 
            addressToMinted[_msgSender()] += count;
        }  
        else if (saleStatus == 1) {
            require(count <= MAX_PER_TX, "Exceeds max per transaction.");
            require(count * priceInWei == msg.value, "Invalid funds provided.");
        } 
        else {
            require(false, "Sale not open.");
        }
        
        for(uint i; i < count; i++) { 
            _mint(_msgSender(), totalSupply + i);
        }
    }

    function promoMint(uint _qty, address _to) public onlyOwner {
        require(MAX_GIVEAWAY - _qty >= 0, "Exceeds max giveaway.");
        uint256 totalSupply = _owners.length;
        require(totalSupply + _qty <= MAX_SUPPLY, "Excedes max supply.");
        for (uint i = 0; i < _qty; i++) {
            _mint(_to, totalSupply + i);
        }
        MAX_GIVEAWAY -= _qty;
    }

    function burn(uint256 tokenId) public { 
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        _burn(tokenId);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }

    function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            safeTransferFrom(_from, _to, _tokenIds[i], data_);
        }
    }

    function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){
        for(uint256 i; i < _tokenIds.length; ++i ){
            if(_owners[_tokenIds[i]] != account)
                return false;
        }

        return true;
    }

    function isApprovedForAll(address _owner, address operator) public view override(ERC721) returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }

    function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }
}

contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (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 2 of 16: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.7;

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

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    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 (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

        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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 16: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

File 7 of 16: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (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 8 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);
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 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 12 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 13 of 16: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 14 of 16: PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "./SafeERC20.sol";
import "./Address.sol";
import "./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 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 "./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: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_paymentShares","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":[],"name":"FREE_MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GIVEAWAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setSaleStatus","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600d805460ff191690556000600e556032600f55664e28e2290f0000601055601380546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c11790553480156200005657600080fd5b5060405162003a0f38038062003a0f8339810160408190526200007991620005a5565b604080518082018252601081526f111959d95b88111bd9d9dbdcc813919560821b602080830191825283518085019094526005845264111113919560da1b90840152815185938593929091620000d29160009162000485565b508051620000e890600190602084019062000485565b50505062000105620000ff6200024160201b60201c565b62000245565b8051825114620001775760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001ca5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200016e565b60005b8251811015620002365762000221838281518110620001f057620001f06200076e565b60200260200101518383815181106200020d576200020d6200076e565b60200260200101516200029760201b60201c565b806200022d816200073a565b915050620001cd565b50505050506200079a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003045760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200016e565b60008111620003565760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200016e565b6001600160a01b03821660009081526008602052604090205415620003d25760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200016e565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b03841690811790915560009081526008602052604090208190556006546200043c908290620006e2565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280546200049390620006fd565b90600052602060002090601f016020900481019282620004b7576000855562000502565b82601f10620004d257805160ff191683800117855562000502565b8280016001018555821562000502579182015b8281111562000502578251825591602001919060010190620004e5565b506200051092915062000514565b5090565b5b8082111562000510576000815560010162000515565b600082601f8301126200053d57600080fd5b81516020620005566200055083620006bc565b62000689565b80838252828201915082860187848660051b89010111156200057757600080fd5b60005b8581101562000598578151845292840192908401906001016200057a565b5090979650505050505050565b60008060408385031215620005b957600080fd5b82516001600160401b0380821115620005d157600080fd5b818501915085601f830112620005e657600080fd5b81516020620005f96200055083620006bc565b8083825282820191508286018a848660051b89010111156200061a57600080fd5b600096505b84871015620006555780516001600160a01b03811681146200064057600080fd5b8352600196909601959183019183016200061f565b50918801519196509093505050808211156200067057600080fd5b506200067f858286016200052b565b9150509250929050565b604051601f8201601f191681016001600160401b0381118282101715620006b457620006b462000784565b604052919050565b60006001600160401b03821115620006d857620006d862000784565b5060051b60200190565b60008219821115620006f857620006f862000758565b500190565b600181811c908216806200071257607f821691505b602082108114156200073457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000751576200075162000758565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61326580620007aa6000396000f3fe6080604052600436106103035760003560e01c80636352211e11610190578063c87b56dd116100dc578063e985e9c511610095578063f3993d111161006f578063f3993d1114610988578063f43a22dc146109a8578063f9020e33146109bd578063ffe630b5146109d357600080fd5b8063e985e9c514610928578063f29f15af14610948578063f2fde38b1461096857600080fd5b8063c87b56dd14610847578063cd7c032614610867578063ce7c2ac214610887578063d26ea6c0146108bd578063d79779b2146108dd578063e33b7de31461091357600080fd5b806395d89b4111610149578063a0712d6811610123578063a0712d68146107d4578063a22cb465146107e7578063b88d4fde14610807578063c79b25cf1461082757600080fd5b806395d89b411461075c5780639852595c146107715780639ec00c95146107a757600080fd5b80636352211e146106b45780636c0360eb146106d457806370a08231146106e9578063715018a6146107095780638b83209b1461071e5780638da5cb5b1461073e57600080fd5b80633c8da5881161024f5780634c5b7a291161020857806351830227116101e2578063518302271461062a57806355f804b3146106445780635a4fee30146106645780635bab26e21461068457600080fd5b80634c5b7a29146105d45780634d44660c146105ea5780634f6ccce71461060a57600080fd5b80633c8da588146104eb578063406072a91461050157806342842e0e1461054757806342966c6814610567578063438b63001461058757806348b75044146105b457600080fd5b806319165587116102bc5780632f745c59116102965780632f745c591461048b57806332cb6b0c146104ab5780633a98ef39146104c15780633bd64968146104d657600080fd5b806319165587146104365780631b9fc4051461045657806323b872dd1461046b57600080fd5b806301ffc9a71461035157806306fdde0314610386578063081812fc146103a8578063095ea7b3146103e05780630f7309e81461040257806318160ddd1461041757600080fd5b3661034c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561035d57600080fd5b5061037161036c366004612bf4565b6109f3565b60405190151581526020015b60405180910390f35b34801561039257600080fd5b5061039b610a1e565b60405161037d9190612eae565b3480156103b457600080fd5b506103c86103c3366004612c94565b610ab0565b6040516001600160a01b03909116815260200161037d565b3480156103ec57600080fd5b506104006103fb366004612bab565b610b3d565b005b34801561040e57600080fd5b5061039b610c53565b34801561042357600080fd5b506002545b60405190815260200161037d565b34801561044257600080fd5b50610400610451366004612913565b610ce1565b34801561046257600080fd5b50610428600381565b34801561047757600080fd5b50610400610486366004612a54565b610e0f565b34801561049757600080fd5b506104286104a6366004612bab565b610e41565b3480156104b757600080fd5b50610428610a6a81565b3480156104cd57600080fd5b50600654610428565b3480156104e257600080fd5b50610400610ef4565b3480156104f757600080fd5b5061042860105481565b34801561050d57600080fd5b5061042861051c366004612930565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b34801561055357600080fd5b50610400610562366004612a54565b610f32565b34801561057357600080fd5b50610400610582366004612c94565b610f4d565b34801561059357600080fd5b506105a76105a2366004612913565b610fa6565b60405161037d9190612e6a565b3480156105c057600080fd5b506104006105cf366004612930565b61105f565b3480156105e057600080fd5b50610428600f5481565b3480156105f657600080fd5b50610371610605366004612af5565b611247565b34801561061657600080fd5b50610428610625366004612c94565b6112c9565b34801561063657600080fd5b50600d546103719060ff1681565b34801561065057600080fd5b5061040061065f366004612c4b565b611336565b34801561067057600080fd5b5061040061067f3660046129cb565b611377565b34801561069057600080fd5b5061037161069f366004612913565b60146020526000908152604090205460ff1681565b3480156106c057600080fd5b506103c86106cf366004612c94565b6113c1565b3480156106e057600080fd5b5061039b61144d565b3480156106f557600080fd5b50610428610704366004612913565b61145a565b34801561071557600080fd5b50610400611528565b34801561072a57600080fd5b506103c8610739366004612c94565b61155e565b34801561074a57600080fd5b506005546001600160a01b03166103c8565b34801561076857600080fd5b5061039b61158e565b34801561077d57600080fd5b5061042861078c366004612913565b6001600160a01b031660009081526009602052604090205490565b3480156107b357600080fd5b506104286107c2366004612913565b60156020526000908152604090205481565b6104006107e2366004612c94565b61159d565b3480156107f357600080fd5b50610400610802366004612b7d565b6117c6565b34801561081357600080fd5b50610400610822366004612a95565b61188b565b34801561083357600080fd5b50610400610842366004612cc6565b6118c3565b34801561085357600080fd5b5061039b610862366004612c94565b6119df565b34801561087357600080fd5b506013546103c8906001600160a01b031681565b34801561089357600080fd5b506104286108a2366004612913565b6001600160a01b031660009081526008602052604090205490565b3480156108c957600080fd5b506104006108d8366004612913565b611a7d565b3480156108e957600080fd5b506104286108f8366004612913565b6001600160a01b03166000908152600b602052604090205490565b34801561091f57600080fd5b50600754610428565b34801561093457600080fd5b50610371610943366004612930565b611ac9565b34801561095457600080fd5b50610400610963366004612c94565b611bbc565b34801561097457600080fd5b50610400610983366004612913565b611c3a565b34801561099457600080fd5b506104006109a3366004612969565b611cd2565b3480156109b457600080fd5b50610428601481565b3480156109c957600080fd5b50610428600e5481565b3480156109df57600080fd5b506104006109ee366004612c4b565b611d14565b60006001600160e01b0319821663780e9d6360e01b1480610a185750610a1882611d51565b92915050565b606060008054610a2d90613134565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5990613134565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b5050505050905090565b6000610abb82611da1565b610b215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610b48826113c1565b9050806001600160a01b0316836001600160a01b03161415610bb65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b18565b336001600160a01b0382161480610bd25750610bd28133611ac9565b610c445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b18565b610c4e8383611deb565b505050565b60118054610c6090613134565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8c90613134565b8015610cd95780601f10610cae57610100808354040283529160200191610cd9565b820191906000526020600020905b815481529060010190602001808311610cbc57829003601f168201915b505050505081565b6001600160a01b038116600090815260086020526040902054610d165760405162461bcd60e51b8152600401610b1890612f5e565b6000610d2160075490565b610d2b90476130a6565b90506000610d588383610d53866001600160a01b031660009081526009602052604090205490565b611e59565b905080610d775760405162461bcd60e51b8152600401610b1890612fa4565b6001600160a01b03831660009081526009602052604081208054839290610d9f9084906130a6565b925050819055508060076000828254610db891906130a6565b90915550610dc890508382611e97565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610e1a335b82611fb0565b610e365760405162461bcd60e51b8152600401610b1890613024565b610c4e838383612072565b6000610e4c8361145a565b8210610e6a5760405162461bcd60e51b8152600401610b1890612ec1565b6000805b600254811015610edb5760028181548110610e8b57610e8b6131ca565b6000918252602090912001546001600160a01b0386811691161415610ec95783821415610ebb579150610a189050565b81610ec58161316f565b9250505b80610ed38161316f565b915050610e6e565b5060405162461bcd60e51b8152600401610b1890612ec1565b6005546001600160a01b03163314610f1e5760405162461bcd60e51b8152600401610b1890612fef565b600d805460ff19811660ff90911615179055565b610c4e8383836040518060200160405280600081525061188b565b610f5633610e14565b610f9a5760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610b18565b610fa3816121c8565b50565b60606000610fb38361145a565b905080610fd45760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610fef57610fef6131e0565b604051908082528060200260200182016040528015611018578160200160208202803683370190505b50905060005b82811015610fcc576110308582610e41565b828281518110611042576110426131ca565b6020908102919091010152806110578161316f565b91505061101e565b6001600160a01b0381166000908152600860205260409020546110945760405162461bcd60e51b8152600401610b1890612f5e565b6001600160a01b0382166000908152600b60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156110ec57600080fd5b505afa158015611100573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111249190612cad565b61112e91906130a6565b905060006111678383610d5387876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806111865760405162461bcd60e51b8152600401610b1890612fa4565b6001600160a01b038085166000908152600c60209081526040808320938716835292905290812080548392906111bd9084906130a6565b90915550506001600160a01b0384166000908152600b6020526040812080548392906111ea9084906130a6565b909155506111fb905084848361224a565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805b828110156112bc57846001600160a01b03166002858584818110611271576112716131ca565b9050602002013581548110611288576112886131ca565b6000918252602090912001546001600160a01b0316146112ac5760009150506112c2565b6112b58161316f565b905061124b565b50600190505b9392505050565b60025460009082106113325760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b18565b5090565b6005546001600160a01b031633146113605760405162461bcd60e51b8152600401610b1890612fef565b8051611373906012906020840190612785565b5050565b60005b82518110156113ba576113a8858585848151811061139a5761139a6131ca565b60200260200101518561188b565b806113b28161316f565b91505061137a565b5050505050565b600080600283815481106113d7576113d76131ca565b6000918252602090912001546001600160a01b0316905080610a185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b18565b60128054610c6090613134565b60006001600160a01b0382166114c55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b18565b6000805b60025481101561152157600281815481106114e6576114e66131ca565b6000918252602090912001546001600160a01b03858116911614156115115761150e8261316f565b91505b61151a8161316f565b90506114c9565b5092915050565b6005546001600160a01b031633146115525760405162461bcd60e51b8152600401610b1890612fef565b61155c600061229c565b565b6000600a8281548110611573576115736131ca565b6000918252602090912001546001600160a01b031692915050565b606060018054610a2d90613134565b600254610a6a6115ad83836130a6565b11156115f15760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610b18565b600e546001148015611605575061014d8111155b156116a057336000908152601560205260409020546003906116289084906130a6565b11156116765760405162461bcd60e51b815260206004820152601d60248201527f457863656564732066726565206d61782070657220616464726573732e0000006044820152606401610b18565b33600090815260156020526040812080548492906116959084906130a6565b909155506117969050565b600e546001141561175d5760148211156116fc5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610b18565b346010548361170b91906130d2565b146117585760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610b18565b611796565b60405162461bcd60e51b815260206004820152600e60248201526d29b0b632903737ba1037b832b71760911b6044820152606401610b18565b60005b82811015610c4e576117b4336117af83856130a6565b6122ee565b806117be8161316f565b915050611799565b6001600160a01b03821633141561181f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b18565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118953383611fb0565b6118b15760405162461bcd60e51b8152600401610b1890613024565b6118bd8484848461236a565b50505050565b6005546001600160a01b031633146118ed5760405162461bcd60e51b8152600401610b1890612fef565b600082600f546118fd91906130f1565b10156119435760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b2399036b0bc1033b4bb32b0bbb0bc9760591b6044820152606401610b18565b600254610a6a61195384836130a6565b11156119975760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610b18565b60005b838110156119c2576119b0836117af83856130a6565b806119ba8161316f565b91505061199a565b5082600f60008282546119d591906130f1565b9091555050505050565b600d5460609060ff16611a145760126040516020016119fe9190612e02565b6040516020818303038152906040529050919050565b611a1d82611da1565b611a615760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610b18565b6012611a6c8361239d565b6040516020016119fe929190612dcd565b6005546001600160a01b03163314611aa75760405162461bcd60e51b8152600401610b1890612fef565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60135460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611b1657600080fd5b505afa158015611b2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4e9190612c2e565b6001600160a01b03161480611b7b57506001600160a01b03831660009081526014602052604090205460ff165b15611b8a576001915050610a18565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b03163314611be65760405162461bcd60e51b8152600401610b1890612fef565b6001600e5411158015611bf7575060015b611c355760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21039ba30ba3ab99760891b6044820152606401610b18565b600e55565b6005546001600160a01b03163314611c645760405162461bcd60e51b8152600401610b1890612fef565b6001600160a01b038116611cc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b18565b610fa38161229c565b60005b81518110156118bd57611d028484848481518110611cf557611cf56131ca565b6020026020010151610e0f565b80611d0c8161316f565b915050611cd5565b6005546001600160a01b03163314611d3e5760405162461bcd60e51b8152600401610b1890612fef565b8051611373906011906020840190612785565b60006001600160e01b031982166380ac58cd60e01b1480611d8257506001600160e01b03198216635b5e139f60e01b145b80610a1857506301ffc9a760e01b6001600160e01b0319831614610a18565b60025460009082108015610a18575060006001600160a01b031660028381548110611dce57611dce6131ca565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e20826113c1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b03841660009081526008602052604081205490918391611e8390866130d2565b611e8d91906130be565b611bb491906130f1565b80471015611ee75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b18565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f34576040519150601f19603f3d011682016040523d82523d6000602084013e611f39565b606091505b5050905080610c4e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b18565b6000611fbb82611da1565b61201c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b18565b6000612027836113c1565b9050806001600160a01b0316846001600160a01b031614806120625750836001600160a01b031661205784610ab0565b6001600160a01b0316145b80611bb45750611bb48185611ac9565b826001600160a01b0316612085826113c1565b6001600160a01b0316146120ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b18565b6001600160a01b03821661214f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b18565b61215a600082611deb565b816002828154811061216e5761216e6131ca565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006121d3826113c1565b90506121e0600083611deb565b6000600283815481106121f5576121f56131ca565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c4e90849061249b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612375848484612072565b6123818484848461256d565b6118bd5760405162461bcd60e51b8152600401610b1890612f0c565b6060816123c15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123eb57806123d58161316f565b91506123e49050600a836130be565b91506123c5565b60008167ffffffffffffffff811115612406576124066131e0565b6040519080825280601f01601f191660200182016040528015612430576020820181803683370190505b5090505b8415611bb4576124456001836130f1565b9150612452600a8661318a565b61245d9060306130a6565b60f81b818381518110612472576124726131ca565b60200101906001600160f81b031916908160001a905350612494600a866130be565b9450612434565b60006124f0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661267a9092919063ffffffff16565b805190915015610c4e578080602001905181019061250e9190612bd7565b610c4e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b18565b60006001600160a01b0384163b1561266f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125b1903390899088908890600401612e2d565b602060405180830381600087803b1580156125cb57600080fd5b505af19250505080156125fb575060408051601f3d908101601f191682019092526125f891810190612c11565b60015b612655573d808015612629576040519150601f19603f3d011682016040523d82523d6000602084013e61262e565b606091505b50805161264d5760405162461bcd60e51b8152600401610b1890612f0c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bb4565b506001949350505050565b6060611bb4848460008585843b6126d35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b18565b600080866001600160a01b031685876040516126ef9190612db1565b60006040518083038185875af1925050503d806000811461272c576040519150601f19603f3d011682016040523d82523d6000602084013e612731565b606091505b509150915061274182828661274c565b979650505050505050565b6060831561275b5750816112c2565b82511561276b5782518084602001fd5b8160405162461bcd60e51b8152600401610b189190612eae565b82805461279190613134565b90600052602060002090601f0160209004810192826127b357600085556127f9565b82601f106127cc57805160ff19168380011785556127f9565b828001600101855582156127f9579182015b828111156127f95782518255916020019190600101906127de565b506113329291505b808211156113325760008155600101612801565b600067ffffffffffffffff83111561282f5761282f6131e0565b612842601f8401601f1916602001613075565b905082815283838301111561285657600080fd5b828260208301376000602084830101529392505050565b600082601f83011261287e57600080fd5b8135602067ffffffffffffffff82111561289a5761289a6131e0565b8160051b6128a9828201613075565b8381528281019086840183880185018910156128c457600080fd5b600093505b858410156128e75780358352600193909301929184019184016128c9565b50979650505050505050565b600082601f83011261290457600080fd5b6112c283833560208501612815565b60006020828403121561292557600080fd5b81356112c2816131f6565b6000806040838503121561294357600080fd5b823561294e816131f6565b9150602083013561295e816131f6565b809150509250929050565b60008060006060848603121561297e57600080fd5b8335612989816131f6565b92506020840135612999816131f6565b9150604084013567ffffffffffffffff8111156129b557600080fd5b6129c18682870161286d565b9150509250925092565b600080600080608085870312156129e157600080fd5b84356129ec816131f6565b935060208501356129fc816131f6565b9250604085013567ffffffffffffffff80821115612a1957600080fd5b612a258883890161286d565b93506060870135915080821115612a3b57600080fd5b50612a48878288016128f3565b91505092959194509250565b600080600060608486031215612a6957600080fd5b8335612a74816131f6565b92506020840135612a84816131f6565b929592945050506040919091013590565b60008060008060808587031215612aab57600080fd5b8435612ab6816131f6565b93506020850135612ac6816131f6565b925060408501359150606085013567ffffffffffffffff811115612ae957600080fd5b612a48878288016128f3565b600080600060408486031215612b0a57600080fd5b8335612b15816131f6565b9250602084013567ffffffffffffffff80821115612b3257600080fd5b818601915086601f830112612b4657600080fd5b813581811115612b5557600080fd5b8760208260051b8501011115612b6a57600080fd5b6020830194508093505050509250925092565b60008060408385031215612b9057600080fd5b8235612b9b816131f6565b9150602083013561295e8161320b565b60008060408385031215612bbe57600080fd5b8235612bc9816131f6565b946020939093013593505050565b600060208284031215612be957600080fd5b81516112c28161320b565b600060208284031215612c0657600080fd5b81356112c281613219565b600060208284031215612c2357600080fd5b81516112c281613219565b600060208284031215612c4057600080fd5b81516112c2816131f6565b600060208284031215612c5d57600080fd5b813567ffffffffffffffff811115612c7457600080fd5b8201601f81018413612c8557600080fd5b611bb484823560208401612815565b600060208284031215612ca657600080fd5b5035919050565b600060208284031215612cbf57600080fd5b5051919050565b60008060408385031215612cd957600080fd5b82359150602083013561295e816131f6565b60008151808452612d03816020860160208601613108565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612d3157607f831692505b6020808410821415612d5357634e487b7160e01b600052602260045260246000fd5b818015612d675760018114612d7857612da5565b60ff19861689528489019650612da5565b60008881526020902060005b86811015612d9d5781548b820152908501908301612d84565b505084890196505b50505050505092915050565b60008251612dc3818460208701613108565b9190910192915050565b6000612dd98285612d17565b8351612de9818360208801613108565b64173539b7b760d91b9101908152600501949350505050565b6000612e0e8284612d17565b6e3ab73932bb32b0b632b2173539b7b760891b8152600f019392505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e6090830184612ceb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ea257835183529284019291840191600101612e86565b50909695505050505050565b6020815260006112c26020830184612ceb565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561309e5761309e6131e0565b604052919050565b600082198211156130b9576130b961319e565b500190565b6000826130cd576130cd6131b4565b500490565b60008160001904831182151516156130ec576130ec61319e565b500290565b6000828210156131035761310361319e565b500390565b60005b8381101561312357818101518382015260200161310b565b838111156118bd5750506000910152565b600181811c9082168061314857607f821691505b6020821081141561316957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131835761318361319e565b5060010190565b600082613199576131996131b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610fa357600080fd5b8015158114610fa357600080fd5b6001600160e01b031981168114610fa357600080fdfea264697066735822122000b15c8ff6fdddeff891cb34fed4bd2fd943343aa5b94a5ed44e4c014dfe187064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fd041d4ee464ba0fad5d627f599702bec3cb3d920000000000000000000000003c9da47e992949d2e1056763d9c7abddfee9e9de000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000014

Deployed Bytecode

0x6080604052600436106103035760003560e01c80636352211e11610190578063c87b56dd116100dc578063e985e9c511610095578063f3993d111161006f578063f3993d1114610988578063f43a22dc146109a8578063f9020e33146109bd578063ffe630b5146109d357600080fd5b8063e985e9c514610928578063f29f15af14610948578063f2fde38b1461096857600080fd5b8063c87b56dd14610847578063cd7c032614610867578063ce7c2ac214610887578063d26ea6c0146108bd578063d79779b2146108dd578063e33b7de31461091357600080fd5b806395d89b4111610149578063a0712d6811610123578063a0712d68146107d4578063a22cb465146107e7578063b88d4fde14610807578063c79b25cf1461082757600080fd5b806395d89b411461075c5780639852595c146107715780639ec00c95146107a757600080fd5b80636352211e146106b45780636c0360eb146106d457806370a08231146106e9578063715018a6146107095780638b83209b1461071e5780638da5cb5b1461073e57600080fd5b80633c8da5881161024f5780634c5b7a291161020857806351830227116101e2578063518302271461062a57806355f804b3146106445780635a4fee30146106645780635bab26e21461068457600080fd5b80634c5b7a29146105d45780634d44660c146105ea5780634f6ccce71461060a57600080fd5b80633c8da588146104eb578063406072a91461050157806342842e0e1461054757806342966c6814610567578063438b63001461058757806348b75044146105b457600080fd5b806319165587116102bc5780632f745c59116102965780632f745c591461048b57806332cb6b0c146104ab5780633a98ef39146104c15780633bd64968146104d657600080fd5b806319165587146104365780631b9fc4051461045657806323b872dd1461046b57600080fd5b806301ffc9a71461035157806306fdde0314610386578063081812fc146103a8578063095ea7b3146103e05780630f7309e81461040257806318160ddd1461041757600080fd5b3661034c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561035d57600080fd5b5061037161036c366004612bf4565b6109f3565b60405190151581526020015b60405180910390f35b34801561039257600080fd5b5061039b610a1e565b60405161037d9190612eae565b3480156103b457600080fd5b506103c86103c3366004612c94565b610ab0565b6040516001600160a01b03909116815260200161037d565b3480156103ec57600080fd5b506104006103fb366004612bab565b610b3d565b005b34801561040e57600080fd5b5061039b610c53565b34801561042357600080fd5b506002545b60405190815260200161037d565b34801561044257600080fd5b50610400610451366004612913565b610ce1565b34801561046257600080fd5b50610428600381565b34801561047757600080fd5b50610400610486366004612a54565b610e0f565b34801561049757600080fd5b506104286104a6366004612bab565b610e41565b3480156104b757600080fd5b50610428610a6a81565b3480156104cd57600080fd5b50600654610428565b3480156104e257600080fd5b50610400610ef4565b3480156104f757600080fd5b5061042860105481565b34801561050d57600080fd5b5061042861051c366004612930565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b34801561055357600080fd5b50610400610562366004612a54565b610f32565b34801561057357600080fd5b50610400610582366004612c94565b610f4d565b34801561059357600080fd5b506105a76105a2366004612913565b610fa6565b60405161037d9190612e6a565b3480156105c057600080fd5b506104006105cf366004612930565b61105f565b3480156105e057600080fd5b50610428600f5481565b3480156105f657600080fd5b50610371610605366004612af5565b611247565b34801561061657600080fd5b50610428610625366004612c94565b6112c9565b34801561063657600080fd5b50600d546103719060ff1681565b34801561065057600080fd5b5061040061065f366004612c4b565b611336565b34801561067057600080fd5b5061040061067f3660046129cb565b611377565b34801561069057600080fd5b5061037161069f366004612913565b60146020526000908152604090205460ff1681565b3480156106c057600080fd5b506103c86106cf366004612c94565b6113c1565b3480156106e057600080fd5b5061039b61144d565b3480156106f557600080fd5b50610428610704366004612913565b61145a565b34801561071557600080fd5b50610400611528565b34801561072a57600080fd5b506103c8610739366004612c94565b61155e565b34801561074a57600080fd5b506005546001600160a01b03166103c8565b34801561076857600080fd5b5061039b61158e565b34801561077d57600080fd5b5061042861078c366004612913565b6001600160a01b031660009081526009602052604090205490565b3480156107b357600080fd5b506104286107c2366004612913565b60156020526000908152604090205481565b6104006107e2366004612c94565b61159d565b3480156107f357600080fd5b50610400610802366004612b7d565b6117c6565b34801561081357600080fd5b50610400610822366004612a95565b61188b565b34801561083357600080fd5b50610400610842366004612cc6565b6118c3565b34801561085357600080fd5b5061039b610862366004612c94565b6119df565b34801561087357600080fd5b506013546103c8906001600160a01b031681565b34801561089357600080fd5b506104286108a2366004612913565b6001600160a01b031660009081526008602052604090205490565b3480156108c957600080fd5b506104006108d8366004612913565b611a7d565b3480156108e957600080fd5b506104286108f8366004612913565b6001600160a01b03166000908152600b602052604090205490565b34801561091f57600080fd5b50600754610428565b34801561093457600080fd5b50610371610943366004612930565b611ac9565b34801561095457600080fd5b50610400610963366004612c94565b611bbc565b34801561097457600080fd5b50610400610983366004612913565b611c3a565b34801561099457600080fd5b506104006109a3366004612969565b611cd2565b3480156109b457600080fd5b50610428601481565b3480156109c957600080fd5b50610428600e5481565b3480156109df57600080fd5b506104006109ee366004612c4b565b611d14565b60006001600160e01b0319821663780e9d6360e01b1480610a185750610a1882611d51565b92915050565b606060008054610a2d90613134565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5990613134565b8015610aa65780601f10610a7b57610100808354040283529160200191610aa6565b820191906000526020600020905b815481529060010190602001808311610a8957829003601f168201915b5050505050905090565b6000610abb82611da1565b610b215760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610b48826113c1565b9050806001600160a01b0316836001600160a01b03161415610bb65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b18565b336001600160a01b0382161480610bd25750610bd28133611ac9565b610c445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b18565b610c4e8383611deb565b505050565b60118054610c6090613134565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8c90613134565b8015610cd95780601f10610cae57610100808354040283529160200191610cd9565b820191906000526020600020905b815481529060010190602001808311610cbc57829003601f168201915b505050505081565b6001600160a01b038116600090815260086020526040902054610d165760405162461bcd60e51b8152600401610b1890612f5e565b6000610d2160075490565b610d2b90476130a6565b90506000610d588383610d53866001600160a01b031660009081526009602052604090205490565b611e59565b905080610d775760405162461bcd60e51b8152600401610b1890612fa4565b6001600160a01b03831660009081526009602052604081208054839290610d9f9084906130a6565b925050819055508060076000828254610db891906130a6565b90915550610dc890508382611e97565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610e1a335b82611fb0565b610e365760405162461bcd60e51b8152600401610b1890613024565b610c4e838383612072565b6000610e4c8361145a565b8210610e6a5760405162461bcd60e51b8152600401610b1890612ec1565b6000805b600254811015610edb5760028181548110610e8b57610e8b6131ca565b6000918252602090912001546001600160a01b0386811691161415610ec95783821415610ebb579150610a189050565b81610ec58161316f565b9250505b80610ed38161316f565b915050610e6e565b5060405162461bcd60e51b8152600401610b1890612ec1565b6005546001600160a01b03163314610f1e5760405162461bcd60e51b8152600401610b1890612fef565b600d805460ff19811660ff90911615179055565b610c4e8383836040518060200160405280600081525061188b565b610f5633610e14565b610f9a5760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610b18565b610fa3816121c8565b50565b60606000610fb38361145a565b905080610fd45760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610fef57610fef6131e0565b604051908082528060200260200182016040528015611018578160200160208202803683370190505b50905060005b82811015610fcc576110308582610e41565b828281518110611042576110426131ca565b6020908102919091010152806110578161316f565b91505061101e565b6001600160a01b0381166000908152600860205260409020546110945760405162461bcd60e51b8152600401610b1890612f5e565b6001600160a01b0382166000908152600b60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156110ec57600080fd5b505afa158015611100573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111249190612cad565b61112e91906130a6565b905060006111678383610d5387876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806111865760405162461bcd60e51b8152600401610b1890612fa4565b6001600160a01b038085166000908152600c60209081526040808320938716835292905290812080548392906111bd9084906130a6565b90915550506001600160a01b0384166000908152600b6020526040812080548392906111ea9084906130a6565b909155506111fb905084848361224a565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805b828110156112bc57846001600160a01b03166002858584818110611271576112716131ca565b9050602002013581548110611288576112886131ca565b6000918252602090912001546001600160a01b0316146112ac5760009150506112c2565b6112b58161316f565b905061124b565b50600190505b9392505050565b60025460009082106113325760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b18565b5090565b6005546001600160a01b031633146113605760405162461bcd60e51b8152600401610b1890612fef565b8051611373906012906020840190612785565b5050565b60005b82518110156113ba576113a8858585848151811061139a5761139a6131ca565b60200260200101518561188b565b806113b28161316f565b91505061137a565b5050505050565b600080600283815481106113d7576113d76131ca565b6000918252602090912001546001600160a01b0316905080610a185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b18565b60128054610c6090613134565b60006001600160a01b0382166114c55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b18565b6000805b60025481101561152157600281815481106114e6576114e66131ca565b6000918252602090912001546001600160a01b03858116911614156115115761150e8261316f565b91505b61151a8161316f565b90506114c9565b5092915050565b6005546001600160a01b031633146115525760405162461bcd60e51b8152600401610b1890612fef565b61155c600061229c565b565b6000600a8281548110611573576115736131ca565b6000918252602090912001546001600160a01b031692915050565b606060018054610a2d90613134565b600254610a6a6115ad83836130a6565b11156115f15760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610b18565b600e546001148015611605575061014d8111155b156116a057336000908152601560205260409020546003906116289084906130a6565b11156116765760405162461bcd60e51b815260206004820152601d60248201527f457863656564732066726565206d61782070657220616464726573732e0000006044820152606401610b18565b33600090815260156020526040812080548492906116959084906130a6565b909155506117969050565b600e546001141561175d5760148211156116fc5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610b18565b346010548361170b91906130d2565b146117585760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e0000000000000000006044820152606401610b18565b611796565b60405162461bcd60e51b815260206004820152600e60248201526d29b0b632903737ba1037b832b71760911b6044820152606401610b18565b60005b82811015610c4e576117b4336117af83856130a6565b6122ee565b806117be8161316f565b915050611799565b6001600160a01b03821633141561181f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b18565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118953383611fb0565b6118b15760405162461bcd60e51b8152600401610b1890613024565b6118bd8484848461236a565b50505050565b6005546001600160a01b031633146118ed5760405162461bcd60e51b8152600401610b1890612fef565b600082600f546118fd91906130f1565b10156119435760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b2399036b0bc1033b4bb32b0bbb0bc9760591b6044820152606401610b18565b600254610a6a61195384836130a6565b11156119975760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610b18565b60005b838110156119c2576119b0836117af83856130a6565b806119ba8161316f565b91505061199a565b5082600f60008282546119d591906130f1565b9091555050505050565b600d5460609060ff16611a145760126040516020016119fe9190612e02565b6040516020818303038152906040529050919050565b611a1d82611da1565b611a615760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610b18565b6012611a6c8361239d565b6040516020016119fe929190612dcd565b6005546001600160a01b03163314611aa75760405162461bcd60e51b8152600401610b1890612fef565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60135460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611b1657600080fd5b505afa158015611b2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4e9190612c2e565b6001600160a01b03161480611b7b57506001600160a01b03831660009081526014602052604090205460ff165b15611b8a576001915050610a18565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b03163314611be65760405162461bcd60e51b8152600401610b1890612fef565b6001600e5411158015611bf7575060015b611c355760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21039ba30ba3ab99760891b6044820152606401610b18565b600e55565b6005546001600160a01b03163314611c645760405162461bcd60e51b8152600401610b1890612fef565b6001600160a01b038116611cc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b18565b610fa38161229c565b60005b81518110156118bd57611d028484848481518110611cf557611cf56131ca565b6020026020010151610e0f565b80611d0c8161316f565b915050611cd5565b6005546001600160a01b03163314611d3e5760405162461bcd60e51b8152600401610b1890612fef565b8051611373906011906020840190612785565b60006001600160e01b031982166380ac58cd60e01b1480611d8257506001600160e01b03198216635b5e139f60e01b145b80610a1857506301ffc9a760e01b6001600160e01b0319831614610a18565b60025460009082108015610a18575060006001600160a01b031660028381548110611dce57611dce6131ca565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e20826113c1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b03841660009081526008602052604081205490918391611e8390866130d2565b611e8d91906130be565b611bb491906130f1565b80471015611ee75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b18565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f34576040519150601f19603f3d011682016040523d82523d6000602084013e611f39565b606091505b5050905080610c4e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b18565b6000611fbb82611da1565b61201c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b18565b6000612027836113c1565b9050806001600160a01b0316846001600160a01b031614806120625750836001600160a01b031661205784610ab0565b6001600160a01b0316145b80611bb45750611bb48185611ac9565b826001600160a01b0316612085826113c1565b6001600160a01b0316146120ed5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b18565b6001600160a01b03821661214f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b18565b61215a600082611deb565b816002828154811061216e5761216e6131ca565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b60006121d3826113c1565b90506121e0600083611deb565b6000600283815481106121f5576121f56131ca565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c4e90849061249b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612375848484612072565b6123818484848461256d565b6118bd5760405162461bcd60e51b8152600401610b1890612f0c565b6060816123c15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123eb57806123d58161316f565b91506123e49050600a836130be565b91506123c5565b60008167ffffffffffffffff811115612406576124066131e0565b6040519080825280601f01601f191660200182016040528015612430576020820181803683370190505b5090505b8415611bb4576124456001836130f1565b9150612452600a8661318a565b61245d9060306130a6565b60f81b818381518110612472576124726131ca565b60200101906001600160f81b031916908160001a905350612494600a866130be565b9450612434565b60006124f0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661267a9092919063ffffffff16565b805190915015610c4e578080602001905181019061250e9190612bd7565b610c4e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610b18565b60006001600160a01b0384163b1561266f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125b1903390899088908890600401612e2d565b602060405180830381600087803b1580156125cb57600080fd5b505af19250505080156125fb575060408051601f3d908101601f191682019092526125f891810190612c11565b60015b612655573d808015612629576040519150601f19603f3d011682016040523d82523d6000602084013e61262e565b606091505b50805161264d5760405162461bcd60e51b8152600401610b1890612f0c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bb4565b506001949350505050565b6060611bb4848460008585843b6126d35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b18565b600080866001600160a01b031685876040516126ef9190612db1565b60006040518083038185875af1925050503d806000811461272c576040519150601f19603f3d011682016040523d82523d6000602084013e612731565b606091505b509150915061274182828661274c565b979650505050505050565b6060831561275b5750816112c2565b82511561276b5782518084602001fd5b8160405162461bcd60e51b8152600401610b189190612eae565b82805461279190613134565b90600052602060002090601f0160209004810192826127b357600085556127f9565b82601f106127cc57805160ff19168380011785556127f9565b828001600101855582156127f9579182015b828111156127f95782518255916020019190600101906127de565b506113329291505b808211156113325760008155600101612801565b600067ffffffffffffffff83111561282f5761282f6131e0565b612842601f8401601f1916602001613075565b905082815283838301111561285657600080fd5b828260208301376000602084830101529392505050565b600082601f83011261287e57600080fd5b8135602067ffffffffffffffff82111561289a5761289a6131e0565b8160051b6128a9828201613075565b8381528281019086840183880185018910156128c457600080fd5b600093505b858410156128e75780358352600193909301929184019184016128c9565b50979650505050505050565b600082601f83011261290457600080fd5b6112c283833560208501612815565b60006020828403121561292557600080fd5b81356112c2816131f6565b6000806040838503121561294357600080fd5b823561294e816131f6565b9150602083013561295e816131f6565b809150509250929050565b60008060006060848603121561297e57600080fd5b8335612989816131f6565b92506020840135612999816131f6565b9150604084013567ffffffffffffffff8111156129b557600080fd5b6129c18682870161286d565b9150509250925092565b600080600080608085870312156129e157600080fd5b84356129ec816131f6565b935060208501356129fc816131f6565b9250604085013567ffffffffffffffff80821115612a1957600080fd5b612a258883890161286d565b93506060870135915080821115612a3b57600080fd5b50612a48878288016128f3565b91505092959194509250565b600080600060608486031215612a6957600080fd5b8335612a74816131f6565b92506020840135612a84816131f6565b929592945050506040919091013590565b60008060008060808587031215612aab57600080fd5b8435612ab6816131f6565b93506020850135612ac6816131f6565b925060408501359150606085013567ffffffffffffffff811115612ae957600080fd5b612a48878288016128f3565b600080600060408486031215612b0a57600080fd5b8335612b15816131f6565b9250602084013567ffffffffffffffff80821115612b3257600080fd5b818601915086601f830112612b4657600080fd5b813581811115612b5557600080fd5b8760208260051b8501011115612b6a57600080fd5b6020830194508093505050509250925092565b60008060408385031215612b9057600080fd5b8235612b9b816131f6565b9150602083013561295e8161320b565b60008060408385031215612bbe57600080fd5b8235612bc9816131f6565b946020939093013593505050565b600060208284031215612be957600080fd5b81516112c28161320b565b600060208284031215612c0657600080fd5b81356112c281613219565b600060208284031215612c2357600080fd5b81516112c281613219565b600060208284031215612c4057600080fd5b81516112c2816131f6565b600060208284031215612c5d57600080fd5b813567ffffffffffffffff811115612c7457600080fd5b8201601f81018413612c8557600080fd5b611bb484823560208401612815565b600060208284031215612ca657600080fd5b5035919050565b600060208284031215612cbf57600080fd5b5051919050565b60008060408385031215612cd957600080fd5b82359150602083013561295e816131f6565b60008151808452612d03816020860160208601613108565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612d3157607f831692505b6020808410821415612d5357634e487b7160e01b600052602260045260246000fd5b818015612d675760018114612d7857612da5565b60ff19861689528489019650612da5565b60008881526020902060005b86811015612d9d5781548b820152908501908301612d84565b505084890196505b50505050505092915050565b60008251612dc3818460208701613108565b9190910192915050565b6000612dd98285612d17565b8351612de9818360208801613108565b64173539b7b760d91b9101908152600501949350505050565b6000612e0e8284612d17565b6e3ab73932bb32b0b632b2173539b7b760891b8152600f019392505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e6090830184612ceb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ea257835183529284019291840191600101612e86565b50909695505050505050565b6020815260006112c26020830184612ceb565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561309e5761309e6131e0565b604052919050565b600082198211156130b9576130b961319e565b500190565b6000826130cd576130cd6131b4565b500490565b60008160001904831182151516156130ec576130ec61319e565b500290565b6000828210156131035761310361319e565b500390565b60005b8381101561312357818101518382015260200161310b565b838111156118bd5750506000910152565b600181811c9082168061314857607f821691505b6020821081141561316957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131835761318361319e565b5060010190565b600082613199576131996131b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610fa357600080fd5b8015158114610fa357600080fd5b6001600160e01b031981168114610fa357600080fdfea264697066735822122000b15c8ff6fdddeff891cb34fed4bd2fd943343aa5b94a5ed44e4c014dfe187064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fd041d4ee464ba0fad5d627f599702bec3cb3d920000000000000000000000003c9da47e992949d2e1056763d9c7abddfee9e9de000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000014

-----Decoded View---------------
Arg [0] : _payees (address[]): 0xfd041d4Ee464bA0FaD5D627f599702BEC3CB3d92,0x3c9dA47e992949d2E1056763d9C7abdDFeE9e9DE
Arg [1] : _paymentShares (uint256[]): 80,20

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 000000000000000000000000fd041d4ee464ba0fad5d627f599702bec3cb3d92
Arg [4] : 0000000000000000000000003c9da47e992949d2e1056763d9c7abddfee9e9de
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000014


Deployed Bytecode Sourcemap

148:5053:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216:40:13;719:10:1;3216:40:13;;;-1:-1:-1;;;;;12272:32:16;;;12254:51;;3246:9:13;12336:2:16;12321:18;;12314:34;12227:18;3216:40:13;;;;;;;148:5053:2;;;;;529:222:5;;;;;;;;;;-1:-1:-1;529:222:5;;;;;:::i;:::-;;:::i;:::-;;;13933:14:16;;13926:22;13908:41;;13896:2;13881:18;529:222:5;;;;;;;;2159:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2942:295::-;;;;;;;;;;-1:-1:-1;2942:295:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12028:32:16;;;12010:51;;11998:2;11983:18;2942:295:4;11864:203:16;2480:401:4;;;;;;;;;;-1:-1:-1;2480:401:4;;;;;:::i;:::-;;:::i;:::-;;692:38:2;;;;;;;;;;;;;:::i;822:108:5:-;;;;;;;;;;-1:-1:-1;909:7:5;:14;822:108;;;26683:25:16;;;26671:2;26656:18;822:108:5;26537:177:16;4944:553:13;;;;;;;;;;-1:-1:-1;4944:553:13;;;;;:::i;:::-;;:::i;630:55:2:-;;;;;;;;;;;;684:1;630:55;;3956:364:4;;;;;;;;;;-1:-1:-1;3956:364:4;;;;;:::i;:::-;;:::i;1283:478:5:-;;;;;;;;;;-1:-1:-1;1283:478:5;;;;;:::i;:::-;;:::i;369:58:2:-;;;;;;;;;;;;423:4;369:58;;3341:89:13;;;;;;;;;;-1:-1:-1;3411:12:13;;3341:89;;1289:77:2;;;;;;;;;;;;;:::i;558:65::-;;;;;;;;;;;;;;;;4433:133:13;;;;;;;;;;-1:-1:-1;4433:133:13;;;;;:::i;:::-;-1:-1:-1;;;;;4529:21:13;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;4386:179:4;;;;;;;;;;-1:-1:-1;4386:179:4;;;;;:::i;:::-;;:::i;3375:155:2:-;;;;;;;;;;-1:-1:-1;3375:155:2;;;;;:::i;:::-;;:::i;3536:391::-;;;;;;;;;;-1:-1:-1;3536:391:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5758:628:13:-;;;;;;;;;;-1:-1:-1;5758:628:13;;;;;:::i;:::-;;:::i;433:56:2:-;;;;;;;;;;;;;;;;4412:264;;;;;;;;;;-1:-1:-1;4412:264:2;;;;;:::i;:::-;;:::i;1002:202:5:-;;;;;;;;;;-1:-1:-1;1002:202:5;;;;;:::i;:::-;;:::i;221:59:2:-;;;;;;;;;;-1:-1:-1;221:59:2;;;;;;;;1187:96;;;;;;;;;;-1:-1:-1;1187:96:2;;;;;:::i;:::-;;:::i;4155:251::-;;;;;;;;;;-1:-1:-1;4155:251:2;;;;;:::i;:::-;;:::i;880:44::-;;;;;;;;;;-1:-1:-1;880:44:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;1784:313:4;;;;;;;;;;-1:-1:-1;1784:313:4;;;;;:::i;:::-;;:::i;736:35:2:-;;;;;;;;;;;;;:::i;1350:377:4:-;;;;;;;;;;-1:-1:-1;1350:377:4;;;;;:::i;:::-;;:::i;1661:101:12:-;;;;;;;;;;;;;:::i;4652:98:13:-;;;;;;;;;;-1:-1:-1;4652:98:13;;;;;:::i;:::-;;:::i;1029:85:12:-;;;;;;;;;;-1:-1:-1;1101:6:12;;-1:-1:-1;;;;;1101:6:12;1029:85;;2321:102:4;;;;;;;;;;;;;:::i;4163:107:13:-;;;;;;;;;;-1:-1:-1;4163:107:13;;;;;:::i;:::-;-1:-1:-1;;;;;4245:18:13;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;930:47:2;;;;;;;;;;-1:-1:-1;930:47:2;;;;;:::i;:::-;;;;;;;;;;;;;;2202:783;;;;;;:::i;:::-;;:::i;3304:318:4:-;;;;;;;;;;-1:-1:-1;3304:318:4;;;;;:::i;:::-;;:::i;4631:354::-;;;;;;;;;;-1:-1:-1;4631:354:4;;;;;:::i;:::-;;:::i;2991:378:2:-;;;;;;;;;;-1:-1:-1;2991:378:2;;;;;:::i;:::-;;:::i;1486:386::-;;;;;;;;;;-1:-1:-1;1486:386:2;;;;;:::i;:::-;;:::i;777:96::-;;;;;;;;;;-1:-1:-1;777:96:2;;;;-1:-1:-1;;;;;777:96:2;;;3966:103:13;;;;;;;;;;-1:-1:-1;3966:103:13;;;;;:::i;:::-;-1:-1:-1;;;;;4046:16:13;4020:7;4046:16;;;:7;:16;;;;;;;3966:103;1878:144:2;;;;;;;;;;-1:-1:-1;1878:144:2;;;;;:::i;:::-;;:::i;3763:117:13:-;;;;;;;;;;-1:-1:-1;3763:117:13;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:13;3821:7;3847:26;;;:19;:26;;;;;;;3763:117;3519:93;;;;;;;;;;-1:-1:-1;3591:14:13;;3519:93;;4682:360:2;;;;;;;;;;-1:-1:-1;4682:360:2;;;;;:::i;:::-;;:::i;2028:168::-;;;;;;;;;;-1:-1:-1;2028:168:2;;;;;:::i;:::-;;:::i;1911:198:12:-;;;;;;;;;;-1:-1:-1;1911:198:12;;;;;:::i;:::-;;:::i;3933:216:2:-;;;;;;;;;;-1:-1:-1;3933:216:2;;;;;:::i;:::-;;:::i;496:56::-;;;;;;;;;;;;550:2;496:56;;286:55;;;;;;;;;;;;;;;;1372:108;;;;;;;;;;-1:-1:-1;1372:108:2;;;;;:::i;:::-;;:::i;529:222:5:-;631:4;-1:-1:-1;;;;;;654:50:5;;-1:-1:-1;;;654:50:5;;:90;;;708:36;732:11;708:23;:36::i;:::-;647:97;529:222;-1:-1:-1;;529:222:5:o;2159:98:4:-;2213:13;2245:5;2238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2159:98;:::o;2942:295::-;3058:7;3102:16;3110:7;3102;:16::i;:::-;3081:107;;;;-1:-1:-1;;;3081:107:4;;21461:2:16;3081:107:4;;;21443:21:16;21500:2;21480:18;;;21473:30;21539:34;21519:18;;;21512:62;-1:-1:-1;;;21590:18:16;;;21583:42;21642:19;;3081:107:4;;;;;;;;;-1:-1:-1;3206:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;3206:24:4;;2942:295::o;2480:401::-;2560:13;2576:23;2591:7;2576:14;:23::i;:::-;2560:39;;2623:5;-1:-1:-1;;;;;2617:11:4;:2;-1:-1:-1;;;;;2617:11:4;;;2609:57;;;;-1:-1:-1;;;2609:57:4;;23686:2:16;2609:57:4;;;23668:21:16;23725:2;23705:18;;;23698:30;23764:34;23744:18;;;23737:62;-1:-1:-1;;;23815:18:16;;;23808:31;23856:19;;2609:57:4;23484:397:16;2609:57:4;719:10:1;-1:-1:-1;;;;;2698:21:4;;;;:62;;-1:-1:-1;2723:37:4;2740:5;719:10:1;4682:360:2;:::i;2723:37:4:-;2677:165;;;;-1:-1:-1;;;2677:165:4;;19513:2:16;2677:165:4;;;19495:21:16;19552:2;19532:18;;;19525:30;19591:34;19571:18;;;19564:62;19662:26;19642:18;;;19635:54;19706:19;;2677:165:4;19311:420:16;2677:165:4;2853:21;2862:2;2866:7;2853:8;:21::i;:::-;2550:331;2480:401;;:::o;692:38:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4944:553:13:-;-1:-1:-1;;;;;5019:16:13;;5038:1;5019:16;;;:7;:16;;;;;;5011:71;;;;-1:-1:-1;;;5011:71:13;;;;;;;:::i;:::-;5093:21;5141:15;3591:14;;;3519:93;5141:15;5117:39;;:21;:39;:::i;:::-;5093:63;;5166:15;5184:58;5200:7;5209:13;5224:17;5233:7;-1:-1:-1;;;;;4245:18:13;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;5224:17;5184:15;:58::i;:::-;5166:76;-1:-1:-1;5261:12:13;5253:68;;;;-1:-1:-1;;;5253:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;5332:18:13;;;;;;:9;:18;;;;;:29;;5354:7;;5332:18;:29;;5354:7;;5332:29;:::i;:::-;;;;;;;;5389:7;5371:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;5407:35:13;;-1:-1:-1;5425:7:13;5434;5407:17;:35::i;:::-;5457:33;;;-1:-1:-1;;;;;12272:32:16;;12254:51;;12336:2;12321:18;;12314:34;;;5457:33:13;;12227:18:16;5457:33:13;;;;;;;5001:496;;4944:553;:::o;3956:364:4:-;4158:41;719:10:1;4177:12:4;4191:7;4158:18;:41::i;:::-;4137:137;;;;-1:-1:-1;;;4137:137:4;;;;;;;:::i;:::-;4285:28;4295:4;4301:2;4305:7;4285:9;:28::i;1283:478:5:-;1380:15;1423:16;1433:5;1423:9;:16::i;:::-;1415:5;:24;1407:80;;;;-1:-1:-1;;;1407:80:5;;;;;;;:::i;:::-;1498:10;1522:6;1518:173;1534:7;:14;1530:18;;1518:173;;;1580:7;1588:1;1580:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1571:19:5;;;1580:10;;1571:19;1568:113;;;1621:5;1612;:14;1609:57;;;1635:1;-1:-1:-1;1628:8:5;;-1:-1:-1;1628:8:5;1609:57;1659:7;;;;:::i;:::-;;;;1609:57;1550:3;;;;:::i;:::-;;;;1518:173;;;;1701:53;;-1:-1:-1;;;1701:53:5;;;;;;;:::i;1289:77:2:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1351:8:2::1;::::0;;-1:-1:-1;;1339:20:2;::::1;1351:8;::::0;;::::1;1350:9;1339:20;::::0;;1289:77::o;4386:179:4:-;4519:39;4536:4;4542:2;4546:7;4519:39;;;;;;;;;;;;:16;:39::i;3375:155:2:-;3432:41;719:10:1;3451:12:2;640:96:1;3432:41:2;3424:75;;;;-1:-1:-1;;;3424:75:2;;23336:2:16;3424:75:2;;;23318:21:16;23375:2;23355:18;;;23348:30;-1:-1:-1;;;23394:18:16;;;23387:51;23455:18;;3424:75:2;23134:345:16;3424:75:2;3509:14;3515:7;3509:5;:14::i;:::-;3375:155;:::o;3536:391::-;3596:16;3624:18;3645:17;3655:6;3645:9;:17::i;:::-;3624:38;-1:-1:-1;3676:15:2;3672:44;;3700:16;;;3714:1;3700:16;;;;;;;;;;;-1:-1:-1;3693:23:2;3536:391;-1:-1:-1;;;3536:391:2:o;3672:44::-;3727:25;3769:10;3755:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3755:25:2;;3727:53;;3795:9;3790:106;3810:10;3806:1;:14;3790:106;;;3855:30;3875:6;3883:1;3855:19;:30::i;:::-;3841:8;3850:1;3841:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;3822:3;;;;:::i;:::-;;;;3790:106;;5758:628:13;-1:-1:-1;;;;;5839:16:13;;5858:1;5839:16;;;:7;:16;;;;;;5831:71;;;;-1:-1:-1;;;5831:71:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:13;;5913:21;3847:26;;;:19;:26;;;;;;5937:30;;-1:-1:-1;;;5937:30:13;;5961:4;5937:30;;;12010:51:16;-1:-1:-1;;;;;5937:15:13;;;;;11983:18:16;;5937:30:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5913:77;;6000:15;6018:65;6034:7;6043:13;6058:24;6067:5;6074:7;-1:-1:-1;;;;;4529:21:13;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;6018:65;6000:83;-1:-1:-1;6102:12:13;6094:68;;;;-1:-1:-1;;;6094:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;6173:21:13;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;6207:7;;6173:21;:41;;6207:7;;6173:41;:::i;:::-;;;;-1:-1:-1;;;;;;;6224:26:13;;;;;;:19;:26;;;;;:37;;6254:7;;6224:26;:37;;6254:7;;6224:37;:::i;:::-;;;;-1:-1:-1;6272:47:13;;-1:-1:-1;6295:5:13;6302:7;6311;6272:22;:47::i;:::-;6334:45;;;-1:-1:-1;;;;;12272:32:16;;;12254:51;;12336:2;12321:18;;12314:34;;;6334:45:13;;;;;12227:18:16;6334:45:13;;;;;;;5821:565;;5758:628;;:::o;4412:264:2:-;4501:4;4520:9;4516:132;4531:20;;;4516:132;;;4600:7;-1:-1:-1;;;;;4575:32:2;:7;4583:9;;4593:1;4583:12;;;;;;;:::i;:::-;;;;;;;4575:21;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4575:21:2;:32;4572:65;;4632:5;4625:12;;;;;4572:65;4553:3;;;:::i;:::-;;;4516:132;;;;4665:4;4658:11;;4412:264;;;;;;:::o;1002:202:5:-;1112:7;:14;1077:7;;1104:22;;1096:79;;;;-1:-1:-1;;;1096:79:5;;25571:2:16;1096:79:5;;;25553:21:16;25610:2;25590:18;;;25583:30;25649:34;25629:18;;;25622:62;-1:-1:-1;;;25700:18:16;;;25693:42;25752:19;;1096:79:5;25369:408:16;1096:79:5;-1:-1:-1;1192:5:5;1002:202::o;1187:96:2:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1258:18:2;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1187:96:::0;:::o;4155:251::-;4284:9;4279:121;4303:9;:16;4299:1;:20;4279:121;;;4340:49;4357:5;4364:3;4369:9;4379:1;4369:12;;;;;;;;:::i;:::-;;;;;;;4383:5;4340:16;:49::i;:::-;4321:3;;;;:::i;:::-;;;;4279:121;;;;4155:251;;;;:::o;1784:313:4:-;1896:7;1919:13;1935:7;1943;1935:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1935:16:4;;-1:-1:-1;1982:19:4;1961:107;;;;-1:-1:-1;;;1961:107:4;;20349:2:16;1961:107:4;;;20331:21:16;20388:2;20368:18;;;20361:30;20427:34;20407:18;;;20400:62;-1:-1:-1;;;20478:18:16;;;20471:39;20527:19;;1961:107:4;20147:405:16;736:35:2;;;;;;;:::i;1350:377:4:-;1467:4;-1:-1:-1;;;;;1496:19:4;;1488:74;;;;-1:-1:-1;;;1488:74:4;;19938:2:16;1488:74:4;;;19920:21:16;19977:2;19957:18;;;19950:30;20016:34;19996:18;;;19989:62;-1:-1:-1;;;20067:18:16;;;20060:40;20117:19;;1488:74:4;19736:406:16;1488:74:4;1573:10;1598:6;1593:106;1610:7;:14;1606:18;;1593:106;;;1656:7;1664:1;1656:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1647:19:4;;;1656:10;;1647:19;1643:45;;;1681:7;;;:::i;:::-;;;1643:45;1626:3;;;:::i;:::-;;;1593:106;;;-1:-1:-1;1715:5:4;1350:377;-1:-1:-1;;1350:377:4:o;1661:101:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;4652:98:13:-;4703:7;4729;4737:5;4729:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4729:14:13;;4652:98;-1:-1:-1;;4652:98:13:o;2321:102:4:-;2377:13;2409:7;2402:14;;;;;:::i;2202:783:2:-;2278:7;:14;423:4;2310:19;2324:5;2278:14;2310:19;:::i;:::-;:33;;2302:65;;;;-1:-1:-1;;;2302:65:2;;22988:2:16;2302:65:2;;;22970:21:16;23027:2;23007:18;;;23000:30;-1:-1:-1;;;23046:18:16;;;23039:49;23105:18;;2302:65:2;22786:343:16;2302:65:2;2381:10;;2395:1;2381:15;:37;;;;;2415:3;2400:11;:18;;2381:37;2377:494;;;719:10:1;2442:29:2;;;;:15;:29;;;;;;684:1;;2442:37;;2474:5;;2442:37;:::i;:::-;:56;;2434:98;;;;-1:-1:-1;;;2434:98:2;;19155:2:16;2434:98:2;;;19137:21:16;19194:2;19174:18;;;19167:30;19233:31;19213:18;;;19206:59;19282:18;;2434:98:2;18953:353:16;2434:98:2;719:10:1;2547:29:2;;;;:15;:29;;;;;:38;;2580:5;;2547:29;:38;;2580:5;;2547:38;:::i;:::-;;;;-1:-1:-1;2377:494:2;;-1:-1:-1;2377:494:2;;2616:10;;2630:1;2616:15;2612:259;;;550:2;2655:5;:19;;2647:60;;;;-1:-1:-1;;;2647:60:2;;24856:2:16;2647:60:2;;;24838:21:16;24895:2;24875:18;;;24868:30;24934;24914:18;;;24907:58;24982:18;;2647:60:2;24654:352:16;2647:60:2;2751:9;2737:10;;2729:5;:18;;;;:::i;:::-;:31;2721:67;;;;-1:-1:-1;;;2721:67:2;;20759:2:16;2721:67:2;;;20741:21:16;20798:2;20778:18;;;20771:30;20837:25;20817:18;;;20810:53;20880:18;;2721:67:2;20557:347:16;2721:67:2;2612:259;;;2828:32;;-1:-1:-1;;;2828:32:2;;22235:2:16;2828:32:2;;;22217:21:16;22274:2;22254:18;;;22247:30;-1:-1:-1;;;22293:18:16;;;22286:44;22347:18;;2828:32:2;22033:338:16;2828:32:2;2893:6;2889:90;2905:5;2901:1;:9;2889:90;;;2932:36;719:10:1;2952:15:2;2966:1;2952:11;:15;:::i;:::-;2932:5;:36::i;:::-;2912:3;;;;:::i;:::-;;;;2889:90;;3304:318:4;-1:-1:-1;;;;;3434:24:4;;719:10:1;3434:24:4;;3426:62;;;;-1:-1:-1;;;3426:62:4;;16784:2:16;3426:62:4;;;16766:21:16;16823:2;16803:18;;;16796:30;16862:27;16842:18;;;16835:55;16907:18;;3426:62:4;16582:349:16;3426:62:4;719:10:1;3499:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;3499:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;3499:53:4;;;;;;;;;;3567:48;;13908:41:16;;;3499:42:4;;719:10:1;3567:48:4;;13881:18:16;3567:48:4;;;;;;;3304:318;;:::o;4631:354::-;4813:41;719:10:1;4846:7:4;4813:18;:41::i;:::-;4792:137;;;;-1:-1:-1;;;4792:137:4;;;;;;;:::i;:::-;4939:39;4953:4;4959:2;4963:7;4972:5;4939:13;:39::i;:::-;4631:354;;;;:::o;2991:378:2:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;3092:1:2::1;3084:4;3069:12;;:19;;;;:::i;:::-;:24;;3061:58;;;::::0;-1:-1:-1;;;3061:58:2;;24506:2:16;3061:58:2::1;::::0;::::1;24488:21:16::0;24545:2;24525:18;;;24518:30;-1:-1:-1;;;24564:18:16;;;24557:51;24625:18;;3061:58:2::1;24304:345:16::0;3061:58:2::1;3151:7;:14:::0;423:4:::1;3183:18;3197:4:::0;3151:14;3183:18:::1;:::i;:::-;:32;;3175:64;;;::::0;-1:-1:-1;;;3175:64:2;;14386:2:16;3175:64:2::1;::::0;::::1;14368:21:16::0;14425:2;14405:18;;;14398:30;-1:-1:-1;;;14444:18:16;;;14437:49;14503:18;;3175:64:2::1;14184:343:16::0;3175:64:2::1;3254:6;3249:84;3270:4;3266:1;:8;3249:84;;;3295:27;3301:3:::0;3306:15:::1;3320:1:::0;3306:11;:15:::1;:::i;3295:27::-;3276:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3249:84;;;;3358:4;3342:12;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;2991:378:2:o;1486:386::-;1581:8;;1552:13;;1581:8;;1577:289;;1646:7;1629:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;1614:60;;1486:386;;;:::o;1577:289::-;1721:17;1729:8;1721:7;:17::i;:::-;1713:51;;;;-1:-1:-1;;;1713:51:2;;21111:2:16;1713:51:2;;;21093:21:16;21150:2;21130:18;;;21123:30;-1:-1:-1;;;21169:18:16;;;21162:51;21230:18;;1713:51:2;20909:345:16;1713:51:2;1809:7;1818:26;1835:8;1818:16;:26::i;:::-;1792:62;;;;;;;;;:::i;1878:144::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1971:20:2::1;:44:::0;;-1:-1:-1;;;;;;1971:44:2::1;-1:-1:-1::0;;;;;1971:44:2;;;::::1;::::0;;;::::1;::::0;;1878:144::o;4682:360::-;4854:20;;4897:29;;-1:-1:-1;;;4897:29:2;;-1:-1:-1;;;;;12028:32:16;;;4897:29:2;;;12010:51:16;4780:4:2;;4854:20;;;4889:50;;;;4854:20;;4897:21;;11983:18:16;;4897:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4889:50:2;;:76;;;-1:-1:-1;;;;;;4943:22:2;;;;;;:12;:22;;;;;;;;4889:76;4885:93;;;4974:4;4967:11;;;;;4885:93;-1:-1:-1;;;;;3852:25:4;;;3825:4;3852:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4995:40:2;4988:47;4682:360;-1:-1:-1;;;;4682:360:2:o;2028:168::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;2119:1:2::1;2105:10;;:15;;:34;;;;-1:-1:-1::0;2124:15:2;2105:34:::1;2097:62;;;::::0;-1:-1:-1;;;2097:62:2;;26395:2:16;2097:62:2::1;::::0;::::1;26377:21:16::0;26434:2;26414:18;;;26407:30;-1:-1:-1;;;26453:18:16;;;26446:45;26508:18;;2097:62:2::1;26193:339:16::0;2097:62:2::1;2169:10;:20:::0;2028:168::o;1911:198:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:12;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:12;;15565:2:16;1991:73:12::1;::::0;::::1;15547:21:16::0;15604:2;15584:18;;;15577:30;15643:34;15623:18;;;15616:62;-1:-1:-1;;;15694:18:16;;;15687:36;15740:19;;1991:73:12::1;15363:402:16::0;1991:73:12::1;2074:28;2093:8;2074:18;:28::i;3933:216:2:-:0;4038:9;4033:110;4057:9;:16;4053:1;:20;4033:110;;;4094:38;4107:5;4114:3;4119:9;4129:1;4119:12;;;;;;;;:::i;:::-;;;;;;;4094;:38::i;:::-;4075:3;;;;:::i;:::-;;;;4033:110;;1372:108;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1449:24:2;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;947:344:4:-:0;1089:4;-1:-1:-1;;;;;;1128:40:4;;-1:-1:-1;;;1128:40:4;;:104;;-1:-1:-1;;;;;;;1184:48:4;;-1:-1:-1;;;1184:48:4;1128:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:3;;;1248:36:4;829:155:3;6491:153:4;6589:7;:14;6556:4;;6579:24;;:58;;;;;6635:1;-1:-1:-1;;;;;6607:30:4;:7;6615;6607:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6607:16:4;:30;;6572:65;6491:153;-1:-1:-1;;6491:153:4:o;10379:171::-;10453:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10453:29:4;-1:-1:-1;;;;;10453:29:4;;;;;;;;:24;;10506:23;10453:24;10506:14;:23::i;:::-;-1:-1:-1;;;;;10497:46:4;;;;;;;;;;;10379:171;;:::o;6558:242:13:-;6763:12;;-1:-1:-1;;;;;6743:16:13;;6700:7;6743:16;;;:7;:16;;;;;;6700:7;;6778:15;;6727:32;;:13;:32;:::i;:::-;6726:49;;;;:::i;:::-;:67;;;;:::i;2065:312:0:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:0;;17565:2:16;2146:73:0;;;17547:21:16;17604:2;17584:18;;;17577:30;17643:31;17623:18;;;17616:59;17692:18;;2146:73:0;17363:353:16;2146:73:0;2231:12;2249:9;-1:-1:-1;;;;;2249:14:0;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:0;;17138:2:16;2292:78:0;;;17120:21:16;17177:2;17157:18;;;17150:30;17216:34;17196:18;;;17189:62;17287:28;17267:18;;;17260:56;17333:19;;2292:78:0;16936:422:16;6802:438:4;6927:4;6968:16;6976:7;6968;:16::i;:::-;6947:107;;;;-1:-1:-1;;;6947:107:4;;18330:2:16;6947:107:4;;;18312:21:16;18369:2;18349:18;;;18342:30;18408:34;18388:18;;;18381:62;-1:-1:-1;;;18459:18:16;;;18452:42;18511:19;;6947:107:4;18128:408:16;6947:107:4;7064:13;7080:23;7095:7;7080:14;:23::i;:::-;7064:39;;7132:5;-1:-1:-1;;;;;7121:16:4;:7;-1:-1:-1;;;;;7121:16:4;;:63;;;;7177:7;-1:-1:-1;;;;;7153:31:4;:20;7165:7;7153:11;:20::i;:::-;-1:-1:-1;;;;;7153:31:4;;7121:63;:111;;;;7200:32;7217:5;7224:7;7200:16;:32::i;9733:535::-;9900:4;-1:-1:-1;;;;;9873:31:4;:23;9888:7;9873:14;:23::i;:::-;-1:-1:-1;;;;;9873:31:4;;9852:119;;;;-1:-1:-1;;;9852:119:4;;22578:2:16;9852:119:4;;;22560:21:16;22617:2;22597:18;;;22590:30;22656:34;22636:18;;;22629:62;-1:-1:-1;;;22707:18:16;;;22700:39;22756:19;;9852:119:4;22376:405:16;9852:119:4;-1:-1:-1;;;;;9989:16:4;;9981:65;;;;-1:-1:-1;;;9981:65:4;;16379:2:16;9981:65:4;;;16361:21:16;16418:2;16398:18;;;16391:30;16457:34;16437:18;;;16430:62;-1:-1:-1;;;16508:18:16;;;16501:34;16552:19;;9981:65:4;16177:400:16;9981:65:4;10158:29;10175:1;10179:7;10158:8;:29::i;:::-;10216:2;10197:7;10205;10197:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;10197:21:4;-1:-1:-1;;;;;10197:21:4;;;;;;10234:27;;10253:7;;10234:27;;;;;;;;;;10197:16;10234:27;9733:535;;;:::o;9087:322::-;9146:13;9162:23;9177:7;9162:14;:23::i;:::-;9146:39;;9282:29;9299:1;9303:7;9282:8;:29::i;:::-;9348:1;9321:7;9329;9321:16;;;;;;;;:::i;:::-;;;;;;;;;:29;;-1:-1:-1;;;;;;9321:29:4;-1:-1:-1;;;;;9321:29:4;;;;;;9366:36;;9394:7;;9366:36;;;;;9321:16;;9366:36;9136:273;9087:322;:::o;687:205:14:-;826:58;;;-1:-1:-1;;;;;12272:32:16;;826:58:14;;;12254:51:16;12321:18;;;;12314:34;;;826:58:14;;;;;;;;;;12227:18:16;;;;826:58:14;;;;;;;;-1:-1:-1;;;;;826:58:14;-1:-1:-1;;;826:58:14;;;799:86;;819:5;;799:19;:86::i;2263:187:12:-;2355:6;;;-1:-1:-1;;;;;2371:17:12;;;-1:-1:-1;;;;;;2371:17:12;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;5048:151:2:-;5128:7;:16;;;;;;;-1:-1:-1;5128:16:2;;;;;;;-1:-1:-1;;;;;;5128:16:2;-1:-1:-1;;;;;5128:16:2;;;;;;;;5159:33;;5184:7;;-1:-1:-1;5159:33:2;;-1:-1:-1;;5159:33:2;5048:151;;:::o;5847:341:4:-;5998:28;6008:4;6014:2;6018:7;5998:9;:28::i;:::-;6057:48;6080:4;6086:2;6090:7;6099:5;6057:22;:48::i;:::-;6036:145;;;;-1:-1:-1;;;6036:145:4;;;;;;;:::i;328:703:15:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:15;;;;;;;;;;;;-1:-1:-1;;;627:10:15;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:15;;-1:-1:-1;773:2:15;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:15;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:15;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:15;;;;;;;;-1:-1:-1;972:11:15;981:2;972:11;;:::i;:::-;;;844:150;;3193:706:14;3612:23;3638:69;3666:4;3638:69;;;;;;;;;;;;;;;;;3646:5;-1:-1:-1;;;;;3638:27:14;;;:69;;;;;:::i;:::-;3721:17;;3612:95;;-1:-1:-1;3721:21:14;3717:176;;3816:10;3805:30;;;;;;;;;;;;:::i;:::-;3797:85;;;;-1:-1:-1;;;3797:85:14;;25984:2:16;3797:85:14;;;25966:21:16;26023:2;26003:18;;;25996:30;26062:34;26042:18;;;26035:62;-1:-1:-1;;;26113:18:16;;;26106:40;26163:19;;3797:85:14;25782:406:16;11103:950:4;11253:4;-1:-1:-1;;;;;11273:13:4;;1087:20:0;1133:8;11269:778:4;;11324:170;;-1:-1:-1;;;11324:170:4;;-1:-1:-1;;;;;11324:36:4;;;;;:170;;719:10:1;;11416:4:4;;11442:7;;11471:5;;11324:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11324:170:4;;;;;;;;-1:-1:-1;;11324:170:4;;;;;;;;;;;;:::i;:::-;;;11304:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11673:13:4;;11669:312;;11715:106;;-1:-1:-1;;;11715:106:4;;;;;;;:::i;11669:312::-;11933:6;11927:13;11918:6;11914:2;11910:15;11903:38;11304:691;-1:-1:-1;;;;;;11556:51:4;-1:-1:-1;;;11556:51:4;;-1:-1:-1;11549:58:4;;11269:778;-1:-1:-1;12032:4:4;11103:950;;;;;;:::o;3514:223:0:-;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3647;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:0;;25213:2:16;4881:60:0;;;25195:21:16;25252:2;25232:18;;;25225:30;25291:31;25271:18;;;25264:59;25340:18;;4881:60:0;25011:353:16;4881:60:0;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:0;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:0:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:0;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:16;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:16;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:723::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;586:6;573:20;612:4;635:18;631:2;628:26;625:52;;;657:18;;:::i;:::-;703:2;700:1;696:10;726:28;750:2;746;742:11;726:28;:::i;:::-;788:15;;;819:12;;;;851:15;;;885;;;881:24;;878:33;-1:-1:-1;875:53:16;;;924:1;921;914:12;875:53;946:1;937:10;;956:163;970:2;967:1;964:9;956:163;;;1027:17;;1015:30;;988:1;981:9;;;;;1065:12;;;;1097;;956:163;;;-1:-1:-1;1137:5:16;425:723;-1:-1:-1;;;;;;;425:723:16:o;1153:220::-;1195:5;1248:3;1241:4;1233:6;1229:17;1225:27;1215:55;;1266:1;1263;1256:12;1215:55;1288:79;1363:3;1354:6;1341:20;1334:4;1326:6;1322:17;1288:79;:::i;1378:247::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;1545:9;1532:23;1564:31;1589:5;1564:31;:::i;1890:388::-;1958:6;1966;2019:2;2007:9;1998:7;1994:23;1990:32;1987:52;;;2035:1;2032;2025:12;1987:52;2074:9;2061:23;2093:31;2118:5;2093:31;:::i;:::-;2143:5;-1:-1:-1;2200:2:16;2185:18;;2172:32;2213:33;2172:32;2213:33;:::i;:::-;2265:7;2255:17;;;1890:388;;;;;:::o;2283:624::-;2385:6;2393;2401;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2509:9;2496:23;2528:31;2553:5;2528:31;:::i;:::-;2578:5;-1:-1:-1;2635:2:16;2620:18;;2607:32;2648:33;2607:32;2648:33;:::i;:::-;2700:7;-1:-1:-1;2758:2:16;2743:18;;2730:32;2785:18;2774:30;;2771:50;;;2817:1;2814;2807:12;2771:50;2840:61;2893:7;2884:6;2873:9;2869:22;2840:61;:::i;:::-;2830:71;;;2283:624;;;;;:::o;2912:844::-;3032:6;3040;3048;3056;3109:3;3097:9;3088:7;3084:23;3080:33;3077:53;;;3126:1;3123;3116:12;3077:53;3165:9;3152:23;3184:31;3209:5;3184:31;:::i;:::-;3234:5;-1:-1:-1;3291:2:16;3276:18;;3263:32;3304:33;3263:32;3304:33;:::i;:::-;3356:7;-1:-1:-1;3414:2:16;3399:18;;3386:32;3437:18;3467:14;;;3464:34;;;3494:1;3491;3484:12;3464:34;3517:61;3570:7;3561:6;3550:9;3546:22;3517:61;:::i;:::-;3507:71;;3631:2;3620:9;3616:18;3603:32;3587:48;;3660:2;3650:8;3647:16;3644:36;;;3676:1;3673;3666:12;3644:36;;3699:51;3742:7;3731:8;3720:9;3716:24;3699:51;:::i;:::-;3689:61;;;2912:844;;;;;;;:::o;3761:456::-;3838:6;3846;3854;3907:2;3895:9;3886:7;3882:23;3878:32;3875:52;;;3923:1;3920;3913:12;3875:52;3962:9;3949:23;3981:31;4006:5;3981:31;:::i;:::-;4031:5;-1:-1:-1;4088:2:16;4073:18;;4060:32;4101:33;4060:32;4101:33;:::i;:::-;3761:456;;4153:7;;-1:-1:-1;;;4207:2:16;4192:18;;;;4179:32;;3761:456::o;4222:665::-;4317:6;4325;4333;4341;4394:3;4382:9;4373:7;4369:23;4365:33;4362:53;;;4411:1;4408;4401:12;4362:53;4450:9;4437:23;4469:31;4494:5;4469:31;:::i;:::-;4519:5;-1:-1:-1;4576:2:16;4561:18;;4548:32;4589:33;4548:32;4589:33;:::i;:::-;4641:7;-1:-1:-1;4695:2:16;4680:18;;4667:32;;-1:-1:-1;4750:2:16;4735:18;;4722:32;4777:18;4766:30;;4763:50;;;4809:1;4806;4799:12;4763:50;4832:49;4873:7;4864:6;4853:9;4849:22;4832:49;:::i;4892:750::-;4987:6;4995;5003;5056:2;5044:9;5035:7;5031:23;5027:32;5024:52;;;5072:1;5069;5062:12;5024:52;5111:9;5098:23;5130:31;5155:5;5130:31;:::i;:::-;5180:5;-1:-1:-1;5236:2:16;5221:18;;5208:32;5259:18;5289:14;;;5286:34;;;5316:1;5313;5306:12;5286:34;5354:6;5343:9;5339:22;5329:32;;5399:7;5392:4;5388:2;5384:13;5380:27;5370:55;;5421:1;5418;5411:12;5370:55;5461:2;5448:16;5487:2;5479:6;5476:14;5473:34;;;5503:1;5500;5493:12;5473:34;5556:7;5551:2;5541:6;5538:1;5534:14;5530:2;5526:23;5522:32;5519:45;5516:65;;;5577:1;5574;5567:12;5516:65;5608:2;5604;5600:11;5590:21;;5630:6;5620:16;;;;;4892:750;;;;;:::o;5647:382::-;5712:6;5720;5773:2;5761:9;5752:7;5748:23;5744:32;5741:52;;;5789:1;5786;5779:12;5741:52;5828:9;5815:23;5847:31;5872:5;5847:31;:::i;:::-;5897:5;-1:-1:-1;5954:2:16;5939:18;;5926:32;5967:30;5926:32;5967:30;:::i;6034:315::-;6102:6;6110;6163:2;6151:9;6142:7;6138:23;6134:32;6131:52;;;6179:1;6176;6169:12;6131:52;6218:9;6205:23;6237:31;6262:5;6237:31;:::i;:::-;6287:5;6339:2;6324:18;;;;6311:32;;-1:-1:-1;;;6034:315:16:o;6354:245::-;6421:6;6474:2;6462:9;6453:7;6449:23;6445:32;6442:52;;;6490:1;6487;6480:12;6442:52;6522:9;6516:16;6541:28;6563:5;6541:28;:::i;6604:245::-;6662:6;6715:2;6703:9;6694:7;6690:23;6686:32;6683:52;;;6731:1;6728;6721:12;6683:52;6770:9;6757:23;6789:30;6813:5;6789:30;:::i;6854:249::-;6923:6;6976:2;6964:9;6955:7;6951:23;6947:32;6944:52;;;6992:1;6989;6982:12;6944:52;7024:9;7018:16;7043:30;7067:5;7043:30;:::i;7783:279::-;7881:6;7934:2;7922:9;7913:7;7909:23;7905:32;7902:52;;;7950:1;7947;7940:12;7902:52;7982:9;7976:16;8001:31;8026:5;8001:31;:::i;8067:450::-;8136:6;8189:2;8177:9;8168:7;8164:23;8160:32;8157:52;;;8205:1;8202;8195:12;8157:52;8245:9;8232:23;8278:18;8270:6;8267:30;8264:50;;;8310:1;8307;8300:12;8264:50;8333:22;;8386:4;8378:13;;8374:27;-1:-1:-1;8364:55:16;;8415:1;8412;8405:12;8364:55;8438:73;8503:7;8498:2;8485:16;8480:2;8476;8472:11;8438:73;:::i;8522:180::-;8581:6;8634:2;8622:9;8613:7;8609:23;8605:32;8602:52;;;8650:1;8647;8640:12;8602:52;-1:-1:-1;8673:23:16;;8522:180;-1:-1:-1;8522:180:16:o;8707:184::-;8777:6;8830:2;8818:9;8809:7;8805:23;8801:32;8798:52;;;8846:1;8843;8836:12;8798:52;-1:-1:-1;8869:16:16;;8707:184;-1:-1:-1;8707:184:16:o;8896:315::-;8964:6;8972;9025:2;9013:9;9004:7;9000:23;8996:32;8993:52;;;9041:1;9038;9031:12;8993:52;9077:9;9064:23;9054:33;;9137:2;9126:9;9122:18;9109:32;9150:31;9175:5;9150:31;:::i;9216:257::-;9257:3;9295:5;9289:12;9322:6;9317:3;9310:19;9338:63;9394:6;9387:4;9382:3;9378:14;9371:4;9364:5;9360:16;9338:63;:::i;:::-;9455:2;9434:15;-1:-1:-1;;9430:29:16;9421:39;;;;9462:4;9417:50;;9216:257;-1:-1:-1;;9216:257:16:o;9478:973::-;9563:12;;9528:3;;9618:1;9638:18;;;;9691;;;;9718:61;;9772:4;9764:6;9760:17;9750:27;;9718:61;9798:2;9846;9838:6;9835:14;9815:18;9812:38;9809:161;;;9892:10;9887:3;9883:20;9880:1;9873:31;9927:4;9924:1;9917:15;9955:4;9952:1;9945:15;9809:161;9986:18;10013:104;;;;10131:1;10126:319;;;;9979:466;;10013:104;-1:-1:-1;;10046:24:16;;10034:37;;10091:16;;;;-1:-1:-1;10013:104:16;;10126:319;27072:1;27065:14;;;27109:4;27096:18;;10220:1;10234:165;10248:6;10245:1;10242:13;10234:165;;;10326:14;;10313:11;;;10306:35;10369:16;;;;10263:10;;10234:165;;;10238:3;;10428:6;10423:3;10419:16;10412:23;;9979:466;;;;;;;9478:973;;;;:::o;10456:274::-;10585:3;10623:6;10617:13;10639:53;10685:6;10680:3;10673:4;10665:6;10661:17;10639:53;:::i;:::-;10708:16;;;;;10456:274;-1:-1:-1;;10456:274:16:o;10735:543::-;11012:3;11040:38;11074:3;11066:6;11040:38;:::i;:::-;11107:6;11101:13;11123:52;11168:6;11164:2;11157:4;11149:6;11145:17;11123:52;:::i;:::-;-1:-1:-1;;;11197:15:16;;11221:22;;;11270:1;11259:13;;10735:543;-1:-1:-1;;;;10735:543:16:o;11283:366::-;11512:3;11540:38;11574:3;11566:6;11540:38;:::i;:::-;-1:-1:-1;;;11587:29:16;;11640:2;11632:11;;11283:366;-1:-1:-1;;;11283:366:16:o;12359:488::-;-1:-1:-1;;;;;12628:15:16;;;12610:34;;12680:15;;12675:2;12660:18;;12653:43;12727:2;12712:18;;12705:34;;;12775:3;12770:2;12755:18;;12748:31;;;12553:4;;12796:45;;12821:19;;12813:6;12796:45;:::i;:::-;12788:53;12359:488;-1:-1:-1;;;;;;12359:488:16:o;13131:632::-;13302:2;13354:21;;;13424:13;;13327:18;;;13446:22;;;13273:4;;13302:2;13525:15;;;;13499:2;13484:18;;;13273:4;13568:169;13582:6;13579:1;13576:13;13568:169;;;13643:13;;13631:26;;13712:15;;;;13677:12;;;;13604:1;13597:9;13568:169;;;-1:-1:-1;13754:3:16;;13131:632;-1:-1:-1;;;;;;13131:632:16:o;13960:219::-;14109:2;14098:9;14091:21;14072:4;14129:44;14169:2;14158:9;14154:18;14146:6;14129:44;:::i;14532:407::-;14734:2;14716:21;;;14773:2;14753:18;;;14746:30;14812:34;14807:2;14792:18;;14785:62;-1:-1:-1;;;14878:2:16;14863:18;;14856:41;14929:3;14914:19;;14532:407::o;14944:414::-;15146:2;15128:21;;;15185:2;15165:18;;;15158:30;15224:34;15219:2;15204:18;;15197:62;-1:-1:-1;;;15290:2:16;15275:18;;15268:48;15348:3;15333:19;;14944:414::o;15770:402::-;15972:2;15954:21;;;16011:2;15991:18;;;15984:30;16050:34;16045:2;16030:18;;16023:62;-1:-1:-1;;;16116:2:16;16101:18;;16094:36;16162:3;16147:19;;15770:402::o;18541:407::-;18743:2;18725:21;;;18782:2;18762:18;;;18755:30;18821:34;18816:2;18801:18;;18794:62;-1:-1:-1;;;18887:2:16;18872:18;;18865:41;18938:3;18923:19;;18541:407::o;21672:356::-;21874:2;21856:21;;;21893:18;;;21886:30;21952:34;21947:2;21932:18;;21925:62;22019:2;22004:18;;21672:356::o;23886:413::-;24088:2;24070:21;;;24127:2;24107:18;;;24100:30;24166:34;24161:2;24146:18;;24139:62;-1:-1:-1;;;24232:2:16;24217:18;;24210:47;24289:3;24274:19;;23886:413::o;26719:275::-;26790:2;26784:9;26855:2;26836:13;;-1:-1:-1;;26832:27:16;26820:40;;26890:18;26875:34;;26911:22;;;26872:62;26869:88;;;26937:18;;:::i;:::-;26973:2;26966:22;26719:275;;-1:-1:-1;26719:275:16:o;27125:128::-;27165:3;27196:1;27192:6;27189:1;27186:13;27183:39;;;27202:18;;:::i;:::-;-1:-1:-1;27238:9:16;;27125:128::o;27258:120::-;27298:1;27324;27314:35;;27329:18;;:::i;:::-;-1:-1:-1;27363:9:16;;27258:120::o;27383:168::-;27423:7;27489:1;27485;27481:6;27477:14;27474:1;27471:21;27466:1;27459:9;27452:17;27448:45;27445:71;;;27496:18;;:::i;:::-;-1:-1:-1;27536:9:16;;27383:168::o;27556:125::-;27596:4;27624:1;27621;27618:8;27615:34;;;27629:18;;:::i;:::-;-1:-1:-1;27666:9:16;;27556:125::o;27686:258::-;27758:1;27768:113;27782:6;27779:1;27776:13;27768:113;;;27858:11;;;27852:18;27839:11;;;27832:39;27804:2;27797:10;27768:113;;;27899:6;27896:1;27893:13;27890:48;;;-1:-1:-1;;27934:1:16;27916:16;;27909:27;27686:258::o;27949:380::-;28028:1;28024:12;;;;28071;;;28092:61;;28146:4;28138:6;28134:17;28124:27;;28092:61;28199:2;28191:6;28188:14;28168:18;28165:38;28162:161;;;28245:10;28240:3;28236:20;28233:1;28226:31;28280:4;28277:1;28270:15;28308:4;28305:1;28298:15;28162:161;;27949:380;;;:::o;28334:135::-;28373:3;-1:-1:-1;;28394:17:16;;28391:43;;;28414:18;;:::i;:::-;-1:-1:-1;28461:1:16;28450:13;;28334:135::o;28474:112::-;28506:1;28532;28522:35;;28537:18;;:::i;:::-;-1:-1:-1;28571:9:16;;28474:112::o;28591:127::-;28652:10;28647:3;28643:20;28640:1;28633:31;28683:4;28680:1;28673:15;28707:4;28704:1;28697:15;28723:127;28784:10;28779:3;28775:20;28772:1;28765:31;28815:4;28812:1;28805:15;28839:4;28836:1;28829:15;28855:127;28916:10;28911:3;28907:20;28904:1;28897:31;28947:4;28944:1;28937:15;28971:4;28968:1;28961:15;28987:127;29048:10;29043:3;29039:20;29036:1;29029:31;29079:4;29076:1;29069:15;29103:4;29100:1;29093:15;29119:131;-1:-1:-1;;;;;29194:31:16;;29184:42;;29174:70;;29240:1;29237;29230:12;29255:118;29341:5;29334:13;29327:21;29320:5;29317:32;29307:60;;29363:1;29360;29353:12;29378:131;-1:-1:-1;;;;;;29452:32:16;;29442:43;;29432:71;;29499:1;29496;29489:12

Swarm Source

ipfs://00b15c8ff6fdddeff891cb34fed4bd2fd943343aa5b94a5ed44e4c014dfe1870
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.