ETH Price: $3,461.76 (-1.29%)
Gas: 4 Gwei

Token

The Furry Heads Genesis ()
 

Overview

Max Total Supply

44

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x553ad04A07a2D8eDF120182D95bf8De89C6ea845
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Furry Heads is the first story-driven NFT project using blockchain technology to tell an interactive story for users.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FurryHeadContract

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : FurryHeadContract.sol
// SPDX-License-Identifier: MIT
/*
 * TODO: before deploy:
 *  1. Check Checks-Effects-Interaction Pattern. (first checks, then calls to state variables, then external functions
 *  2. Small and modular
 *  3. Check Overflow possibilities
 *  4. Check tx.origin is not used
 *  5. Avoid variable loops
 *  6. avoid calling methods on msg.sender (Reentrancy issues)
 *  7. check result of methods before proceeding (call-stack-depth-errors may not fail, but return false)
 */
pragma solidity ^0.8.9;


import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";


contract OwnableDelegateProxy { }


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


contract FurryHeadContract is ERC1155Supply, AccessControl, Pausable, PaymentSplitter {

    uint256 public constant furryHeadPrice =         70000000000000000; //0.07 ETH
    uint256 public constant presaleFurryHeadPrice =  35000000000000000; //0.05 ETH
    uint256 public constant MINT_LIMIT = 5;

    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
    bytes32 public constant WHITELIST_MEMBER_ROLE = keccak256("WHITELIST_MEMBER_ROLE");

    uint public constant NOSALE_STAGE = 0;
    uint public constant PRESALE_STAGE = 1;
    uint public constant SALE_STAGE = 2;

    uint private _stage;
    uint256 private maxMints;
    uint256 currentMint;
    address proxyRegistryAddress;
    address[] private walletKeys;
    mapping(address => uint) private mintsPerWallet;

    constructor(
                address[] memory _payees, /* walletadresses for project-wallet, marketing-wallet, marco-wallet, rndeep-wallet */
                uint256[] memory _shares,
                uint256 _maxMints,
                uint256 _authorMint,
                string memory tokenUri,
                address[] memory _whitelist,
                address _proxyRegistryAddress
    ) ERC1155(tokenUri) PaymentSplitter(_payees, _shares)
    {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(ADMIN_ROLE, msg.sender);
        _stage = NOSALE_STAGE;
        proxyRegistryAddress = _proxyRegistryAddress;
        currentMint = 0;
        addAddressesToRole(_whitelist, WHITELIST_MEMBER_ROLE);

        maxMints = _maxMints;

        _mintTokens(msg.sender, _authorMint);
    }

    function doRelease(address payable account) public{
        release(account);
    }

    function _mintTokens(address account, uint256 amount) private {
        uint256[] memory amounts = new uint256[](amount);
        uint256[] memory ids = new uint256[](amount);
        uint256 startIdx = currentMint;

        if (mintsPerWallet[account] == 0)
        {
            walletKeys.push(account);
        }

        for (uint256 i=0; i<amount; i++)
        {
            ids[i] = startIdx + i;
            amounts[i] = 1;
        }
        currentMint += amount;
        mintsPerWallet[account] += amount;

        _mintBatch(account, ids, amounts, "0x00");
    }

    function getStage() public view returns (uint){
        return _stage;
    }

    function setStage(uint stage) public onlyRole(ADMIN_ROLE) {
        require((stage == NOSALE_STAGE || stage == PRESALE_STAGE || stage == SALE_STAGE), "Invalid Stage-ID");
        _stage = stage;
    }

    function setURI(string memory newuri) public onlyRole(ADMIN_ROLE) {
        _setURI(newuri);
    }

    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function pause() public onlyRole(ADMIN_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(ADMIN_ROLE) {
        _unpause();
    }

    function addAddressesToRole(address[] memory membershipCandidates, bytes32 role) public onlyRole(ADMIN_ROLE) {
        require((
                role == ADMIN_ROLE ||
                role == WHITELIST_MEMBER_ROLE
            ), "Unable To Set Role"); // can only be ADMIN, WHITELIST_MEMBER, MINTER or BURN2GET1.
        for (uint i; i< membershipCandidates.length; i++){
            grantRole(WHITELIST_MEMBER_ROLE, membershipCandidates[i]);
        }
    }

    function removeAddressFromRole(address whitelistMember, bytes32 role) public onlyRole(ADMIN_ROLE) {
        require((!hasRole(DEFAULT_ADMIN_ROLE, msg.sender) || role != ADMIN_ROLE), "Owner Cant Be Removed");
        require((
                role == ADMIN_ROLE ||
                role == WHITELIST_MEMBER_ROLE
            ), "Unable To Set Role"); // can  only be ADMIN, WHITELIST_MEMBER, MINTER or BURN2GET1.
        revokeRole(WHITELIST_MEMBER_ROLE, whitelistMember);
    }

    function mint(address account, uint256 amount)
        public payable
    {
        _checkMintable(account, amount);
        _mintTokens(account, amount);
    }

    function _checkMintable(address receiver, uint256 amount) internal
    {
        require(_stage != NOSALE_STAGE, "No Mint Before Sale");
        bool isWhitelist = hasRole(WHITELIST_MEMBER_ROLE, msg.sender);
        bool isAdmin = hasRole(ADMIN_ROLE, msg.sender);
        if (isAdmin) {
        } else{
            if (_stage == PRESALE_STAGE) {
                require(isWhitelist, "Not Whitelisted");
                require(msg.value >= presaleFurryHeadPrice * amount, "Insufficient Payment");
            } else {
                require(_stage == SALE_STAGE, "Sale Not Open");
                require(msg.value >= furryHeadPrice * amount, "Insufficient Payment");
            }
            require(amount <= MINT_LIMIT && amount > 0, "Must Mint 5 Or Less");
            require(mintsPerWallet[receiver] + amount <= MINT_LIMIT, "Max Mints For Wallet Reached");
        }
        require(currentMint + amount <= maxMints, "Purchase Exceeds Max Supply");
    }

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

    function getMintsPerWallet() public view returns (string memory)
    {
        string memory outStr = "{";
        for (uint256 i=0; i<walletKeys.length; i++)
        {
            if (i!=0){
                outStr = string(abi.encodePacked(outStr, ","));
            }
            outStr = string(abi.encodePacked(
                outStr, "\"",
                Strings.toHexString(uint256(uint160(walletKeys[i]))),
                "\":", Strings.toString(mintsPerWallet[walletKeys[i]])
            ));
        }
        outStr = string(abi.encodePacked(outStr, "}"));
        return outStr;
    }

    function uri(uint256 _tokenId) override public view returns (string memory)
    {
        return string(
            abi.encodePacked(
                super.uri(_tokenId),
                Strings.toString(_tokenId)
            )
        );
    }

    function isApprovedForAll(
            address _owner,
            address _operator
    ) override public view returns (bool isOperator)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == _operator) {
          return true;
        }
        return ERC1155.isApprovedForAll(_owner, _operator);
    }

}

File 2 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 3 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 4 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 6 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 7 of 17 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 9 of 17 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 10 of 17 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

File 11 of 17 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 17 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 13 of 17 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 14 of 17 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

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

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

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 17 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 17 of 17 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "details": {
      "constantOptimizer": false,
      "cse": false,
      "deduplicate": false,
      "inliner": true,
      "jumpdestRemover": true,
      "orderLiterals": false,
      "peephole": true,
      "yul": true,
      "yulDetails": {
        "optimizerSteps": "dhfoDgvulfnTUtnIf[xarrscLMcCTUtTOntnfDIulLculVcul jjTpeulxarulrulxarrcLgvifCTUcarrLsTFOtfDncarrIulc]jmuljuljul VcTOcul jmul",
        "stackAllocation": true
      }
    },
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"},{"internalType":"uint256","name":"_maxMints","type":"uint256"},{"internalType":"uint256","name":"_authorMint","type":"uint256"},{"internalType":"string","name":"tokenUri","type":"string"},{"internalType":"address[]","name":"_whitelist","type":"address[]"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOSALE_STAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_STAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MEMBER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"membershipCandidates","type":"address[]"},{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"addAddressesToRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"doRelease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"furryHeadPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintsPerWallet","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleFurryHeadPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"whitelistMember","type":"address"},{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"removeAddressFromRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stage","type":"uint256"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":[{"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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162007b5e38038062007b5e833981810160405281019062000037919062001ae9565b8686846200004b81620002ed60201b60201c565b506000600560006101000a81548160ff02191690831515021790555080518251146200010c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001039060208152603260208201527f5061796d656e7453706c69747465723a2070617965657320616e64207368617260408201527f6573206c656e677468206d69736d61746368000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b60008251116200018b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001829060208152601a60208201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060408201526000606082019050919050565b60405180910390fd5b60005b8251811015620001fa57620001e4838281518110620001b257620001b162001bc7565b5b6020026020010151838381518110620001d057620001cf62001bc7565b5b60200260200101516200030960201b60201c565b8080620001f19062001bf3565b9150506200018e565b505050620002126000801b336200065160201b60201c565b620002447fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336200065160201b60201c565b6000600d8190555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f81905550620002c7827fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda6200066760201b60201c565b84600e81905550620002e03385620007e960201b60201c565b5050505050505062001f76565b806002908051906020019062000305929190620017ea565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d19060208152602c60208201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060408201527f7a65726f2061646472657373000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6000811162000458576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044f9060208152601d60208201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060408201526000606082019050919050565b60405180910390fd5b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146200053b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005329060208152602b60208201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960408201527f206861732073686172657300000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b600a829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600654620005f2919062001c15565b6006819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac828260405162000645929190600060408201905060018060a01b03841682528260208301529392505050565b60405180910390a15050565b62000663828262000a7960201b60201c565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775620006a9816200069d62000b6b60201b60201c565b62000b7360201b60201c565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775821480620006f757507fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda82145b62000771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007689060208152601260208201527f556e61626c6520546f2053657420526f6c65000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b60005b8351811015620007e357620007cd7fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda858381518110620007b957620007b862001bc7565b5b602002602001015162000c3760201b60201c565b8080620007da9062001bf3565b91505062000774565b50505050565b60008167ffffffffffffffff8111156200080857620008076200189a565b5b604051908082528060200260200182016040528015620008375781602001602082028036833780820191505090505b50905060008267ffffffffffffffff8111156200085957620008586200189a565b5b604051908082528060200260200182016040528015620008885781602001602082028036833780820191505090505b5090506000600f5490506000601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156200093f576011859080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60005b84811015620009b557808262000959919062001c15565b8382815181106200096f576200096e62001bc7565b5b602002602001018181525050600184828151811062000993576200099262001bc7565b5b6020026020010181815250508080620009ac9062001bf3565b91505062000942565b5083600f6000828254620009ca919062001c15565b9250508190555083601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a22919062001c15565b9250508190555062000a728583856040518060400160405280600481526020017f307830300000000000000000000000000000000000000000000000000000000081525062000c8060201b60201c565b5050505050565b62000a8b828262000f8660201b60201c565b62000b675760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000b0c62000b6b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b62000b85828262000f8660201b60201c565b62000c335762000bb88173ffffffffffffffffffffffffffffffffffffffff16601462000ff160201b620022991760201c565b62000bd38360001c602062000ff160201b620022991760201c565b60405160200162000be692919062001c37565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c2a919062001cf2565b60405180910390fd5b5050565b62000c48826200128360201b60201c565b62000c698162000c5d62000b6b60201b60201c565b62000b7360201b60201c565b62000c7b838362000a7960201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000d51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d489060208152602160208201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360408201527f730000000000000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b815183511462000df6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ded9060208152602860208201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060408201527f6d69736d6174636800000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b600062000e0862000b6b60201b60201c565b905062000e2181600087878787620012a360201b60201c565b60005b845181101562000ee65783818151811062000e445762000e4362001bc7565b5b602002602001015160008087848151811062000e655762000e6462001bc7565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ec9919062001c15565b92505081905550808062000edd9062001bf3565b91505062000e24565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405162000f6092919062001d53565b60405180910390a462000f7f816000878787876200135160201b60201c565b5050505050565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000600283600262001006919062001d86565b62001012919062001c15565b67ffffffffffffffff8111156200102e576200102d6200189a565b5b6040519080825280601f01601f191660200182016040528015620010615781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106200109c576200109b62001bc7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062001103576200110262001bc7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600262001145919062001d86565b62001151919062001c15565b90505b6001811115620011fb577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062001197576200119662001bc7565b5b1a60f81b828281518110620011b157620011b062001bc7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080620011f39062001daf565b905062001154565b506000841462001279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200127090602081526020808201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460408201526000606082019050919050565b60405180910390fd5b8091505092915050565b600060046000838152602001908152602001600020600101549050919050565b620012b36200161760201b60201c565b156200132e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013259060208152601060208201527f5061757361626c653a207061757365640000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b620013498686868686866200162e60201b6200250d1760201c565b505050505050565b6200137d8473ffffffffffffffffffffffffffffffffffffffff16620017cf60201b620026791760201c565b156200160f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401620013c695949392919062001dce565b602060405180830381600087803b158015620013e157600080fd5b505af19250505080156200141557506040513d601f19601f8201168201806040525081019062001412919062001e32565b60015b62001525576200142462001e67565b806308c379a014156200148857506200143c62001e85565b806200144957506200148a565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200147f919062001cf2565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200151c9060208152603460208201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560408201527f526563656976657220696d706c656d656e74657200000000000000000000000060608201526000608082019050919050565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146200160d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016049060208152602860208201527f455243313135353a204552433131353552656365697665722072656a6563746560408201527f6420746f6b656e7300000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b505b505050505050565b6000600560009054906101000a900460ff16905090565b62001649868686868686620017e260201b6200268c1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620017085760005b83518110156200170657828181518110620016a257620016a162001bc7565b5b602002602001015160036000868481518110620016c457620016c362001bc7565b5b602002602001015181526020019081526020016000206000828254620016eb919062001c15565b9250508190555080620016fe9062001bf3565b905062001682565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620017c75760005b8351811015620017c55782818151811062001761576200176062001bc7565b5b60200260200101516003600086848151811062001783576200178262001bc7565b5b602002602001015181526020019081526020016000206000828254620017aa919062001f14565b9250508190555080620017bd9062001bf3565b905062001741565b505b505050505050565b600080823b905060008111915050919050565b505050505050565b828054620017f89062001f35565b90600052602060002090601f0160209004810192826200181c576000855562001868565b82601f106200183757805160ff191683800117855562001868565b8280016001018555821562001868579182015b82811115620018675782518255916020019190600101906200184a565b5b5090506200187791906200187b565b5090565b5b80821115620018965760008160009055506001016200187c565b5090565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811060018060401b0382111715620018d857620018d76200189a565b5b80604052505050565b600060018060401b03821115620018fd57620018fc6200189a565b5b60208260051b019050919050565b60008151905060018060a01b03811681146200192657600080fd5b919050565b600082601f8301126200193d57600080fd5b815160206200194c82620018e1565b6040516200195b8282620018b0565b8091508381528281019150828460051b8701019350868411156200197e57600080fd5b8286015b84811015620019a85762001996816200190b565b83528383019250838101905062001982565b508094505050505092915050565b600082601f830112620019c857600080fd5b81516020620019d782620018e1565b604051620019e68282620018b0565b8091508381528281019150828460051b87010193508684111562001a0957600080fd5b8286015b8481101562001a2a57805183528383019250838101905062001a0d565b508094505050505092915050565b60005b8381101562001a5857808201518184015260208101905062001a3b565b8381111562001a68576000848401525b50505050565b600082601f83011262001a8057600080fd5b815160018060401b0381111562001a9c5762001a9b6200189a565b5b60405162001ab56020601f19601f8501160182620018b0565b81815284602083860101111562001acb57600080fd5b62001ade82602083016020870162001a38565b809250505092915050565b600080600080600080600060e0888a03121562001b0557600080fd5b875160018060401b038082111562001b1c57600080fd5b62001b2a8b838c016200192b565b985060208a015191508082111562001b4157600080fd5b62001b4f8b838c01620019b6565b975060408a0151965060608a0151955060808a015191508082111562001b7457600080fd5b62001b828b838c0162001a6e565b945060a08a015191508082111562001b9957600080fd5b5062001ba88a828b016200192b565b92505062001bb960c089016200190b565b905092959891949750929550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000801982141562001c0a5762001c0962001bdd565b5b600182019050919050565b6000821982111562001c2c5762001c2b62001bdd565b5b828201905092915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162001c7181601785016020880162001a38565b80830190507f206973206d697373696e6720726f6c65200000000000000000000000000000006017820152835162001cb181602884016020880162001a38565b602881830101925050509392505050565b6000815180845262001cdc81602086016020860162001a38565b6020601f19601f83011685010191505092915050565b60208152600062001d07602083018462001cc2565b905092915050565b600081518084526020808501945080840160005b8381101562001d4657815187528287019650828201915060018101905062001d23565b5050505082905092915050565b60408152600062001d68604083018562001d0f565b828103602084015262001d7c818562001d0f565b9150509392505050565b600081600019048311821515161562001da45762001da362001bdd565b5b828202905092915050565b60008162001dc25762001dc162001bdd565b5b60001982019050919050565b600060018060a01b03808816835280871660208401525060a0604083015262001dfb60a083018662001d0f565b828103606084015262001e0f818662001d0f565b9050828103608084015262001e25818562001cc2565b9150509695505050505050565b60006020828403121562001e4557600080fd5b815163ffffffff60e01b8116811462001e5d57600080fd5b8091505092915050565b600060033d111562001e825760046000803e60005160e01c90505b90565b600060443d101562001e945790565b604051600319803d016004833e81513d60018060401b03816024840111818411171562001ec357505050505090565b828501915081518181111562001edc5750505050505090565b843d870101602082850101111562001ef75750505050505090565b62001f0860208286010187620018b0565b50508094505050505090565b60008282101562001f2a5762001f2962001bdd565b5b828203905092915050565b60008160011c9050600182168062001f4e57607f821691505b6020821081141562001f7057634e487b7160e01b600052602260045260246000fd5b50919050565b615bd88062001f866000396000f3fe60806040526004361061026a5760003560e01c80636db3873111610144578063ab3c72cf116100b6578063d79779b21161007a578063d79779b214610b7a578063e33b7de314610bc3578063e985e9c514610bff578063e99b087914610c4a578063f242432a14610ca0578063fcaa766414610cc957600080fd5b8063ab3c72cf14610a03578063bd85b03914610a2c578063ce7c2ac214610a8d578063d547741f14610b1a578063d5a28cd214610b4357600080fd5b80638b83209b116101085780638b83209b1461089357806391d14854146108e45780639852595c1461092f5780639c0e4e9a14610978578063a217fddf146109a1578063a22cb465146109da57600080fd5b80636db38731146107755780636e3e2e75146107b257806375b238fc146107ef57806380a64abc146108455780638456cb591461087c57600080fd5b80633a98ef39116101dd57806340c10f19116101a157806340c10f191461063457806347825edd1461065057806348b75044146106795780634e1273f4146106a25780634f558e79146106df5780635c975abb1461072a57600080fd5b80633a98ef39146105385780633c34a619146105745780633eb1d777146105ab5780633f4ba83a146105d4578063406072a9146105eb57600080fd5b8063191655871161022f5780631916558714610405578063248a9ca31461042e5780632eb2c2d6146104925780632f2ff15d146104bb5780632f77ff1f146104e457806336568abe1461050f57600080fd5b8062fdd58e146102d457806301ffc9a71461031d578063027752401461036857806302fe53051461039f5780630e89341c146103c857600080fd5b366102cf577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061029b600033905090565b346040516102c5929190600060408201905060018060a01b03841682528260208301529392505050565b60405180910390a1005b600080fd5b3480156102e057600080fd5b506102fb60048036038101906102f69190614c81565b610d05565b6040516103149190600060208201905082825292915050565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190614cc9565b610e2d565b60405161035f91906000602082019050821515825292915050565b60405180910390f35b34801561037457600080fd5b5061037d600581565b6040516103969190600060208201905082825292915050565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190614d95565b610e3f565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190614dea565b610e81565b6040516103fc9190614e67565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190614e82565b610ebc565b005b34801561043a57600080fd5b5061047060048036038101906104509190614ea9565b600060046000838152602001908152602001600020600101549050919050565b6040516104899190600060208201905082825292915050565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190614f90565b611087565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190615042565b61118d565b005b3480156104f057600080fd5b506104f96111d4565b6040516105069190614e67565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190615042565b61138f565b005b34801561054457600080fd5b506105526000600654905090565b60405161056b9190600060208201905082825292915050565b60405180910390f35b34801561058057600080fd5b50610589600181565b6040516105a29190600060208201905082825292915050565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190614dea565b611474565b005b3480156105e057600080fd5b506105e9611546565b005b3480156105f757600080fd5b50610612600480360381019061060d9190615072565b611586565b60405161062b9190600060208201905082825292915050565b60405180910390f35b61064e60048036038101906106499190614c81565b61160d565b005b34801561065c57600080fd5b5061067760048036038101906106729190615132565b611625565b005b34801561068557600080fd5b506106a0600480360381019061069b9190615072565b611788565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190615179565b611a7f565b6040516106d6919061521f565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190614dea565b611bf7565b60405161072191906000602082019050821515825292915050565b60405180910390f35b34801561073657600080fd5b506107516000600560009054906101000a900460ff16905090565b60405161076c91906000602082019050821515825292915050565b60405180910390f35b34801561078157600080fd5b50610790667c58508723800081565b6040516107a99190600060208201905082825292915050565b60405180910390f35b3480156107be57600080fd5b506107cd66f8b0a10e47000081565b6040516107e69190600060208201905082825292915050565b60405180910390f35b3480156107fb57600080fd5b506108237fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b60405161083c9190600060208201905082825292915050565b60405180910390f35b34801561085157600080fd5b5061085a600281565b6040516108739190600060208201905082825292915050565b60405180910390f35b34801561088857600080fd5b50610891611c23565b005b34801561089f57600080fd5b506108ba60048036038101906108b59190614dea565b611c63565b6040516108db9190600060208201905060018060a01b038316825292915050565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190615042565b611cab565b60405161092691906000602082019050821515825292915050565b60405180910390f35b34801561093b57600080fd5b506109566004803603810190610951919061523a565b611d16565b60405161096f9190600060208201905082825292915050565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190615261565b611d5f565b005b3480156109ad57600080fd5b506109b86000801b81565b6040516109d19190600060208201905082825292915050565b60405180910390f35b3480156109e657600080fd5b50610a0160048036038101906109fc91906152a2565b611f39565b005b348015610a0f57600080fd5b50610a2a6004803603810190610a259190614e82565b611f52565b005b348015610a3857600080fd5b50610a6b6004803603810190610a4e9190614dea565b600060036000838152602001908152602001600020549050919050565b604051610a849190600060208201905082825292915050565b60405180910390f35b348015610a9957600080fd5b50610af86004803603810190610aaf919061523a565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b604051610b119190600060208201905082825292915050565b60405180910390f35b348015610b2657600080fd5b50610b416004803603810190610b3c9190615042565b611f5e565b005b348015610b4f57600080fd5b50610b58600081565b604051610b719190600060208201905082825292915050565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c91906152dd565b611fa5565b604051610bba9190600060208201905082825292915050565b60405180910390f35b348015610bcf57600080fd5b50610bdd6000600754905090565b604051610bf69190600060208201905082825292915050565b60405180910390f35b348015610c0b57600080fd5b50610c266004803603810190610c219190615304565b611fee565b604051610c4191906000602082019050821515825292915050565b60405180910390f35b348015610c5657600080fd5b50610c7e7fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda81565b604051610c979190600060208201905082825292915050565b60405180910390f35b348015610cac57600080fd5b50610cc76004803603810190610cc2919061533f565b612193565b005b348015610cd557600080fd5b50610ce36000600d54905090565b604051610cfc9190600060208201905082825292915050565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc9060208152602b60208201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201527f65726f206164647265737300000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610e3882612694565b9050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610e7481610e6f600033905090565b61270e565b610e7d826127ab565b5050565b6060610e8c826127c5565b610e9583612859565b604051602001610ea69291906153b9565b6040516020818303038152906040529050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f35906153ee565b60405180910390fd5b6000610f4d6000600754905090565b47610f589190615468565b90506000610f6f8383610f6a86611d16565b6129b9565b90506000811415610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90615487565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110049190615468565b92505081905550806007600082825461101d9190615468565b9250508190555061102e8382612a27565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056838260405161107a929190600060408201905060018060a01b03841682528260208301529392505050565b60405180910390a1505050565b611092600033905090565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110db57506110da856110d5600033905090565b611fee565b5b611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111709060208152603260208201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6111868585858585612bb8565b5050505050565b6111b182600060046000838152602001908152602001600020600101549050919050565b6111c5816111c0600033905090565b61270e565b6111cf8383612ecf565b505050565b606060006040518060400160405280600181526020017f7b00000000000000000000000000000000000000000000000000000000000000815250905060005b601180549050811015611365576000811461124b578160405160200161123991906154eb565b60405160208183030381529060405291505b816112a96011838154811061126357611262615532565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612fb3565b61132f60126000601186815481106112c4576112c3615532565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612859565b60405160200161134193929190615548565b6040516020818303038152906040529150808061135d906155af565b915050611213565b508060405160200161137791906155ce565b60405160208183030381529060405290508091505090565b61139a600033905090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d9060208152602f60208201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201527f20726f6c657320666f722073656c66000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6114708282613038565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756114a9816114a4600033905090565b61270e565b60008214806114b85750600182145b806114c35750600282145b61153b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115329060208152601060208201527f496e76616c69642053746167652d49440000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b81600d819055505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561157b81611576600033905090565b61270e565b61158361311d565b50565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6116178282613221565b611621828261370d565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561165a81611655600033905090565b61270e565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758214806116a757507fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda82145b61171f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117169060208152601260208201527f556e61626c6520546f2053657420526f6c65000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b60005b83518110156117825761176f7fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda85838151811061176257611761615532565b5b602002602001015161118d565b808061177a906155af565b915050611722565b50505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161180a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611801906153ee565b60405180910390fd5b600061181583611fa5565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118629190600060208201905060018060a01b038316825292915050565b60206040518083038186803b15801561187a57600080fd5b505afa15801561188e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b29190615615565b6118bc9190615468565b905060006118d483836118cf8787611586565b6129b9565b9050600081141561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190615487565b60405180910390fd5b80600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119a69190615468565b9250508190555080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119fc9190615468565b92505081905550611a0e84848361397c565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051611a71929190600060408201905060018060a01b03841682528260208301529392505050565b60405180910390a250505050565b60608151835114611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b9060208152602960208201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860408201527f206d69736d61746368000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6000835167ffffffffffffffff811115611b4157611b40614cf0565b5b604051908082528060200260200182016040528015611b6f5781602001602082028036833780820191505090505b50905060005b8451811015611bec57611bbc858281518110611b9457611b93615532565b5b6020026020010151858381518110611baf57611bae615532565b5b6020026020010151610d05565b828281518110611bcf57611bce615532565b5b60200260200101818152505080611be5906155af565b9050611b75565b508091505092915050565b600080611c1b83600060036000838152602001908152602001600020549050919050565b119050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611c5881611c53600033905090565b61270e565b611c60613a1d565b50565b6000600a8281548110611c7957611c78615532565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611d9481611d8f600033905090565b61270e565b611da16000801b33611cab565b1580611dcd57507fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758214155b611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c9060208152601560208201527f4f776e65722043616e742042652052656d6f766564000000000000000000000060408201526000606082019050919050565b60405180910390fd5b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775821480611e9257507fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda82145b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f019060208152601260208201527f556e61626c6520546f2053657420526f6c65000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b611f347fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda84611f5e565b505050565b611f4e611f47600033905090565b8383613b22565b5050565b611f5b81610ebc565b50565b611f8282600060046000838152602001908152602001600020600101549050919050565b611f9681611f91600033905090565b61270e565b611fa08383613038565b505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161207a9190600060208201905060018060a01b038316825292915050565b60206040518083038186803b15801561209257600080fd5b505afa1580156120a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ca9190615631565b73ffffffffffffffffffffffffffffffffffffffff1614156120f057600191505061218d565b61218984846000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b9150505b92915050565b61219e600033905090565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806121e757506121e6856121e1600033905090565b611fee565b5b612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c9060208152602960208201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201527f20617070726f766564000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6122928585858585613cfc565b5050505050565b6060600060028360026122ac9190615658565b6122b69190615468565b67ffffffffffffffff8111156122cf576122ce614cf0565b5b6040519080825280601f01601f1916602001820160405280156123015781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061233957612338615532565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061239d5761239c615532565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026123dd9190615658565b6123e79190615468565b90505b6001811115612487577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061242957612428615532565b5b1a60f81b8282815181106124405761243f615532565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806124809061567e565b90506123ea565b5060008414612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90602081526020808201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460408201526000606082019050919050565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156125bf5760005b83518110156125bd5782818151811061256157612560615532565b5b6020026020010151600360008684815181106125805761257f615532565b5b6020026020010151815260200190815260200160002060008282546125a59190615468565b92505081905550806125b6906155af565b9050612545565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126715760005b835181101561266f5782818151811061261357612612615532565b5b60200260200101516003600086848151811061263257612631615532565b5b602002602001015181526020019081526020016000206000828254612657919061569a565b9250508190555080612668906155af565b90506125f7565b505b505050505050565b600080823b905060008111915050919050565b505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612707575061270682613f94565b5b9050919050565b6127188282611cab565b6127a75761273d8173ffffffffffffffffffffffffffffffffffffffff166014612299565b61274b8360001c6020612299565b60405160200161275c9291906156b8565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e9190614e67565b60405180910390fd5b5050565b80600290805190602001906127c1929190614bc7565b5050565b6060600280546127d49061573f565b80601f01602080910402602001604051908101604052809291908181526020018280546128009061573f565b801561284d5780601f106128225761010080835404028352916020019161284d565b820191906000526020600020905b81548152906001019060200180831161283057829003601f168201915b50505050509050919050565b606060008214156128a1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050919050565b600082905060005b600082146128d35780806128bc906155af565b915050600a826128cc9190615794565b91506128a9565b60008167ffffffffffffffff8111156128ef576128ee614cf0565b5b6040519080825280601f01601f1916602001820160405280156129215781602001600182028036833780820191505090505b5090505b600085146129ae5760018261293a919061569a565b9150600a8561294991906157af565b60306129559190615468565b60f81b81838151811061296b5761296a615532565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a79190615794565b9450612925565b809350505050919050565b600081600654600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612a0a9190615658565b612a149190615794565b612a1e919061569a565b90509392505050565b80471015612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a9060208152601d60208201527f416464726573733a20696e73756666696369656e742062616c616e636500000060408201526000606082019050919050565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612ace906000819050919050565b60006040518083038185875af1925050503d8060008114612b0b576040519150601f19603f3d011682016040523d82523d6000602084013e612b10565b606091505b5050905080612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa9060208152603a60208201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d6179206861766520726576657274656400000000000060608201526000608082019050919050565b60405180910390fd5b505050565b8151835114612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf3906157ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c639061582e565b60405180910390fd5b6000612c79600033905090565b9050612c898187878787876140db565b60005b8451811015612e3a576000858281518110612caa57612ca9615532565b5b602002602001015190506000858381518110612cc957612cc8615532565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190615892565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e1f9190615468565b9250508190555050505080612e33906155af565b9050612c8c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612eb19291906158f6565b60405180910390a4612ec7818787878787614184565b505050505050565b612ed98282611cab565b612faf5760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612f54600033905090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60606000821415612ffb576040518060400160405280600481526020017f30783030000000000000000000000000000000000000000000000000000000008152509050919050565b600082905060005b60008214613025578080613016906155af565b915050600882901c9150613003565b61302f8482612299565b92505050919050565b6130428282611cab565b156131195760006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506130be600033905090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6131376000600560009054906101000a900460ff16905090565b6131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a69060208152601460208201527f5061757361626c653a206e6f742070617573656400000000000000000000000060408201526000606082019050919050565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6131f6600033905090565b6040516132179190600060208201905060018060a01b038316825292915050565b60405180910390a1565b6000600d5414156132a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132979060208152601360208201527f4e6f204d696e74204265666f72652053616c650000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b60006132cc7fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda33611cab565b905060006132fa7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533611cab565b905080156133075761367c565b6001600d54141561341e578161338b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133829060208152600f60208201527f4e6f742057686974656c6973746564000000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b82667c58508723800061339e9190615658565b341015613419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134109060208152601460208201527f496e73756666696369656e74205061796d656e7400000000000000000000000060408201526000606082019050919050565b60405180910390fd5b61352b565b6002600d541461349c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134939060208152600d60208201527f53616c65204e6f74204f70656e0000000000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b8266f8b0a10e4700006134af9190615658565b34101561352a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135219060208152601460208201527f496e73756666696369656e74205061796d656e7400000000000000000000000060408201526000606082019050919050565b60405180910390fd5b5b6005831115801561353c5750600083115b6135b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ab9060208152601360208201527f4d757374204d696e742035204f72204c6573730000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b600583601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136019190615468565b111561367b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136729060208152601c60208201527f4d6178204d696e747320466f722057616c6c657420526561636865640000000060408201526000606082019050919050565b60405180910390fd5b5b600e5483600f5461368d9190615468565b1115613707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fe9060208152601b60208201527f50757263686173652045786365656473204d617820537570706c79000000000060408201526000606082019050919050565b60405180910390fd5b50505050565b60008167ffffffffffffffff81111561372957613728614cf0565b5b6040519080825280602002602001820160405280156137575781602001602082028036833780820191505090505b50905060008267ffffffffffffffff81111561377657613775614cf0565b5b6040519080825280602002602001820160405280156137a45781602001602082028036833780820191505090505b5090506000600f5490506000601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561385a576011859080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60005b848110156138c45780826138719190615468565b83828151811061388457613883615532565b5b60200260200101818152505060018482815181106138a5576138a4615532565b5b60200260200101818152505080806138bc906155af565b91505061385d565b5083600f60008282546138d79190615468565b9250508190555083601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461392d9190615468565b925050819055506139758583856040518060400160405280600481526020017f3078303000000000000000000000000000000000000000000000000000000000815250614379565b5050505050565b613a188363a9059cbb60e01b84846040516024016139b6929190600060408201905060018060a01b03841682528260208301529392505050565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506145f9565b505050565b613a376000600560009054906101000a900460ff16905090565b15613ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa79060208152601060208201527f5061757361626c653a207061757365640000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613af7600033905090565b604051613b189190600060208201905060018060a01b038316825292915050565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be79060208152602960208201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360408201527f20666f722073656c66000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613cef91906000602082019050821515825292915050565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d639061582e565b60405180910390fd5b6000613d79600033905090565b9050613d99818787613d8a8861471f565b613d938861471f565b876140db565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015613e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e2790615892565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ee59190615468565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051613f7592919060006040820190508382528260208301529392505050565b60405180910390a4613f8b828888888888614799565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061405f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806140d457506140d38260007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5b9050919050565b6140f56000600560009054906101000a900460ff16905090565b1561416e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141659060208152601060208201527f5061757361626c653a207061757365640000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b61417c86868686868661250d565b505050505050565b6141b18473ffffffffffffffffffffffffffffffffffffffff16600080823b905060008111915050919050565b15614371578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016141f7959493929190615925565b602060405180830381600087803b15801561421157600080fd5b505af192505050801561424257506040513d601f19601f8201168201806040525081019061423f9190615983565b60015b6142e85761424e6159aa565b806308c379a014156142ab57506142636159c7565b8061426e57506142ad565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016142a29190614e67565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016142df90615a52565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461436f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161436690615ab6565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415614448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161443f9060208152602160208201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360408201527f730000000000000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b815183511461448c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614483906157ca565b60405180910390fd5b6000614499600033905090565b90506144aa816000878787876140db565b60005b8451811015614563578381815181106144c9576144c8615532565b5b60200260200101516000808784815181106144e7576144e6615532565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546145499190615468565b92505081905550808061455b906155af565b9150506144ad565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516145db9291906158f6565b60405180910390a46145f281600087878787614184565b5050505050565b600061465b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661498e9092919063ffffffff16565b905060008151111561471a578080602001905181019061467b9190615b1a565b614719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016147109060208152602a60208201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60408201527f6f7420737563636565640000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b5b505050565b60606000600167ffffffffffffffff81111561473e5761473d614cf0565b5b60405190808252806020026020018201604052801561476c5781602001602082028036833780820191505090505b509050828160008151811061478457614783615532565b5b60200260200101818152505080915050919050565b6147c68473ffffffffffffffffffffffffffffffffffffffff16600080823b905060008111915050919050565b15614986578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161480c959493929190615b41565b602060405180830381600087803b15801561482657600080fd5b505af192505050801561485757506040513d601f19601f820116820180604052508101906148549190615983565b60015b6148fd576148636159aa565b806308c379a014156148c057506148786159c7565b8061488357506148c2565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016148b79190614e67565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016148f490615a52565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161497b90615ab6565b60405180910390fd5b505b505050505050565b606061499d84846000856149a6565b90509392505050565b606082471015614a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614a419060208152602660208201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60408201527f722063616c6c000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b614a6185600080823b905060008111915050919050565b614ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614ad09060208152601d60208201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060408201526000606082019050919050565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051614b029190615b84565b60006040518083038185875af1925050503d8060008114614b3f576040519150601f19603f3d011682016040523d82523d6000602084013e614b44565b606091505b5091509150614b54828286614b60565b92505050949350505050565b60608315614b7057829050614bc0565b600083511115614b835782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614bb79190614e67565b60405180910390fd5b9392505050565b828054614bd39061573f565b90600052602060002090601f016020900481019282614bf55760008555614c3c565b82601f10614c0e57805160ff1916838001178555614c3c565b82800160010185558215614c3c579182015b82811115614c3b578251825591602001919060010190614c20565b5b509050614c499190614c4d565b5090565b5b80821115614c66576000816000905550600101614c4e565b5090565b60018060a01b0381168114614c7e57600080fd5b50565b60008060408385031215614c9457600080fd5b8235614c9f81614c6a565b80925050602083013590509250929050565b63ffffffff60e01b81168114614cc657600080fd5b50565b600060208284031215614cdb57600080fd5b8135614ce681614cb1565b8091505092915050565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715614d2d57614d2c614cf0565b5b80604052505050565b600067ffffffffffffffff831115614d5157614d50614cf0565b5b604051614d686020601f19601f8701160182614d06565b809150838152848484011115614d7d57600080fd5b83836020830137600060208583010152509392505050565b600060208284031215614da757600080fd5b813567ffffffffffffffff811115614dbe57600080fd5b808301905083601f820112614dd257600080fd5b614de184823560208401614d36565b91505092915050565b600060208284031215614dfc57600080fd5b8135905092915050565b60005b83811015614e24578082015181840152602081019050614e09565b83811115614e33576000848401525b50505050565b60008151808452614e51816020860160208601614e06565b6020601f19601f83011685010191505092915050565b602081526000614e7a6020830184614e39565b905092915050565b600060208284031215614e9457600080fd5b8135614e9f81614c6a565b8091505092915050565b600060208284031215614ebb57600080fd5b8135905092915050565b600067ffffffffffffffff821115614ee057614edf614cf0565b5b60208260051b019050919050565b600082601f830112614eff57600080fd5b81356020614f0c82614ec5565b604051614f198282614d06565b8091508381528281019150828460051b870101935086841115614f3b57600080fd5b8286015b84811015614f5a578035835283830192508381019050614f3f565b508094505050505092915050565b600082601f830112614f7957600080fd5b614f8883833560208501614d36565b905092915050565b600080600080600060a08688031215614fa857600080fd5b8535614fb381614c6a565b809550506020860135614fc581614c6a565b80945050604086013567ffffffffffffffff80821115614fe457600080fd5b614ff089838a01614eee565b9450606088013591508082111561500657600080fd5b61501289838a01614eee565b9350608088013591508082111561502857600080fd5b5061503588828901614f68565b9150509295509295909350565b6000806040838503121561505557600080fd5b82359150602083013561506781614c6a565b809150509250929050565b6000806040838503121561508557600080fd5b823561509081614c6a565b8092505060208301356150a281614c6a565b809150509250929050565b600082601f8301126150be57600080fd5b813560206150cb82614ec5565b6040516150d88282614d06565b8091508381528281019150828460051b8701019350868411156150fa57600080fd5b8286015b8481101561512457803561511181614c6a565b80845250838301925083810190506150fe565b508094505050505092915050565b6000806040838503121561514557600080fd5b823567ffffffffffffffff81111561515c57600080fd5b615168858286016150ad565b925050602083013590509250929050565b6000806040838503121561518c57600080fd5b823567ffffffffffffffff808211156151a457600080fd5b6151b0868387016150ad565b935060208501359150808211156151c657600080fd5b506151d385828601614eee565b9150509250929050565b600081518084526020808501945080840160005b838110156152125781518752828701965082820191506001810190506151f1565b5050505082905092915050565b60208152600061523260208301846151dd565b905092915050565b60006020828403121561524c57600080fd5b813561525781614c6a565b8091505092915050565b6000806040838503121561527457600080fd5b823561527f81614c6a565b80925050602083013590509250929050565b801515811461529f57600080fd5b50565b600080604083850312156152b557600080fd5b82356152c081614c6a565b8092505060208301356152d281615291565b809150509250929050565b6000602082840312156152ef57600080fd5b81356152fa81614c6a565b8091505092915050565b6000806040838503121561531757600080fd5b823561532281614c6a565b80925050602083013561533481614c6a565b809150509250929050565b600080600080600060a0868803121561535757600080fd5b853561536281614c6a565b80955050602086013561537481614c6a565b809450506040860135925060608601359150608086013567ffffffffffffffff8111156153a057600080fd5b6153ac88828901614f68565b9150509295509295909350565b600083516153cb818460208801614e06565b808301905083516153e0818360208801614e06565b808201925050509392505050565b60208152602660208201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201527f736861726573000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561547c5761547b615452565b5b828201905092915050565b60208152602b60208201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201527f647565207061796d656e7400000000000000000000000000000000000000000060608201526000608082019050919050565b600082516154fd818460208701614e06565b80830190507f2c0000000000000000000000000000000000000000000000000000000000000081526001810191505092915050565b634e487b7160e01b600052603260045260246000fd5b6000845161555a818460208901614e06565b8083019050601160f91b81528451615579816001840160208901614e06565b80820191505061111d60f11b6001820152835161559d816003840160208801614e06565b60038183010192505050949350505050565b600080198214156155c3576155c2615452565b5b600182019050919050565b600082516155e0818460208701614e06565b80830190507f7d0000000000000000000000000000000000000000000000000000000000000081526001810191505092915050565b60006020828403121561562757600080fd5b8151905092915050565b60006020828403121561564357600080fd5b815161564e81614c6a565b8091505092915050565b600081600019048311821515161561567357615672615452565b5b828202905092915050565b60008161568e5761568d615452565b5b60001982019050919050565b6000828210156156ad576156ac615452565b5b828203905092915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516156f0816017850160208801614e06565b80830190507f206973206d697373696e6720726f6c65200000000000000000000000000000006017820152835161572e816028840160208801614e06565b602881830101925050509392505050565b60008160011c9050600182168061575757607f821691505b6020821081141561577857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601260045260246000fd5b6000826157a4576157a361577e565b5b828204905092915050565b6000826157bf576157be61577e565b5b828206905092915050565b60208152602860208201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060408201527f6d69736d6174636800000000000000000000000000000000000000000000000060608201526000608082019050919050565b60208152602560208201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460408201527f647265737300000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b60208152602a60208201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201527f72207472616e736665720000000000000000000000000000000000000000000060608201526000608082019050919050565b60408152600061590960408301856151dd565b828103602084015261591b81856151dd565b9150509392505050565b600060018060a01b03808816835280871660208401525060a0604083015261595060a08301866151dd565b828103606084015261596281866151dd565b905082810360808401526159768185614e39565b9150509695505050505050565b60006020828403121561599557600080fd5b81516159a081614cb1565b8091505092915050565b600060033d11156159c45760046000803e60005160e01c90505b90565b600060443d10156159d55790565b604051600319803d016004833e81513d67ffffffffffffffff8160248401118184111715615a0557505050505090565b8285019150815181811115615a1d5750505050505090565b843d8701016020828501011115615a375750505050505090565b615a4660208286010187614d06565b50508094505050505090565b60208152603460208201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560408201527f526563656976657220696d706c656d656e74657200000000000000000000000060608201526000608082019050919050565b60208152602860208201527f455243313135353a204552433131353552656365697665722072656a6563746560408201527f6420746f6b656e7300000000000000000000000000000000000000000000000060608201526000608082019050919050565b600060208284031215615b2c57600080fd5b8151615b3781615291565b8091505092915050565b600060018060a01b03808816835280871660208401525084604083015283606083015260a06080830152615b7860a0830184614e39565b90509695505050505050565b60008251615b96818460208701614e06565b8083019150509291505056fea2646970667358221220f74ea79b0263979b0a6e1f72d52e436c48c6d51e7678ea199ddfc529d164289664736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000000600000000000000000000000015ee8f389018ef061037e211e4360385d14edc0a000000000000000000000000509029e80ef4194de8f4714aa68c59c48d7afde60000000000000000000000004138b71640b2415eb2acd9f657dacf4f9503a8bc000000000000000000000000c15ce1522f66bc8b161ecd7a6e49b30477ba1a0e000000000000000000000000fbfb862f8e0e65a9e9c2c1016c998d163306fc230000000000000000000000007e8b3c0ba0f6337aaedd9cdec8c1e807d1f84ef80000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f617274776f726b2e667572727968656164732e6172742f3f6974656d3d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023000000000000000000000000c15ce1522f66bc8b161ecd7a6e49b30477ba1a0e0000000000000000000000007e8b3c0ba0f6337aaedd9cdec8c1e807d1f84ef80000000000000000000000002b5aa521e7cbb711691ec44a9c83a673fadd849c0000000000000000000000003ad5438542915e03ed6319945e8aceca5b00d4430000000000000000000000002dac31adce56a46b02e20ff4a4d9cfc1cd47558c000000000000000000000000540a0027509b1c9aa0a2c5c65491cc97083e16de0000000000000000000000002dac31adce56a46b02e20ff4a4d9cfc1cd47558c00000000000000000000000067d9c7c771974262b6c294bbf5b4598240bdaf770000000000000000000000007bd54716a4d35a74b8dd206b75a82cbf2cdfa8c40000000000000000000000003b55b766763a52acd8c34a706230c02521510b22000000000000000000000000248394e08db89bf53821532903080fd86fd19245000000000000000000000000cc72abc33938ae68e96b9b848a9714640ff23f4000000000000000000000000068dd9482b37820ca173e5521067f86f33d149815000000000000000000000000a720a99f855ee2895e1ae07fbdbe1b3719890d520000000000000000000000007db5d18c85a00e2055ad0a5402acd4cc1fae0f7d00000000000000000000000056d0d563346b406d4dd845121fd15ef28dbb912a000000000000000000000000839271ef8feba0466cea5cfae4daa991c3435e9100000000000000000000000063b9d29157ed949f4fc601c8c07385c8b6a3732600000000000000000000000074b799bb7f82d6b03fcd99a50a9e7d3f59f3daa20000000000000000000000000b31aca8dea403e6dc51c0415829bc57ffbbd2930000000000000000000000007f837f783340b9af44aefea1cc08b617713a201e0000000000000000000000007dcc2a79c776ddd03e9717eb1b05faddb15bc16d00000000000000000000000073ebc16c53a16f092381778ddb45e94dc543f6c800000000000000000000000067d9c7c771974262b6c294bbf5b4598240bdaf7700000000000000000000000023a9e920f3af035ef518b6ae94d4a9a12cd63cb7000000000000000000000000df7761f879f092c4d9275f128b004d128f2dcbd0000000000000000000000000e5d14cb5775eb034156892c4b2685236901228c200000000000000000000000069f34c600f58e833688c595929dda89a859e98630000000000000000000000002ed04769f6363e96d76409f6c3f863eea6d0ff67000000000000000000000000508da5b3b5f19be4d8871732e5010b5282eb174400000000000000000000000097e7738e4bdd2049c536aec24825e3565379688d0000000000000000000000001f9be3f3c37df4d723aeeb1cb8aedaa7ff15f320000000000000000000000000f108933778c6ac9e987bdf8dbc3e217fa726157b0000000000000000000000002821a2f5afac850251646568e50416554783f9af00000000000000000000000083786a20271cc6aa3decdc421c314eb12f8eb46d

Deployed Bytecode

0x60806040526004361061026a5760003560e01c80636db3873111610144578063ab3c72cf116100b6578063d79779b21161007a578063d79779b214610b7a578063e33b7de314610bc3578063e985e9c514610bff578063e99b087914610c4a578063f242432a14610ca0578063fcaa766414610cc957600080fd5b8063ab3c72cf14610a03578063bd85b03914610a2c578063ce7c2ac214610a8d578063d547741f14610b1a578063d5a28cd214610b4357600080fd5b80638b83209b116101085780638b83209b1461089357806391d14854146108e45780639852595c1461092f5780639c0e4e9a14610978578063a217fddf146109a1578063a22cb465146109da57600080fd5b80636db38731146107755780636e3e2e75146107b257806375b238fc146107ef57806380a64abc146108455780638456cb591461087c57600080fd5b80633a98ef39116101dd57806340c10f19116101a157806340c10f191461063457806347825edd1461065057806348b75044146106795780634e1273f4146106a25780634f558e79146106df5780635c975abb1461072a57600080fd5b80633a98ef39146105385780633c34a619146105745780633eb1d777146105ab5780633f4ba83a146105d4578063406072a9146105eb57600080fd5b8063191655871161022f5780631916558714610405578063248a9ca31461042e5780632eb2c2d6146104925780632f2ff15d146104bb5780632f77ff1f146104e457806336568abe1461050f57600080fd5b8062fdd58e146102d457806301ffc9a71461031d578063027752401461036857806302fe53051461039f5780630e89341c146103c857600080fd5b366102cf577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061029b600033905090565b346040516102c5929190600060408201905060018060a01b03841682528260208301529392505050565b60405180910390a1005b600080fd5b3480156102e057600080fd5b506102fb60048036038101906102f69190614c81565b610d05565b6040516103149190600060208201905082825292915050565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f9190614cc9565b610e2d565b60405161035f91906000602082019050821515825292915050565b60405180910390f35b34801561037457600080fd5b5061037d600581565b6040516103969190600060208201905082825292915050565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190614d95565b610e3f565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190614dea565b610e81565b6040516103fc9190614e67565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190614e82565b610ebc565b005b34801561043a57600080fd5b5061047060048036038101906104509190614ea9565b600060046000838152602001908152602001600020600101549050919050565b6040516104899190600060208201905082825292915050565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190614f90565b611087565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190615042565b61118d565b005b3480156104f057600080fd5b506104f96111d4565b6040516105069190614e67565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190615042565b61138f565b005b34801561054457600080fd5b506105526000600654905090565b60405161056b9190600060208201905082825292915050565b60405180910390f35b34801561058057600080fd5b50610589600181565b6040516105a29190600060208201905082825292915050565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190614dea565b611474565b005b3480156105e057600080fd5b506105e9611546565b005b3480156105f757600080fd5b50610612600480360381019061060d9190615072565b611586565b60405161062b9190600060208201905082825292915050565b60405180910390f35b61064e60048036038101906106499190614c81565b61160d565b005b34801561065c57600080fd5b5061067760048036038101906106729190615132565b611625565b005b34801561068557600080fd5b506106a0600480360381019061069b9190615072565b611788565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190615179565b611a7f565b6040516106d6919061521f565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190614dea565b611bf7565b60405161072191906000602082019050821515825292915050565b60405180910390f35b34801561073657600080fd5b506107516000600560009054906101000a900460ff16905090565b60405161076c91906000602082019050821515825292915050565b60405180910390f35b34801561078157600080fd5b50610790667c58508723800081565b6040516107a99190600060208201905082825292915050565b60405180910390f35b3480156107be57600080fd5b506107cd66f8b0a10e47000081565b6040516107e69190600060208201905082825292915050565b60405180910390f35b3480156107fb57600080fd5b506108237fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b60405161083c9190600060208201905082825292915050565b60405180910390f35b34801561085157600080fd5b5061085a600281565b6040516108739190600060208201905082825292915050565b60405180910390f35b34801561088857600080fd5b50610891611c23565b005b34801561089f57600080fd5b506108ba60048036038101906108b59190614dea565b611c63565b6040516108db9190600060208201905060018060a01b038316825292915050565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190615042565b611cab565b60405161092691906000602082019050821515825292915050565b60405180910390f35b34801561093b57600080fd5b506109566004803603810190610951919061523a565b611d16565b60405161096f9190600060208201905082825292915050565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190615261565b611d5f565b005b3480156109ad57600080fd5b506109b86000801b81565b6040516109d19190600060208201905082825292915050565b60405180910390f35b3480156109e657600080fd5b50610a0160048036038101906109fc91906152a2565b611f39565b005b348015610a0f57600080fd5b50610a2a6004803603810190610a259190614e82565b611f52565b005b348015610a3857600080fd5b50610a6b6004803603810190610a4e9190614dea565b600060036000838152602001908152602001600020549050919050565b604051610a849190600060208201905082825292915050565b60405180910390f35b348015610a9957600080fd5b50610af86004803603810190610aaf919061523a565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b604051610b119190600060208201905082825292915050565b60405180910390f35b348015610b2657600080fd5b50610b416004803603810190610b3c9190615042565b611f5e565b005b348015610b4f57600080fd5b50610b58600081565b604051610b719190600060208201905082825292915050565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c91906152dd565b611fa5565b604051610bba9190600060208201905082825292915050565b60405180910390f35b348015610bcf57600080fd5b50610bdd6000600754905090565b604051610bf69190600060208201905082825292915050565b60405180910390f35b348015610c0b57600080fd5b50610c266004803603810190610c219190615304565b611fee565b604051610c4191906000602082019050821515825292915050565b60405180910390f35b348015610c5657600080fd5b50610c7e7fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda81565b604051610c979190600060208201905082825292915050565b60405180910390f35b348015610cac57600080fd5b50610cc76004803603810190610cc2919061533f565b612193565b005b348015610cd557600080fd5b50610ce36000600d54905090565b604051610cfc9190600060208201905082825292915050565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc9060208152602b60208201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201527f65726f206164647265737300000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610e3882612694565b9050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610e7481610e6f600033905090565b61270e565b610e7d826127ab565b5050565b6060610e8c826127c5565b610e9583612859565b604051602001610ea69291906153b9565b6040516020818303038152906040529050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f35906153ee565b60405180910390fd5b6000610f4d6000600754905090565b47610f589190615468565b90506000610f6f8383610f6a86611d16565b6129b9565b90506000811415610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90615487565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110049190615468565b92505081905550806007600082825461101d9190615468565b9250508190555061102e8382612a27565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056838260405161107a929190600060408201905060018060a01b03841682528260208301529392505050565b60405180910390a1505050565b611092600033905090565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110db57506110da856110d5600033905090565b611fee565b5b611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111709060208152603260208201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6111868585858585612bb8565b5050505050565b6111b182600060046000838152602001908152602001600020600101549050919050565b6111c5816111c0600033905090565b61270e565b6111cf8383612ecf565b505050565b606060006040518060400160405280600181526020017f7b00000000000000000000000000000000000000000000000000000000000000815250905060005b601180549050811015611365576000811461124b578160405160200161123991906154eb565b60405160208183030381529060405291505b816112a96011838154811061126357611262615532565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612fb3565b61132f60126000601186815481106112c4576112c3615532565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612859565b60405160200161134193929190615548565b6040516020818303038152906040529150808061135d906155af565b915050611213565b508060405160200161137791906155ce565b60405160208183030381529060405290508091505090565b61139a600033905090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d9060208152602f60208201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201527f20726f6c657320666f722073656c66000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6114708282613038565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756114a9816114a4600033905090565b61270e565b60008214806114b85750600182145b806114c35750600282145b61153b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115329060208152601060208201527f496e76616c69642053746167652d49440000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b81600d819055505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561157b81611576600033905090565b61270e565b61158361311d565b50565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6116178282613221565b611621828261370d565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561165a81611655600033905090565b61270e565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758214806116a757507fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda82145b61171f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117169060208152601260208201527f556e61626c6520546f2053657420526f6c65000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b60005b83518110156117825761176f7fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda85838151811061176257611761615532565b5b602002602001015161118d565b808061177a906155af565b915050611722565b50505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161180a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611801906153ee565b60405180910390fd5b600061181583611fa5565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118629190600060208201905060018060a01b038316825292915050565b60206040518083038186803b15801561187a57600080fd5b505afa15801561188e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b29190615615565b6118bc9190615468565b905060006118d483836118cf8787611586565b6129b9565b9050600081141561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190615487565b60405180910390fd5b80600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119a69190615468565b9250508190555080600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119fc9190615468565b92505081905550611a0e84848361397c565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8483604051611a71929190600060408201905060018060a01b03841682528260208301529392505050565b60405180910390a250505050565b60608151835114611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b9060208152602960208201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860408201527f206d69736d61746368000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6000835167ffffffffffffffff811115611b4157611b40614cf0565b5b604051908082528060200260200182016040528015611b6f5781602001602082028036833780820191505090505b50905060005b8451811015611bec57611bbc858281518110611b9457611b93615532565b5b6020026020010151858381518110611baf57611bae615532565b5b6020026020010151610d05565b828281518110611bcf57611bce615532565b5b60200260200101818152505080611be5906155af565b9050611b75565b508091505092915050565b600080611c1b83600060036000838152602001908152602001600020549050919050565b119050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611c5881611c53600033905090565b61270e565b611c60613a1d565b50565b6000600a8281548110611c7957611c78615532565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611d9481611d8f600033905090565b61270e565b611da16000801b33611cab565b1580611dcd57507fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758214155b611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c9060208152601560208201527f4f776e65722043616e742042652052656d6f766564000000000000000000000060408201526000606082019050919050565b60405180910390fd5b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775821480611e9257507fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda82145b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f019060208152601260208201527f556e61626c6520546f2053657420526f6c65000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b611f347fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda84611f5e565b505050565b611f4e611f47600033905090565b8383613b22565b5050565b611f5b81610ebc565b50565b611f8282600060046000838152602001908152602001600020600101549050919050565b611f9681611f91600033905090565b61270e565b611fa08383613038565b505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161207a9190600060208201905060018060a01b038316825292915050565b60206040518083038186803b15801561209257600080fd5b505afa1580156120a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ca9190615631565b73ffffffffffffffffffffffffffffffffffffffff1614156120f057600191505061218d565b61218984846000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b9150505b92915050565b61219e600033905090565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806121e757506121e6856121e1600033905090565b611fee565b5b612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c9060208152602960208201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201527f20617070726f766564000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b6122928585858585613cfc565b5050505050565b6060600060028360026122ac9190615658565b6122b69190615468565b67ffffffffffffffff8111156122cf576122ce614cf0565b5b6040519080825280601f01601f1916602001820160405280156123015781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061233957612338615532565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061239d5761239c615532565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026123dd9190615658565b6123e79190615468565b90505b6001811115612487577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061242957612428615532565b5b1a60f81b8282815181106124405761243f615532565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806124809061567e565b90506123ea565b5060008414612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90602081526020808201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460408201526000606082019050919050565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156125bf5760005b83518110156125bd5782818151811061256157612560615532565b5b6020026020010151600360008684815181106125805761257f615532565b5b6020026020010151815260200190815260200160002060008282546125a59190615468565b92505081905550806125b6906155af565b9050612545565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126715760005b835181101561266f5782818151811061261357612612615532565b5b60200260200101516003600086848151811061263257612631615532565b5b602002602001015181526020019081526020016000206000828254612657919061569a565b9250508190555080612668906155af565b90506125f7565b505b505050505050565b600080823b905060008111915050919050565b505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612707575061270682613f94565b5b9050919050565b6127188282611cab565b6127a75761273d8173ffffffffffffffffffffffffffffffffffffffff166014612299565b61274b8360001c6020612299565b60405160200161275c9291906156b8565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e9190614e67565b60405180910390fd5b5050565b80600290805190602001906127c1929190614bc7565b5050565b6060600280546127d49061573f565b80601f01602080910402602001604051908101604052809291908181526020018280546128009061573f565b801561284d5780601f106128225761010080835404028352916020019161284d565b820191906000526020600020905b81548152906001019060200180831161283057829003601f168201915b50505050509050919050565b606060008214156128a1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050919050565b600082905060005b600082146128d35780806128bc906155af565b915050600a826128cc9190615794565b91506128a9565b60008167ffffffffffffffff8111156128ef576128ee614cf0565b5b6040519080825280601f01601f1916602001820160405280156129215781602001600182028036833780820191505090505b5090505b600085146129ae5760018261293a919061569a565b9150600a8561294991906157af565b60306129559190615468565b60f81b81838151811061296b5761296a615532565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a79190615794565b9450612925565b809350505050919050565b600081600654600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612a0a9190615658565b612a149190615794565b612a1e919061569a565b90509392505050565b80471015612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a9060208152601d60208201527f416464726573733a20696e73756666696369656e742062616c616e636500000060408201526000606082019050919050565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612ace906000819050919050565b60006040518083038185875af1925050503d8060008114612b0b576040519150601f19603f3d011682016040523d82523d6000602084013e612b10565b606091505b5050905080612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa9060208152603a60208201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d6179206861766520726576657274656400000000000060608201526000608082019050919050565b60405180910390fd5b505050565b8151835114612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf3906157ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c639061582e565b60405180910390fd5b6000612c79600033905090565b9050612c898187878787876140db565b60005b8451811015612e3a576000858281518110612caa57612ca9615532565b5b602002602001015190506000858381518110612cc957612cc8615532565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190615892565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e1f9190615468565b9250508190555050505080612e33906155af565b9050612c8c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612eb19291906158f6565b60405180910390a4612ec7818787878787614184565b505050505050565b612ed98282611cab565b612faf5760016004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612f54600033905090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60606000821415612ffb576040518060400160405280600481526020017f30783030000000000000000000000000000000000000000000000000000000008152509050919050565b600082905060005b60008214613025578080613016906155af565b915050600882901c9150613003565b61302f8482612299565b92505050919050565b6130428282611cab565b156131195760006004600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506130be600033905090565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6131376000600560009054906101000a900460ff16905090565b6131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a69060208152601460208201527f5061757361626c653a206e6f742070617573656400000000000000000000000060408201526000606082019050919050565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6131f6600033905090565b6040516132179190600060208201905060018060a01b038316825292915050565b60405180910390a1565b6000600d5414156132a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132979060208152601360208201527f4e6f204d696e74204265666f72652053616c650000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b60006132cc7fb19f08083a7d04c34e773355649fec12f93b2bd7638a37b19851676869ca6dda33611cab565b905060006132fa7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533611cab565b905080156133075761367c565b6001600d54141561341e578161338b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133829060208152600f60208201527f4e6f742057686974656c6973746564000000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b82667c58508723800061339e9190615658565b341015613419576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134109060208152601460208201527f496e73756666696369656e74205061796d656e7400000000000000000000000060408201526000606082019050919050565b60405180910390fd5b61352b565b6002600d541461349c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134939060208152600d60208201527f53616c65204e6f74204f70656e0000000000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b8266f8b0a10e4700006134af9190615658565b34101561352a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135219060208152601460208201527f496e73756666696369656e74205061796d656e7400000000000000000000000060408201526000606082019050919050565b60405180910390fd5b5b6005831115801561353c5750600083115b6135b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ab9060208152601360208201527f4d757374204d696e742035204f72204c6573730000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b600583601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136019190615468565b111561367b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136729060208152601c60208201527f4d6178204d696e747320466f722057616c6c657420526561636865640000000060408201526000606082019050919050565b60405180910390fd5b5b600e5483600f5461368d9190615468565b1115613707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fe9060208152601b60208201527f50757263686173652045786365656473204d617820537570706c79000000000060408201526000606082019050919050565b60405180910390fd5b50505050565b60008167ffffffffffffffff81111561372957613728614cf0565b5b6040519080825280602002602001820160405280156137575781602001602082028036833780820191505090505b50905060008267ffffffffffffffff81111561377657613775614cf0565b5b6040519080825280602002602001820160405280156137a45781602001602082028036833780820191505090505b5090506000600f5490506000601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561385a576011859080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60005b848110156138c45780826138719190615468565b83828151811061388457613883615532565b5b60200260200101818152505060018482815181106138a5576138a4615532565b5b60200260200101818152505080806138bc906155af565b91505061385d565b5083600f60008282546138d79190615468565b9250508190555083601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461392d9190615468565b925050819055506139758583856040518060400160405280600481526020017f3078303000000000000000000000000000000000000000000000000000000000815250614379565b5050505050565b613a188363a9059cbb60e01b84846040516024016139b6929190600060408201905060018060a01b03841682528260208301529392505050565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506145f9565b505050565b613a376000600560009054906101000a900460ff16905090565b15613ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aa79060208152601060208201527f5061757361626c653a207061757365640000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613af7600033905090565b604051613b189190600060208201905060018060a01b038316825292915050565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be79060208152602960208201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360408201527f20666f722073656c66000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613cef91906000602082019050821515825292915050565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d639061582e565b60405180910390fd5b6000613d79600033905090565b9050613d99818787613d8a8861471f565b613d938861471f565b876140db565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015613e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e2790615892565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ee59190615468565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051613f7592919060006040820190508382528260208301529392505050565b60405180910390a4613f8b828888888888614799565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061405f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806140d457506140d38260007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5b9050919050565b6140f56000600560009054906101000a900460ff16905090565b1561416e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141659060208152601060208201527f5061757361626c653a207061757365640000000000000000000000000000000060408201526000606082019050919050565b60405180910390fd5b61417c86868686868661250d565b505050505050565b6141b18473ffffffffffffffffffffffffffffffffffffffff16600080823b905060008111915050919050565b15614371578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016141f7959493929190615925565b602060405180830381600087803b15801561421157600080fd5b505af192505050801561424257506040513d601f19601f8201168201806040525081019061423f9190615983565b60015b6142e85761424e6159aa565b806308c379a014156142ab57506142636159c7565b8061426e57506142ad565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016142a29190614e67565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016142df90615a52565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461436f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161436690615ab6565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415614448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161443f9060208152602160208201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360408201527f730000000000000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b815183511461448c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614483906157ca565b60405180910390fd5b6000614499600033905090565b90506144aa816000878787876140db565b60005b8451811015614563578381815181106144c9576144c8615532565b5b60200260200101516000808784815181106144e7576144e6615532565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546145499190615468565b92505081905550808061455b906155af565b9150506144ad565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516145db9291906158f6565b60405180910390a46145f281600087878787614184565b5050505050565b600061465b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661498e9092919063ffffffff16565b905060008151111561471a578080602001905181019061467b9190615b1a565b614719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016147109060208152602a60208201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60408201527f6f7420737563636565640000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b5b505050565b60606000600167ffffffffffffffff81111561473e5761473d614cf0565b5b60405190808252806020026020018201604052801561476c5781602001602082028036833780820191505090505b509050828160008151811061478457614783615532565b5b60200260200101818152505080915050919050565b6147c68473ffffffffffffffffffffffffffffffffffffffff16600080823b905060008111915050919050565b15614986578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161480c959493929190615b41565b602060405180830381600087803b15801561482657600080fd5b505af192505050801561485757506040513d601f19601f820116820180604052508101906148549190615983565b60015b6148fd576148636159aa565b806308c379a014156148c057506148786159c7565b8061488357506148c2565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016148b79190614e67565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016148f490615a52565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614614984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161497b90615ab6565b60405180910390fd5b505b505050505050565b606061499d84846000856149a6565b90509392505050565b606082471015614a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614a419060208152602660208201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60408201527f722063616c6c000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b60405180910390fd5b614a6185600080823b905060008111915050919050565b614ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614ad09060208152601d60208201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060408201526000606082019050919050565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051614b029190615b84565b60006040518083038185875af1925050503d8060008114614b3f576040519150601f19603f3d011682016040523d82523d6000602084013e614b44565b606091505b5091509150614b54828286614b60565b92505050949350505050565b60608315614b7057829050614bc0565b600083511115614b835782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614bb79190614e67565b60405180910390fd5b9392505050565b828054614bd39061573f565b90600052602060002090601f016020900481019282614bf55760008555614c3c565b82601f10614c0e57805160ff1916838001178555614c3c565b82800160010185558215614c3c579182015b82811115614c3b578251825591602001919060010190614c20565b5b509050614c499190614c4d565b5090565b5b80821115614c66576000816000905550600101614c4e565b5090565b60018060a01b0381168114614c7e57600080fd5b50565b60008060408385031215614c9457600080fd5b8235614c9f81614c6a565b80925050602083013590509250929050565b63ffffffff60e01b81168114614cc657600080fd5b50565b600060208284031215614cdb57600080fd5b8135614ce681614cb1565b8091505092915050565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715614d2d57614d2c614cf0565b5b80604052505050565b600067ffffffffffffffff831115614d5157614d50614cf0565b5b604051614d686020601f19601f8701160182614d06565b809150838152848484011115614d7d57600080fd5b83836020830137600060208583010152509392505050565b600060208284031215614da757600080fd5b813567ffffffffffffffff811115614dbe57600080fd5b808301905083601f820112614dd257600080fd5b614de184823560208401614d36565b91505092915050565b600060208284031215614dfc57600080fd5b8135905092915050565b60005b83811015614e24578082015181840152602081019050614e09565b83811115614e33576000848401525b50505050565b60008151808452614e51816020860160208601614e06565b6020601f19601f83011685010191505092915050565b602081526000614e7a6020830184614e39565b905092915050565b600060208284031215614e9457600080fd5b8135614e9f81614c6a565b8091505092915050565b600060208284031215614ebb57600080fd5b8135905092915050565b600067ffffffffffffffff821115614ee057614edf614cf0565b5b60208260051b019050919050565b600082601f830112614eff57600080fd5b81356020614f0c82614ec5565b604051614f198282614d06565b8091508381528281019150828460051b870101935086841115614f3b57600080fd5b8286015b84811015614f5a578035835283830192508381019050614f3f565b508094505050505092915050565b600082601f830112614f7957600080fd5b614f8883833560208501614d36565b905092915050565b600080600080600060a08688031215614fa857600080fd5b8535614fb381614c6a565b809550506020860135614fc581614c6a565b80945050604086013567ffffffffffffffff80821115614fe457600080fd5b614ff089838a01614eee565b9450606088013591508082111561500657600080fd5b61501289838a01614eee565b9350608088013591508082111561502857600080fd5b5061503588828901614f68565b9150509295509295909350565b6000806040838503121561505557600080fd5b82359150602083013561506781614c6a565b809150509250929050565b6000806040838503121561508557600080fd5b823561509081614c6a565b8092505060208301356150a281614c6a565b809150509250929050565b600082601f8301126150be57600080fd5b813560206150cb82614ec5565b6040516150d88282614d06565b8091508381528281019150828460051b8701019350868411156150fa57600080fd5b8286015b8481101561512457803561511181614c6a565b80845250838301925083810190506150fe565b508094505050505092915050565b6000806040838503121561514557600080fd5b823567ffffffffffffffff81111561515c57600080fd5b615168858286016150ad565b925050602083013590509250929050565b6000806040838503121561518c57600080fd5b823567ffffffffffffffff808211156151a457600080fd5b6151b0868387016150ad565b935060208501359150808211156151c657600080fd5b506151d385828601614eee565b9150509250929050565b600081518084526020808501945080840160005b838110156152125781518752828701965082820191506001810190506151f1565b5050505082905092915050565b60208152600061523260208301846151dd565b905092915050565b60006020828403121561524c57600080fd5b813561525781614c6a565b8091505092915050565b6000806040838503121561527457600080fd5b823561527f81614c6a565b80925050602083013590509250929050565b801515811461529f57600080fd5b50565b600080604083850312156152b557600080fd5b82356152c081614c6a565b8092505060208301356152d281615291565b809150509250929050565b6000602082840312156152ef57600080fd5b81356152fa81614c6a565b8091505092915050565b6000806040838503121561531757600080fd5b823561532281614c6a565b80925050602083013561533481614c6a565b809150509250929050565b600080600080600060a0868803121561535757600080fd5b853561536281614c6a565b80955050602086013561537481614c6a565b809450506040860135925060608601359150608086013567ffffffffffffffff8111156153a057600080fd5b6153ac88828901614f68565b9150509295509295909350565b600083516153cb818460208801614e06565b808301905083516153e0818360208801614e06565b808201925050509392505050565b60208152602660208201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201527f736861726573000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561547c5761547b615452565b5b828201905092915050565b60208152602b60208201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201527f647565207061796d656e7400000000000000000000000000000000000000000060608201526000608082019050919050565b600082516154fd818460208701614e06565b80830190507f2c0000000000000000000000000000000000000000000000000000000000000081526001810191505092915050565b634e487b7160e01b600052603260045260246000fd5b6000845161555a818460208901614e06565b8083019050601160f91b81528451615579816001840160208901614e06565b80820191505061111d60f11b6001820152835161559d816003840160208801614e06565b60038183010192505050949350505050565b600080198214156155c3576155c2615452565b5b600182019050919050565b600082516155e0818460208701614e06565b80830190507f7d0000000000000000000000000000000000000000000000000000000000000081526001810191505092915050565b60006020828403121561562757600080fd5b8151905092915050565b60006020828403121561564357600080fd5b815161564e81614c6a565b8091505092915050565b600081600019048311821515161561567357615672615452565b5b828202905092915050565b60008161568e5761568d615452565b5b60001982019050919050565b6000828210156156ad576156ac615452565b5b828203905092915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516156f0816017850160208801614e06565b80830190507f206973206d697373696e6720726f6c65200000000000000000000000000000006017820152835161572e816028840160208801614e06565b602881830101925050509392505050565b60008160011c9050600182168061575757607f821691505b6020821081141561577857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601260045260246000fd5b6000826157a4576157a361577e565b5b828204905092915050565b6000826157bf576157be61577e565b5b828206905092915050565b60208152602860208201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060408201527f6d69736d6174636800000000000000000000000000000000000000000000000060608201526000608082019050919050565b60208152602560208201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460408201527f647265737300000000000000000000000000000000000000000000000000000060608201526000608082019050919050565b60208152602a60208201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201527f72207472616e736665720000000000000000000000000000000000000000000060608201526000608082019050919050565b60408152600061590960408301856151dd565b828103602084015261591b81856151dd565b9150509392505050565b600060018060a01b03808816835280871660208401525060a0604083015261595060a08301866151dd565b828103606084015261596281866151dd565b905082810360808401526159768185614e39565b9150509695505050505050565b60006020828403121561599557600080fd5b81516159a081614cb1565b8091505092915050565b600060033d11156159c45760046000803e60005160e01c90505b90565b600060443d10156159d55790565b604051600319803d016004833e81513d67ffffffffffffffff8160248401118184111715615a0557505050505090565b8285019150815181811115615a1d5750505050505090565b843d8701016020828501011115615a375750505050505090565b615a4660208286010187614d06565b50508094505050505090565b60208152603460208201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560408201527f526563656976657220696d706c656d656e74657200000000000000000000000060608201526000608082019050919050565b60208152602860208201527f455243313135353a204552433131353552656365697665722072656a6563746560408201527f6420746f6b656e7300000000000000000000000000000000000000000000000060608201526000608082019050919050565b600060208284031215615b2c57600080fd5b8151615b3781615291565b8091505092915050565b600060018060a01b03808816835280871660208401525084604083015283606083015260a06080830152615b7860a0830184614e39565b90509695505050505050565b60008251615b96818460208701614e06565b8083019150509291505056fea2646970667358221220f74ea79b0263979b0a6e1f72d52e436c48c6d51e7678ea199ddfc529d164289664736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000000600000000000000000000000015ee8f389018ef061037e211e4360385d14edc0a000000000000000000000000509029e80ef4194de8f4714aa68c59c48d7afde60000000000000000000000004138b71640b2415eb2acd9f657dacf4f9503a8bc000000000000000000000000c15ce1522f66bc8b161ecd7a6e49b30477ba1a0e000000000000000000000000fbfb862f8e0e65a9e9c2c1016c998d163306fc230000000000000000000000007e8b3c0ba0f6337aaedd9cdec8c1e807d1f84ef80000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f617274776f726b2e667572727968656164732e6172742f3f6974656d3d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023000000000000000000000000c15ce1522f66bc8b161ecd7a6e49b30477ba1a0e0000000000000000000000007e8b3c0ba0f6337aaedd9cdec8c1e807d1f84ef80000000000000000000000002b5aa521e7cbb711691ec44a9c83a673fadd849c0000000000000000000000003ad5438542915e03ed6319945e8aceca5b00d4430000000000000000000000002dac31adce56a46b02e20ff4a4d9cfc1cd47558c000000000000000000000000540a0027509b1c9aa0a2c5c65491cc97083e16de0000000000000000000000002dac31adce56a46b02e20ff4a4d9cfc1cd47558c00000000000000000000000067d9c7c771974262b6c294bbf5b4598240bdaf770000000000000000000000007bd54716a4d35a74b8dd206b75a82cbf2cdfa8c40000000000000000000000003b55b766763a52acd8c34a706230c02521510b22000000000000000000000000248394e08db89bf53821532903080fd86fd19245000000000000000000000000cc72abc33938ae68e96b9b848a9714640ff23f4000000000000000000000000068dd9482b37820ca173e5521067f86f33d149815000000000000000000000000a720a99f855ee2895e1ae07fbdbe1b3719890d520000000000000000000000007db5d18c85a00e2055ad0a5402acd4cc1fae0f7d00000000000000000000000056d0d563346b406d4dd845121fd15ef28dbb912a000000000000000000000000839271ef8feba0466cea5cfae4daa991c3435e9100000000000000000000000063b9d29157ed949f4fc601c8c07385c8b6a3732600000000000000000000000074b799bb7f82d6b03fcd99a50a9e7d3f59f3daa20000000000000000000000000b31aca8dea403e6dc51c0415829bc57ffbbd2930000000000000000000000007f837f783340b9af44aefea1cc08b617713a201e0000000000000000000000007dcc2a79c776ddd03e9717eb1b05faddb15bc16d00000000000000000000000073ebc16c53a16f092381778ddb45e94dc543f6c800000000000000000000000067d9c7c771974262b6c294bbf5b4598240bdaf7700000000000000000000000023a9e920f3af035ef518b6ae94d4a9a12cd63cb7000000000000000000000000df7761f879f092c4d9275f128b004d128f2dcbd0000000000000000000000000e5d14cb5775eb034156892c4b2685236901228c200000000000000000000000069f34c600f58e833688c595929dda89a859e98630000000000000000000000002ed04769f6363e96d76409f6c3f863eea6d0ff67000000000000000000000000508da5b3b5f19be4d8871732e5010b5282eb174400000000000000000000000097e7738e4bdd2049c536aec24825e3565379688d0000000000000000000000001f9be3f3c37df4d723aeeb1cb8aedaa7ff15f320000000000000000000000000f108933778c6ac9e987bdf8dbc3e217fa726157b0000000000000000000000002821a2f5afac850251646568e50416554783f9af00000000000000000000000083786a20271cc6aa3decdc421c314eb12f8eb46d

-----Decoded View---------------
Arg [0] : _payees (address[]): 0x15eE8f389018Ef061037e211E4360385D14EDc0a,0x509029E80Ef4194DE8f4714Aa68c59c48d7AfDE6,0x4138B71640b2415EB2acD9f657dAcf4f9503A8BC,0xc15CE1522f66bc8b161EcD7a6E49B30477Ba1a0E,0xfbfB862F8E0e65A9E9C2C1016C998d163306Fc23,0x7e8b3C0BA0F6337AaEdD9cdEC8C1E807d1F84ef8
Arg [1] : _shares (uint256[]): 10,8,35,38,2,7
Arg [2] : _maxMints (uint256): 8192
Arg [3] : _authorMint (uint256): 0
Arg [4] : tokenUri (string): https://artwork.furryheads.art/?item=
Arg [5] : _whitelist (address[]): 0xc15CE1522f66bc8b161EcD7a6E49B30477Ba1a0E,0x7e8b3C0BA0F6337AaEdD9cdEC8C1E807d1F84ef8,0x2B5Aa521e7Cbb711691EC44a9C83a673fAdd849c,0x3Ad5438542915E03ED6319945e8aCEca5b00D443,0x2daC31aDcE56A46B02E20fF4A4D9cfC1cd47558c,0x540a0027509B1C9aA0a2c5C65491cC97083E16de,0x2daC31aDcE56A46B02E20fF4A4D9cfC1cd47558c,0x67D9C7C771974262B6C294bBF5b4598240bDaf77,0x7BD54716a4d35a74B8dD206b75a82cBf2CDfa8C4,0x3b55B766763A52AcD8C34a706230C02521510B22,0x248394E08db89bf53821532903080fd86FD19245,0xCc72abC33938AE68E96B9b848A9714640fF23F40,0x68dd9482b37820ca173e5521067F86f33D149815,0xA720A99f855EE2895e1Ae07fbDbE1b3719890d52,0x7Db5d18c85a00e2055AD0a5402aCD4CC1fae0F7d,0x56d0d563346B406D4dD845121FD15EF28DbB912a,0x839271EF8feBA0466CEA5cfae4DAA991c3435E91,0x63B9D29157eD949f4fc601c8c07385c8B6A37326,0x74B799Bb7F82D6b03fcd99A50A9E7D3F59f3daA2,0x0B31acA8DEA403E6dC51c0415829bC57FfBBd293,0x7f837F783340B9AF44AeFea1Cc08b617713A201E,0x7dcC2A79c776DdD03E9717EB1B05fadDb15Bc16D,0x73eBc16c53A16F092381778DDB45e94Dc543F6C8,0x67D9C7C771974262B6C294bBF5b4598240bDaf77,0x23A9e920F3aF035Ef518B6ae94d4a9a12CD63cb7,0xDF7761f879f092c4d9275f128B004D128F2dcbD0,0xE5D14cb5775eb034156892C4B2685236901228c2,0x69F34C600f58e833688c595929ddA89A859e9863,0x2eD04769F6363E96D76409f6C3F863eeA6d0FF67,0x508Da5b3b5f19BE4d8871732E5010B5282EB1744,0x97e7738e4BDD2049c536aeC24825e3565379688D,0x1f9BE3F3c37df4D723AeEb1Cb8AedAA7fF15F320,0xF108933778c6aC9e987BDF8DBc3E217fa726157b,0x2821A2f5afaC850251646568E50416554783F9Af,0x83786A20271CC6AA3dEcDc421C314eB12f8eB46d
Arg [6] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
60 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 00000000000000000000000000000000000000000000000000000000000002a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000300
Arg [6] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 00000000000000000000000015ee8f389018ef061037e211e4360385d14edc0a
Arg [9] : 000000000000000000000000509029e80ef4194de8f4714aa68c59c48d7afde6
Arg [10] : 0000000000000000000000004138b71640b2415eb2acd9f657dacf4f9503a8bc
Arg [11] : 000000000000000000000000c15ce1522f66bc8b161ecd7a6e49b30477ba1a0e
Arg [12] : 000000000000000000000000fbfb862f8e0e65a9e9c2c1016c998d163306fc23
Arg [13] : 0000000000000000000000007e8b3c0ba0f6337aaedd9cdec8c1e807d1f84ef8
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [15] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [22] : 68747470733a2f2f617274776f726b2e667572727968656164732e6172742f3f
Arg [23] : 6974656d3d000000000000000000000000000000000000000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [25] : 000000000000000000000000c15ce1522f66bc8b161ecd7a6e49b30477ba1a0e
Arg [26] : 0000000000000000000000007e8b3c0ba0f6337aaedd9cdec8c1e807d1f84ef8
Arg [27] : 0000000000000000000000002b5aa521e7cbb711691ec44a9c83a673fadd849c
Arg [28] : 0000000000000000000000003ad5438542915e03ed6319945e8aceca5b00d443
Arg [29] : 0000000000000000000000002dac31adce56a46b02e20ff4a4d9cfc1cd47558c
Arg [30] : 000000000000000000000000540a0027509b1c9aa0a2c5c65491cc97083e16de
Arg [31] : 0000000000000000000000002dac31adce56a46b02e20ff4a4d9cfc1cd47558c
Arg [32] : 00000000000000000000000067d9c7c771974262b6c294bbf5b4598240bdaf77
Arg [33] : 0000000000000000000000007bd54716a4d35a74b8dd206b75a82cbf2cdfa8c4
Arg [34] : 0000000000000000000000003b55b766763a52acd8c34a706230c02521510b22
Arg [35] : 000000000000000000000000248394e08db89bf53821532903080fd86fd19245
Arg [36] : 000000000000000000000000cc72abc33938ae68e96b9b848a9714640ff23f40
Arg [37] : 00000000000000000000000068dd9482b37820ca173e5521067f86f33d149815
Arg [38] : 000000000000000000000000a720a99f855ee2895e1ae07fbdbe1b3719890d52
Arg [39] : 0000000000000000000000007db5d18c85a00e2055ad0a5402acd4cc1fae0f7d
Arg [40] : 00000000000000000000000056d0d563346b406d4dd845121fd15ef28dbb912a
Arg [41] : 000000000000000000000000839271ef8feba0466cea5cfae4daa991c3435e91
Arg [42] : 00000000000000000000000063b9d29157ed949f4fc601c8c07385c8b6a37326
Arg [43] : 00000000000000000000000074b799bb7f82d6b03fcd99a50a9e7d3f59f3daa2
Arg [44] : 0000000000000000000000000b31aca8dea403e6dc51c0415829bc57ffbbd293
Arg [45] : 0000000000000000000000007f837f783340b9af44aefea1cc08b617713a201e
Arg [46] : 0000000000000000000000007dcc2a79c776ddd03e9717eb1b05faddb15bc16d
Arg [47] : 00000000000000000000000073ebc16c53a16f092381778ddb45e94dc543f6c8
Arg [48] : 00000000000000000000000067d9c7c771974262b6c294bbf5b4598240bdaf77
Arg [49] : 00000000000000000000000023a9e920f3af035ef518b6ae94d4a9a12cd63cb7
Arg [50] : 000000000000000000000000df7761f879f092c4d9275f128b004d128f2dcbd0
Arg [51] : 000000000000000000000000e5d14cb5775eb034156892c4b2685236901228c2
Arg [52] : 00000000000000000000000069f34c600f58e833688c595929dda89a859e9863
Arg [53] : 0000000000000000000000002ed04769f6363e96d76409f6c3f863eea6d0ff67
Arg [54] : 000000000000000000000000508da5b3b5f19be4d8871732e5010b5282eb1744
Arg [55] : 00000000000000000000000097e7738e4bdd2049c536aec24825e3565379688d
Arg [56] : 0000000000000000000000001f9be3f3c37df4d723aeeb1cb8aedaa7ff15f320
Arg [57] : 000000000000000000000000f108933778c6ac9e987bdf8dbc3e217fa726157b
Arg [58] : 0000000000000000000000002821a2f5afac850251646568e50416554783f9af
Arg [59] : 00000000000000000000000083786a20271cc6aa3decdc421c314eb12f8eb46d


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.