ETH Price: $3,426.13 (+5.51%)
Gas: 6 Gwei

Token

Founding Agents (FA)
 

Overview

Max Total Supply

999 FA

Holders

199

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FA
0x530c4d2e3d9eaab672f918384a093c314d914f29
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FoundingAgents

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-05
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

/// @title Fouding Agents
/// @author André Costa @ Digits Brands


// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// 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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


/**
 * @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);
    }
}

// Part: OpenZeppelin/[email protected]/IERC20

/**
 * @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);
}


interface IDigitsRedeemer {
    /**
     * @dev Returns if the `tokenId` has been staked and therefore blocking transfers.
     */
    function isStaked(uint tokenId) external view returns (bool);
}


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

pragma solidity ^0.8.9;

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.9;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Ownable, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    //connects to the redeemer contract
    IDigitsRedeemer public DigitsRedeemer;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
        To set the address of the digits redeemer contract
     */
    function setDigitsRedeemer(address newRedeemer) public onlyOwner {
        DigitsRedeemer = IDigitsRedeemer(newRedeemer);
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        require(!DigitsRedeemer.isStaked(tokenId), "Token is Staked!");
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract FoundingAgents is ERC721A, ReentrancyGuard {
    using Strings for uint256;

    //NOTE Token values incremented for gas efficiency
    uint256 public maxSalePlusOne = 1000;
    uint256 public tokenPricePublic = 0.99 ether;
    uint256 public tokenPriceWhitelist = 0.69 ether;

    uint256 public tokenPricePublicBytes = 125000000000000000000;
    uint256 public tokenPriceWhitelistBytes = 100000000000000000000;

    IERC20 public BYTES;

    uint public publicMintAllowancePlusOne = 10;
    uint public whitelistMintAllowancePlusOne = 10;
    uint public presale1MintAllowancePlusOne = 3;
    uint public presale2MintAllowancePlusOne = 5;

    enum ContractState {
        OFF,
        PRESALE,
        PUBLIC
    }
    ContractState public contractState = ContractState.OFF;

    string public placeholderURI;
    string public baseURI;

    address public recipient;

    //sigmer address that we use to sign the mint transaction to make sure it is valid
    address private signer = 0x80E4929c869102140E69550BBECC20bEd61B080c;

    constructor() ERC721A("Founding Agents", "FA") {
        placeholderURI = "ipfs://Qme7LaNmJ87JxV9QRwybRVx6tw4fK3SR5QRBLTjghuC9DN";

        BYTES = IERC20(0x7d647b1A0dcD5525e9C6B3D14BE58f27674f8c95);
    
    }

    //
    // Modifiers
    //

    /**
     * Do not allow calls from other contracts.
     */
    modifier noBots() {
        require(msg.sender == tx.origin, "No bots!");
        _;
    }

    /**
     * Ensure current state is correct for this method.
     */
    modifier isContractState(ContractState contractState_) {
        require(contractState == contractState_, "Invalid state");
        _;
    }

    /**
     * Ensure amount of tokens to mint is within the limit.
     */
    modifier withinMintLimit(uint256 quantity) {
        require((totalSupply() + quantity) < maxSalePlusOne, "Exceeds available tokens");
        _;
    }

    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s, uint sale) {
        require( isValidAccessMessage(msg.sender,_v,_r,_s, sale), 'Invalid Signature' );
        _;
    }
 
    /* 
    * @dev Verifies if message was signed by owner to give access to _add for this contract.
    *      Assumes Geth signature prefix.
    * @param _add Address of agent with access
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    * @return Validity of access message for a given address.
    */
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s, uint sale) view public returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(address(this), _add, sale));
        return signer == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s);
    }

    //
    // Mint
    //

    /**
     * Public mint.
     * @param quantity Amount of tokens to mint.
     */
    function mintPublic(uint256 quantity, bool isBytes)
        external
        payable
        noBots
        isContractState(ContractState.PUBLIC)
        withinMintLimit(quantity)
    {
        require(_numberMinted(msg.sender) + quantity < publicMintAllowancePlusOne, "Maximum number of NFTs allowed to Mint reached!");
        if (isBytes) {
            BYTES.transferFrom(msg.sender, address(this), quantity * tokenPricePublicBytes);
        }
        else {
            require(msg.value >= tokenPricePublic * quantity, "Insufficient Funds!");
        }
        _safeMint(msg.sender, quantity);
    }

    /**
     * Mint tokens during the presale.
     * @notice This function is only available to those on the allowlist.
     * @param quantity The number of tokens to mint.
     * @param isBytes if the user is paying in bytes or eth
     */
    function mintWhitelist(uint256 quantity, bool isBytes, uint8 _v, bytes32 _r, bytes32 _s)
        external
        payable
        isContractState(ContractState.PRESALE)
        withinMintLimit(quantity)
        onlyValidAccess(_v,  _r, _s, 1)
    {
        require(_numberMinted(msg.sender) + quantity < whitelistMintAllowancePlusOne, "Maximum number of NFTs allowed to Mint reached!");
        if (isBytes) {
            BYTES.transferFrom(msg.sender, address(this), quantity * tokenPriceWhitelistBytes);
        }
        else {
            require(msg.value >= tokenPriceWhitelist * quantity, "Insufficient Funds!");
        }
        _safeMint(msg.sender, quantity);
    }

    /**
     * Mint tokens during the presale.
     * @notice This function is only available to those on the allowlist.
     * @param quantity The number of tokens to mint.
     */
    function mintPresale1(uint256 quantity, uint8 _v, bytes32 _r, bytes32 _s)
        external
        payable
        noBots
        isContractState(ContractState.PRESALE)
        withinMintLimit(quantity)
        onlyValidAccess(_v,  _r, _s, 2)
    {
        require(_numberMinted(msg.sender) + quantity < presale1MintAllowancePlusOne, "Maximum number of NFTs allowed to Mint reached!");
        _safeMint(msg.sender, quantity);
    }

    /**
     * Mint tokens during the presale.
     * @notice This function is only available to those on the allowlist.
     * @param quantity The number of tokens to mint.
     */
    function mintPresale2(uint256 quantity, uint8 _v, bytes32 _r, bytes32 _s)
        external
        payable
        noBots
        isContractState(ContractState.PRESALE)
        withinMintLimit(quantity)
        onlyValidAccess(_v,  _r, _s, 3)
    {
        require(_numberMinted(msg.sender) + quantity < presale2MintAllowancePlusOne, "Maximum number of NFTs allowed to Mint reached!");
        _safeMint(msg.sender, quantity);
    }

    /**
     * Team reserved mint.
     * @param to Address to mint to.
     * @param quantity Amount of tokens to mint.
     */
    function mintReserved(address to, uint256 quantity) external onlyOwner withinMintLimit(quantity) {
        _safeMint(to, quantity);
    }

    //
    // Admin
    //

    /**
     * Set contract state.
     * @param contractState_ The new state of the contract.
     */
    function setContractState(uint contractState_) external onlyOwner {
        require(contractState_ < 3, "Invalid Contract State!");
        if (contractState_ == 0) {
            contractState = ContractState.OFF;
        }
        else if (contractState_ == 1) {
            contractState = ContractState.PRESALE;
        }
        else {
            contractState = ContractState.PUBLIC;
        }
        
    }

    /**
     * Update maximum number of tokens for sale.
     * @param maxSale The maximum number of tokens available for sale.
     */
    function setMaxSale(uint256 maxSale) external onlyOwner {
        uint256 maxSalePlusOne_ = maxSale + 1;
        require(maxSalePlusOne_ < maxSalePlusOne, "Can only reduce supply");
        maxSalePlusOne = maxSalePlusOne_;
    }

    /**
     * Update the price for public sale
     * @param newPrice The updated price
     */
    function setTokenPricePublic(uint256 newPrice) external onlyOwner {
        tokenPricePublic = newPrice;
    }

    /**
     * Update the price for whitelist sale
     * @param newPrice The updated price
     */
    function setTokenPriceWhitelist(uint256 newPrice) external onlyOwner {
        tokenPriceWhitelist = newPrice;
    }

    /**
     * Update the price for public sale
     * @param newPrice The updated price
     */
    function setTokenPricePublicBytes(uint256 newPrice) external onlyOwner {
        tokenPricePublicBytes = newPrice;
    }

    /**
     * Update the price for whitelist sale
     * @param newPrice The updated price
     */
    function setTokenPriceWhitelistBytes(uint256 newPrice) external onlyOwner {
        tokenPriceWhitelistBytes = newPrice;
    }

    /**
     * Sets base URI.
     * @param baseURI_ The base URI
     */
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    /**
     * Sets placeholder URI.
     * @param placeholderURI_ The placeholder URI
     */
    function setPlaceholderURI(string memory placeholderURI_) external onlyOwner {
        placeholderURI = placeholderURI_;
    }

    /**
     * Update wallet that will recieve funds.
     * @param newRecipient The new address that will recieve funds
     */
    function setRecipient(address newRecipient) external onlyOwner {
        require(newRecipient != address(0), "Cannot be the 0 address!");
        recipient = newRecipient;
    }

    /**
     * Update bytes contract
     * @param newAddress The updated address
     */
    function setBytes(address newAddress) external onlyOwner {
        require(newAddress != address(0), "Cannot be the 0 address!");
        BYTES = IERC20(newAddress);
    }


    //retrieve all funds recieved from minting
    function withdraw() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(recipient), balance); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    //
    // Views
    //

    /**
     * The block.timestamp when this token was transferred to the current owner.
     * @param tokenId The token id to query
     */
    function ownedSince(uint256 tokenId) public view returns (uint256) {
        return _ownerships[tokenId].startTimestamp;
    }

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

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

    /**
     * Get the current amount of Eth stored
     */
    function accountBalance() public view returns(uint) {
        return address(this).balance;
    }

    /**
     * See how many mints an address has executed in one of the sales
     * @param minter the address of the person that
     */
    function getMintsPerAddress(address minter) public view returns(uint) {
        return _numberMinted(minter);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BYTES","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DigitsRedeemer","outputs":[{"internalType":"contract IDigitsRedeemer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractState","outputs":[{"internalType":"enum FoundingAgents.ContractState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"getMintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"},{"internalType":"uint256","name":"sale","type":"uint256"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSalePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintPresale1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintPresale2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"isBytes","type":"bool"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"isBytes","type":"bool"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownedSince","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale1MintAllowancePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale2MintAllowancePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintAllowancePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setBytes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"contractState_","type":"uint256"}],"name":"setContractState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRedeemer","type":"address"}],"name":"setDigitsRedeemer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSale","type":"uint256"}],"name":"setMaxSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholderURI_","type":"string"}],"name":"setPlaceholderURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecipient","type":"address"}],"name":"setRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPricePublicBytes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPriceWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPriceWhitelistBytes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePublicBytes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceWhitelistBytes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintAllowancePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e8600a908155670dbd2fc137a30000600b556709935f581f050000600c556806c6b935b8bbd40000600d5568056bc75e2d63100000600e556010819055601155600360125560056013556014805460ff19169055601880546001600160a01b0319167380e4929c869102140e69550bbecc20bed61b080c1790553480156200008d57600080fd5b506040518060400160405280600f81526020016e466f756e64696e67204167656e747360881b81525060405180604001604052806002815260200161464160f01b815250620000eb620000e56200017a60201b60201c565b6200017e565b815162000100906002906020850190620001ce565b50805162000116906003906020840190620001ce565b50506001600955506040805160608101909152603580825262003fc5602083013980516200014d91601591602090910190620001ce565b50600f80546001600160a01b031916737d647b1a0dcd5525e9c6b3d14be58f27674f8c95179055620002b1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001dc9062000274565b90600052602060002090601f0160209004810192826200020057600085556200024b565b82601f106200021b57805160ff19168380011785556200024b565b828001600101855582156200024b579182015b828111156200024b5782518255916020019190600101906200022e565b50620002599291506200025d565b5090565b5b808211156200025957600081556001016200025e565b600181811c908216806200028957607f821691505b60208210811415620002ab57634e487b7160e01b600052602260045260246000fd5b50919050565b613d0480620002c16000396000f3fe6080604052600436106103605760003560e01c806370a08231116101c6578063b0a1c1c4116100f7578063e88343e611610095578063f2fde38b1161006f578063f2fde38b14610991578063f480fc70146109b1578063fae96571146109c4578063fb7265ff146109e457600080fd5b8063e88343e614610908578063e985e9c514610928578063eccc7b3b1461097157600080fd5b8063b88d4fde116100d1578063b88d4fde14610888578063c87b56dd146108a8578063cd2c7052146108c8578063df127056146108e857600080fd5b8063b0a1c1c41461083f578063b220a61714610852578063b3912a4c1461086857600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb465146107c9578063a58b34f8146107e9578063a58bb27a14610809578063a694d9b31461082957600080fd5b80638da5cb5b146107805780638eeadb611461079e57806395d89b41146107b457600080fd5b8063746847d4116101a0578063746847d41461070d5780637de55fe1146107235780637de69d5f1461074357806385209ee01461075957600080fd5b806370a08231146106c3578063715018a6146106e35780637313cba9146106f857600080fd5b80633574a2dd116102a05780635a4855991161023e57806366d003ac1161021857806366d003ac146106625780636a573c1e146106825780636c0360eb146106985780636cced8b7146106ad57600080fd5b80635a485599146105d35780635fc10214146106225780636352211e1461064257600080fd5b806342842e0e1161027a57806342842e0e146105535780634528ee9a146105735780634f6ccce71461059357806355f804b3146105b357600080fd5b80633574a2dd146104fe5780633bbed4a01461051e5780633ccfd60b1461053e57600080fd5b806318160ddd1161030d5780632567d5f2116102e75780632567d5f2146104a557806329f04d1a146104b85780632f745c59146104cb57806333935e5c146104eb57600080fd5b806318160ddd1461045a57806321f8b0da1461046f57806323b872dd1461048557600080fd5b806308290dc51161033e57806308290dc5146103f4578063095ea7b31461041657806315092ed21461043657600080fd5b806301ffc9a71461036557806306fdde031461039a578063081812fc146103bc575b600080fd5b34801561037157600080fd5b50610385610380366004613601565b610a04565b60405190151581526020015b60405180910390f35b3480156103a657600080fd5b506103af610b35565b604051610391919061367d565b3480156103c857600080fd5b506103dc6103d7366004613690565b610bc7565b6040516001600160a01b039091168152602001610391565b34801561040057600080fd5b5061041461040f366004613690565b610c67565b005b34801561042257600080fd5b506104146104313660046136c5565b610d27565b34801561044257600080fd5b5061044c600d5481565b604051908152602001610391565b34801561046657600080fd5b5060015461044c565b34801561047b57600080fd5b5061044c600e5481565b34801561049157600080fd5b506104146104a03660046136ef565b610e5a565b6104146104b336600461373c565b610e65565b6104146104c6366004613785565b61107e565b3480156104d757600080fd5b5061044c6104e63660046136c5565b611361565b6104146104f936600461373c565b611504565b34801561050a57600080fd5b50610414610519366004613841565b61168a565b34801561052a57600080fd5b5061041461053936600461388a565b6116fb565b34801561054a57600080fd5b506104146117e5565b34801561055f57600080fd5b5061041461056e3660046136ef565b6118cc565b34801561057f57600080fd5b5061041461058e36600461388a565b6118e7565b34801561059f57600080fd5b5061044c6105ae366004613690565b6119d1565b3480156105bf57600080fd5b506104146105ce366004613841565b611a54565b3480156105df57600080fd5b5061044c6105ee366004613690565b60009081526004602052604090205474010000000000000000000000000000000000000000900467ffffffffffffffff1690565b34801561062e57600080fd5b5061038561063d3660046138a5565b611ac1565b34801561064e57600080fd5b506103dc61065d366004613690565b611be6565b34801561066e57600080fd5b506017546103dc906001600160a01b031681565b34801561068e57600080fd5b5061044c600a5481565b3480156106a457600080fd5b506103af611bf8565b3480156106b957600080fd5b5061044c60105481565b3480156106cf57600080fd5b5061044c6106de36600461388a565b611c86565b3480156106ef57600080fd5b50610414611d32565b34801561070457600080fd5b506103af611d98565b34801561071957600080fd5b5061044c60125481565b34801561072f57600080fd5b5061041461073e3660046136c5565b611da5565b34801561074f57600080fd5b5061044c600b5481565b34801561076557600080fd5b506014546107739060ff1681565b6040516103919190613908565b34801561078c57600080fd5b506000546001600160a01b03166103dc565b3480156107aa57600080fd5b5061044c60115481565b3480156107c057600080fd5b506103af611e6e565b3480156107d557600080fd5b506104146107e4366004613930565b611e7d565b3480156107f557600080fd5b5061041461080436600461388a565b611f42565b34801561081557600080fd5b50610414610824366004613690565b611fd6565b34801561083557600080fd5b5061044c60135481565b34801561084b57600080fd5b504761044c565b34801561085e57600080fd5b5061044c600c5481565b34801561087457600080fd5b506008546103dc906001600160a01b031681565b34801561089457600080fd5b506104146108a336600461395c565b612035565b3480156108b457600080fd5b506103af6108c3366004613690565b6120be565b3480156108d457600080fd5b506104146108e3366004613690565b6121f2565b3480156108f457600080fd5b50610414610903366004613690565b612251565b34801561091457600080fd5b50600f546103dc906001600160a01b031681565b34801561093457600080fd5b506103856109433660046139d8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561097d57600080fd5b5061041461098c366004613690565b6122b0565b34801561099d57600080fd5b506104146109ac36600461388a565b61230f565b6104146109bf366004613a0b565b6123ee565b3480156109d057600080fd5b5061044c6109df36600461388a565b6126f5565b3480156109f057600080fd5b506104146109ff366004613690565b612700565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610a9757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ae357507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b2f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610b4490613a5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090613a5b565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4826001541190565b610c4b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000546001600160a01b03163314610cc15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b6000610cce826001613aac565b9050600a548110610d215760405162461bcd60e51b815260206004820152601660248201527f43616e206f6e6c792072656475636520737570706c79000000000000000000006044820152606401610c42565b600a5550565b6000610d3282611be6565b9050806001600160a01b0316836001600160a01b03161415610dbc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610c42565b336001600160a01b0382161480610dd85750610dd88133610943565b610e4a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c42565b610e558383836127f3565b505050565b610e55838383612867565b333214610eb45760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610c42565b60018060145460ff166002811115610ece57610ece6138f2565b14610f1b5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610c42565b84600a5481610f2960015490565b610f339190613aac565b10610f805760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b8484846003610f923385858585611ac1565b610fde5760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964205369676e61747572650000000000000000000000000000006044820152606401610c42565b6013548a610feb33612cdb565b610ff59190613aac565b106110685760405162461bcd60e51b815260206004820152602f60248201527f4d6178696d756d206e756d626572206f66204e46547320616c6c6f776564207460448201527f6f204d696e7420726561636865642100000000000000000000000000000000006064820152608401610c42565b611072338b612d9b565b50505050505050505050565b3332146110cd5760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610c42565b60028060145460ff1660028111156110e7576110e76138f2565b146111345760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610c42565b82600a548161114260015490565b61114c9190613aac565b106111995760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b601054846111a633612cdb565b6111b09190613aac565b106112235760405162461bcd60e51b815260206004820152602f60248201527f4d6178696d756d206e756d626572206f66204e46547320616c6c6f776564207460448201527f6f204d696e7420726561636865642100000000000000000000000000000000006064820152608401610c42565b82156112f457600f54600d546001600160a01b03909116906323b872dd903390309061124f9089613ac4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156112b657600080fd5b505af11580156112ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ee9190613ae3565b50611351565b83600b546113029190613ac4565b3410156113515760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742046756e647321000000000000000000000000006044820152606401610c42565b61135b3385612d9b565b50505050565b600061136c83611c86565b82106113e05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610c42565b60006113eb60015490565b905060008060005b83811015611495576000818152600460209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561145757805192505b876001600160a01b0316836001600160a01b0316141561148c578684141561148557509350610b2f92505050565b6001909301925b506001016113f3565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610c42565b3332146115535760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610c42565b60018060145460ff16600281111561156d5761156d6138f2565b146115ba5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610c42565b84600a54816115c860015490565b6115d29190613aac565b1061161f5760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b84848460026116313385858585611ac1565b61167d5760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964205369676e61747572650000000000000000000000000000006044820152606401610c42565b6012548a610feb33612cdb565b6000546001600160a01b031633146116e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b80516116f7906015906020840190613543565b5050565b6000546001600160a01b031633146117555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b6001600160a01b0381166117ab5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420626520746865203020616464726573732100000000000000006044820152606401610c42565b601780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461183f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b47806118b35760405162461bcd60e51b815260206004820152602260248201527f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360448201527f20300000000000000000000000000000000000000000000000000000000000006064820152608401610c42565b6017546118c9906001600160a01b031682612db5565b50565b610e5583838360405180602001604052806000815250612035565b6000546001600160a01b031633146119415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b6001600160a01b0381166119975760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420626520746865203020616464726573732100000000000000006044820152606401610c42565b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60006119dc60015490565b8210611a505760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610c42565b5090565b6000546001600160a01b03163314611aae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b80516116f7906016906020840190613543565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000030606090811b8216602084015287901b166034820152604881018290526000908190606801604051602081830303815290604052805190602001209050600181604051602001611b6191907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181528282528051602091820120600084529083018083525260ff891690820152606081018790526080810186905260a0016020604051602081039080840390855afa158015611bbf573d6000803e3d6000fd5b5050604051601f1901516018546001600160a01b0391821691161498975050505050505050565b6000611bf182612e58565b5192915050565b60168054611c0590613a5b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3190613a5b565b8015611c7e5780601f10611c5357610100808354040283529160200191611c7e565b820191906000526020600020905b815481529060010190602001808311611c6157829003601f168201915b505050505081565b60006001600160a01b038216611d045760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610c42565b506001600160a01b03166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b6000546001600160a01b03163314611d8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b611d966000612f53565b565b60158054611c0590613a5b565b6000546001600160a01b03163314611dff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b80600a5481611e0d60015490565b611e179190613aac565b10611e645760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b610e558383612d9b565b606060038054610b4490613a5b565b6001600160a01b038216331415611ed65760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c42565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611f9c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000546001600160a01b031633146120305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600c55565b612040848484612867565b61204c84848484612fbb565b61135b5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610c42565b60606120cf8261ffff166001541190565b61211b5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610c42565b60006016805461212a90613a5b565b9050116121c1576015805461213e90613a5b565b80601f016020809104026020016040519081016040528092919081815260200182805461216a90613a5b565b80156121b75780601f1061218c576101008083540402835291602001916121b7565b820191906000526020600020905b81548152906001019060200180831161219a57829003601f168201915b5050505050610b2f565b60166121cc83613169565b6040516020016121dd929190613b1c565b60405160208183030381529060405292915050565b6000546001600160a01b0316331461224c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600b55565b6000546001600160a01b031633146122ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600d55565b6000546001600160a01b0316331461230a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600e55565b6000546001600160a01b031633146123695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b6001600160a01b0381166123e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c42565b6118c981612f53565b60018060145460ff166002811115612408576124086138f2565b146124555760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610c42565b85600a548161246360015490565b61246d9190613aac565b106124ba5760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b84848460016124cc3385858585611ac1565b6125185760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964205369676e61747572650000000000000000000000000000006044820152606401610c42565b6011548b61252533612cdb565b61252f9190613aac565b106125a25760405162461bcd60e51b815260206004820152602f60248201527f4d6178696d756d206e756d626572206f66204e46547320616c6c6f776564207460448201527f6f204d696e7420726561636865642100000000000000000000000000000000006064820152608401610c42565b891561268157600f60009054906101000a90046001600160a01b03166001600160a01b03166323b872dd3330600e548f6125dc9190613ac4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561264357600080fd5b505af1158015612657573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061267b9190613ae3565b506126de565b8a600c5461268f9190613ac4565b3410156126de5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742046756e647321000000000000000000000000006044820152606401610c42565b6126e8338c612d9b565b5050505050505050505050565b6000610b2f82612cdb565b6000546001600160a01b0316331461275a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600381106127aa5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420436f6e7472616374205374617465210000000000000000006044820152606401610c42565b806127c757601480546000919060ff19166001835b021790555050565b80600114156127e357601480546001919060ff191682806127bf565b506014805460ff19166002179055565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546040517fbaa51f86000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b039091169063baa51f869060240160206040518083038186803b1580156128c457600080fd5b505afa1580156128d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fc9190613ae3565b156129495760405162461bcd60e51b815260206004820152601060248201527f546f6b656e206973205374616b656421000000000000000000000000000000006044820152606401610c42565b600061295482612e58565b80519091506000906001600160a01b0316336001600160a01b0316148061298b57503361298084610bc7565b6001600160a01b0316145b8061299d5750815161299d9033610943565b905080612a125760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610c42565b846001600160a01b031682600001516001600160a01b031614612a9d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610c42565b6001600160a01b038416612b195760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c42565b612b2960008484600001516127f3565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116612c9157612c1b816001541190565b15612c91578251600082815260046020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b038216612d595760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610c42565b506001600160a01b031660009081526005602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b6116f782826040518060200160405280600081525061329b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e02576040519150601f19603f3d011682016040523d82523d6000602084013e612e07565b606091505b5050905080610e555760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642045746865720000000000000000000000006044820152606401610c42565b6040805180820190915260008082526020820152612e77826001541190565b612ee95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610c42565b815b6000818152600460209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612f49579392505050565b5060001901612eeb565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561315d576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613018903390899088908890600401613bef565b602060405180830381600087803b15801561303257600080fd5b505af1925050508015613062575060408051601f3d908101601f1916820190925261305f91810190613c2b565b60015b613112573d808015613090576040519150601f19603f3d011682016040523d82523d6000602084013e613095565b606091505b50805161310a5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610c42565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613161565b5060015b949350505050565b6060816131a957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156131d357806131bd81613c48565b91506131cc9050600a83613c79565b91506131ad565b60008167ffffffffffffffff8111156131ee576131ee6137b5565b6040519080825280601f01601f191660200182016040528015613218576020820181803683370190505b5090505b84156131615761322d600183613c8d565b915061323a600a86613ca4565b613245906030613aac565b60f81b81838151811061325a5761325a613cb8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613294600a86613c79565b945061321c565b610e55838383600180546001600160a01b0385166133215760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610c42565b836133945760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610c42565b6001600160a01b038516600081815260056020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526004909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561353a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561352e576134bc6000888488612fbb565b61352e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610c42565b60019182019101613469565b50600155612cd4565b82805461354f90613a5b565b90600052602060002090601f01602090048101928261357157600085556135b7565b82601f1061358a57805160ff19168380011785556135b7565b828001600101855582156135b7579182015b828111156135b757825182559160200191906001019061359c565b50611a509291505b80821115611a5057600081556001016135bf565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146118c957600080fd5b60006020828403121561361357600080fd5b813561361e816135d3565b9392505050565b60005b83811015613640578181015183820152602001613628565b8381111561135b5750506000910152565b60008151808452613669816020860160208601613625565b601f01601f19169290920160200192915050565b60208152600061361e6020830184613651565b6000602082840312156136a257600080fd5b5035919050565b80356001600160a01b03811681146136c057600080fd5b919050565b600080604083850312156136d857600080fd5b6136e1836136a9565b946020939093013593505050565b60008060006060848603121561370457600080fd5b61370d846136a9565b925061371b602085016136a9565b9150604084013590509250925092565b803560ff811681146136c057600080fd5b6000806000806080858703121561375257600080fd5b843593506137626020860161372b565b93969395505050506040820135916060013590565b80151581146118c957600080fd5b6000806040838503121561379857600080fd5b8235915060208301356137aa81613777565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156137e6576137e66137b5565b604051601f8501601f19908116603f0116810190828211818310171561380e5761380e6137b5565b8160405280935085815286868601111561382757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561385357600080fd5b813567ffffffffffffffff81111561386a57600080fd5b8201601f8101841361387b57600080fd5b613161848235602084016137cb565b60006020828403121561389c57600080fd5b61361e826136a9565b600080600080600060a086880312156138bd57600080fd5b6138c6866136a9565b94506138d46020870161372b565b94979496505050506040830135926060810135926080909101359150565b634e487b7160e01b600052602160045260246000fd5b602081016003831061392a57634e487b7160e01b600052602160045260246000fd5b91905290565b6000806040838503121561394357600080fd5b61394c836136a9565b915060208301356137aa81613777565b6000806000806080858703121561397257600080fd5b61397b856136a9565b9350613989602086016136a9565b925060408501359150606085013567ffffffffffffffff8111156139ac57600080fd5b8501601f810187136139bd57600080fd5b6139cc878235602084016137cb565b91505092959194509250565b600080604083850312156139eb57600080fd5b6139f4836136a9565b9150613a02602084016136a9565b90509250929050565b600080600080600060a08688031215613a2357600080fd5b853594506020860135613a3581613777565b9350613a436040870161372b565b94979396509394606081013594506080013592915050565b600181811c90821680613a6f57607f821691505b60208210811415613a9057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613abf57613abf613a96565b500190565b6000816000190483118215151615613ade57613ade613a96565b500290565b600060208284031215613af557600080fd5b815161361e81613777565b60008151613b12818560208601613625565b9290920192915050565b600080845481600182811c915080831680613b3857607f831692505b6020808410821415613b5857634e487b7160e01b86526022600452602486fd5b818015613b6c5760018114613b7d57613baa565b60ff19861689528489019650613baa565b60008b81526020902060005b86811015613ba25781548b820152908501908301613b89565b505084890196505b505050505050613be6613bbd8286613b00565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613c216080830184613651565b9695505050505050565b600060208284031215613c3d57600080fd5b815161361e816135d3565b6000600019821415613c5c57613c5c613a96565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082613c8857613c88613c63565b500490565b600082821015613c9f57613c9f613a96565b500390565b600082613cb357613cb3613c63565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f673b8031b373287e38caebb1d70794c25678d3709da5cad52abb4b590f867c264736f6c63430008090033697066733a2f2f516d65374c614e6d4a38374a785639515277796252567836747734664b335352355152424c546a6768754339444e

Deployed Bytecode

0x6080604052600436106103605760003560e01c806370a08231116101c6578063b0a1c1c4116100f7578063e88343e611610095578063f2fde38b1161006f578063f2fde38b14610991578063f480fc70146109b1578063fae96571146109c4578063fb7265ff146109e457600080fd5b8063e88343e614610908578063e985e9c514610928578063eccc7b3b1461097157600080fd5b8063b88d4fde116100d1578063b88d4fde14610888578063c87b56dd146108a8578063cd2c7052146108c8578063df127056146108e857600080fd5b8063b0a1c1c41461083f578063b220a61714610852578063b3912a4c1461086857600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb465146107c9578063a58b34f8146107e9578063a58bb27a14610809578063a694d9b31461082957600080fd5b80638da5cb5b146107805780638eeadb611461079e57806395d89b41146107b457600080fd5b8063746847d4116101a0578063746847d41461070d5780637de55fe1146107235780637de69d5f1461074357806385209ee01461075957600080fd5b806370a08231146106c3578063715018a6146106e35780637313cba9146106f857600080fd5b80633574a2dd116102a05780635a4855991161023e57806366d003ac1161021857806366d003ac146106625780636a573c1e146106825780636c0360eb146106985780636cced8b7146106ad57600080fd5b80635a485599146105d35780635fc10214146106225780636352211e1461064257600080fd5b806342842e0e1161027a57806342842e0e146105535780634528ee9a146105735780634f6ccce71461059357806355f804b3146105b357600080fd5b80633574a2dd146104fe5780633bbed4a01461051e5780633ccfd60b1461053e57600080fd5b806318160ddd1161030d5780632567d5f2116102e75780632567d5f2146104a557806329f04d1a146104b85780632f745c59146104cb57806333935e5c146104eb57600080fd5b806318160ddd1461045a57806321f8b0da1461046f57806323b872dd1461048557600080fd5b806308290dc51161033e57806308290dc5146103f4578063095ea7b31461041657806315092ed21461043657600080fd5b806301ffc9a71461036557806306fdde031461039a578063081812fc146103bc575b600080fd5b34801561037157600080fd5b50610385610380366004613601565b610a04565b60405190151581526020015b60405180910390f35b3480156103a657600080fd5b506103af610b35565b604051610391919061367d565b3480156103c857600080fd5b506103dc6103d7366004613690565b610bc7565b6040516001600160a01b039091168152602001610391565b34801561040057600080fd5b5061041461040f366004613690565b610c67565b005b34801561042257600080fd5b506104146104313660046136c5565b610d27565b34801561044257600080fd5b5061044c600d5481565b604051908152602001610391565b34801561046657600080fd5b5060015461044c565b34801561047b57600080fd5b5061044c600e5481565b34801561049157600080fd5b506104146104a03660046136ef565b610e5a565b6104146104b336600461373c565b610e65565b6104146104c6366004613785565b61107e565b3480156104d757600080fd5b5061044c6104e63660046136c5565b611361565b6104146104f936600461373c565b611504565b34801561050a57600080fd5b50610414610519366004613841565b61168a565b34801561052a57600080fd5b5061041461053936600461388a565b6116fb565b34801561054a57600080fd5b506104146117e5565b34801561055f57600080fd5b5061041461056e3660046136ef565b6118cc565b34801561057f57600080fd5b5061041461058e36600461388a565b6118e7565b34801561059f57600080fd5b5061044c6105ae366004613690565b6119d1565b3480156105bf57600080fd5b506104146105ce366004613841565b611a54565b3480156105df57600080fd5b5061044c6105ee366004613690565b60009081526004602052604090205474010000000000000000000000000000000000000000900467ffffffffffffffff1690565b34801561062e57600080fd5b5061038561063d3660046138a5565b611ac1565b34801561064e57600080fd5b506103dc61065d366004613690565b611be6565b34801561066e57600080fd5b506017546103dc906001600160a01b031681565b34801561068e57600080fd5b5061044c600a5481565b3480156106a457600080fd5b506103af611bf8565b3480156106b957600080fd5b5061044c60105481565b3480156106cf57600080fd5b5061044c6106de36600461388a565b611c86565b3480156106ef57600080fd5b50610414611d32565b34801561070457600080fd5b506103af611d98565b34801561071957600080fd5b5061044c60125481565b34801561072f57600080fd5b5061041461073e3660046136c5565b611da5565b34801561074f57600080fd5b5061044c600b5481565b34801561076557600080fd5b506014546107739060ff1681565b6040516103919190613908565b34801561078c57600080fd5b506000546001600160a01b03166103dc565b3480156107aa57600080fd5b5061044c60115481565b3480156107c057600080fd5b506103af611e6e565b3480156107d557600080fd5b506104146107e4366004613930565b611e7d565b3480156107f557600080fd5b5061041461080436600461388a565b611f42565b34801561081557600080fd5b50610414610824366004613690565b611fd6565b34801561083557600080fd5b5061044c60135481565b34801561084b57600080fd5b504761044c565b34801561085e57600080fd5b5061044c600c5481565b34801561087457600080fd5b506008546103dc906001600160a01b031681565b34801561089457600080fd5b506104146108a336600461395c565b612035565b3480156108b457600080fd5b506103af6108c3366004613690565b6120be565b3480156108d457600080fd5b506104146108e3366004613690565b6121f2565b3480156108f457600080fd5b50610414610903366004613690565b612251565b34801561091457600080fd5b50600f546103dc906001600160a01b031681565b34801561093457600080fd5b506103856109433660046139d8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561097d57600080fd5b5061041461098c366004613690565b6122b0565b34801561099d57600080fd5b506104146109ac36600461388a565b61230f565b6104146109bf366004613a0b565b6123ee565b3480156109d057600080fd5b5061044c6109df36600461388a565b6126f5565b3480156109f057600080fd5b506104146109ff366004613690565b612700565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610a9757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ae357507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b2f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610b4490613a5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7090613a5b565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b6000610bd4826001541190565b610c4b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000546001600160a01b03163314610cc15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b6000610cce826001613aac565b9050600a548110610d215760405162461bcd60e51b815260206004820152601660248201527f43616e206f6e6c792072656475636520737570706c79000000000000000000006044820152606401610c42565b600a5550565b6000610d3282611be6565b9050806001600160a01b0316836001600160a01b03161415610dbc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610c42565b336001600160a01b0382161480610dd85750610dd88133610943565b610e4a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c42565b610e558383836127f3565b505050565b610e55838383612867565b333214610eb45760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610c42565b60018060145460ff166002811115610ece57610ece6138f2565b14610f1b5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610c42565b84600a5481610f2960015490565b610f339190613aac565b10610f805760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b8484846003610f923385858585611ac1565b610fde5760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964205369676e61747572650000000000000000000000000000006044820152606401610c42565b6013548a610feb33612cdb565b610ff59190613aac565b106110685760405162461bcd60e51b815260206004820152602f60248201527f4d6178696d756d206e756d626572206f66204e46547320616c6c6f776564207460448201527f6f204d696e7420726561636865642100000000000000000000000000000000006064820152608401610c42565b611072338b612d9b565b50505050505050505050565b3332146110cd5760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610c42565b60028060145460ff1660028111156110e7576110e76138f2565b146111345760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610c42565b82600a548161114260015490565b61114c9190613aac565b106111995760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b601054846111a633612cdb565b6111b09190613aac565b106112235760405162461bcd60e51b815260206004820152602f60248201527f4d6178696d756d206e756d626572206f66204e46547320616c6c6f776564207460448201527f6f204d696e7420726561636865642100000000000000000000000000000000006064820152608401610c42565b82156112f457600f54600d546001600160a01b03909116906323b872dd903390309061124f9089613ac4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156112b657600080fd5b505af11580156112ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ee9190613ae3565b50611351565b83600b546113029190613ac4565b3410156113515760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742046756e647321000000000000000000000000006044820152606401610c42565b61135b3385612d9b565b50505050565b600061136c83611c86565b82106113e05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610c42565b60006113eb60015490565b905060008060005b83811015611495576000818152600460209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561145757805192505b876001600160a01b0316836001600160a01b0316141561148c578684141561148557509350610b2f92505050565b6001909301925b506001016113f3565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610c42565b3332146115535760405162461bcd60e51b815260206004820152600860248201527f4e6f20626f7473210000000000000000000000000000000000000000000000006044820152606401610c42565b60018060145460ff16600281111561156d5761156d6138f2565b146115ba5760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610c42565b84600a54816115c860015490565b6115d29190613aac565b1061161f5760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b84848460026116313385858585611ac1565b61167d5760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964205369676e61747572650000000000000000000000000000006044820152606401610c42565b6012548a610feb33612cdb565b6000546001600160a01b031633146116e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b80516116f7906015906020840190613543565b5050565b6000546001600160a01b031633146117555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b6001600160a01b0381166117ab5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420626520746865203020616464726573732100000000000000006044820152606401610c42565b601780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461183f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b47806118b35760405162461bcd60e51b815260206004820152602260248201527f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360448201527f20300000000000000000000000000000000000000000000000000000000000006064820152608401610c42565b6017546118c9906001600160a01b031682612db5565b50565b610e5583838360405180602001604052806000815250612035565b6000546001600160a01b031633146119415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b6001600160a01b0381166119975760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420626520746865203020616464726573732100000000000000006044820152606401610c42565b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60006119dc60015490565b8210611a505760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610c42565b5090565b6000546001600160a01b03163314611aae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b80516116f7906016906020840190613543565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000030606090811b8216602084015287901b166034820152604881018290526000908190606801604051602081830303815290604052805190602001209050600181604051602001611b6191907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181528282528051602091820120600084529083018083525260ff891690820152606081018790526080810186905260a0016020604051602081039080840390855afa158015611bbf573d6000803e3d6000fd5b5050604051601f1901516018546001600160a01b0391821691161498975050505050505050565b6000611bf182612e58565b5192915050565b60168054611c0590613a5b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3190613a5b565b8015611c7e5780601f10611c5357610100808354040283529160200191611c7e565b820191906000526020600020905b815481529060010190602001808311611c6157829003601f168201915b505050505081565b60006001600160a01b038216611d045760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610c42565b506001600160a01b03166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b6000546001600160a01b03163314611d8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b611d966000612f53565b565b60158054611c0590613a5b565b6000546001600160a01b03163314611dff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b80600a5481611e0d60015490565b611e179190613aac565b10611e645760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b610e558383612d9b565b606060038054610b4490613a5b565b6001600160a01b038216331415611ed65760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c42565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611f9c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000546001600160a01b031633146120305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600c55565b612040848484612867565b61204c84848484612fbb565b61135b5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610c42565b60606120cf8261ffff166001541190565b61211b5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610c42565b60006016805461212a90613a5b565b9050116121c1576015805461213e90613a5b565b80601f016020809104026020016040519081016040528092919081815260200182805461216a90613a5b565b80156121b75780601f1061218c576101008083540402835291602001916121b7565b820191906000526020600020905b81548152906001019060200180831161219a57829003601f168201915b5050505050610b2f565b60166121cc83613169565b6040516020016121dd929190613b1c565b60405160208183030381529060405292915050565b6000546001600160a01b0316331461224c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600b55565b6000546001600160a01b031633146122ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600d55565b6000546001600160a01b0316331461230a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600e55565b6000546001600160a01b031633146123695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b6001600160a01b0381166123e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c42565b6118c981612f53565b60018060145460ff166002811115612408576124086138f2565b146124555760405162461bcd60e51b815260206004820152600d60248201527f496e76616c6964207374617465000000000000000000000000000000000000006044820152606401610c42565b85600a548161246360015490565b61246d9190613aac565b106124ba5760405162461bcd60e51b815260206004820152601860248201527f4578636565647320617661696c61626c6520746f6b656e7300000000000000006044820152606401610c42565b84848460016124cc3385858585611ac1565b6125185760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964205369676e61747572650000000000000000000000000000006044820152606401610c42565b6011548b61252533612cdb565b61252f9190613aac565b106125a25760405162461bcd60e51b815260206004820152602f60248201527f4d6178696d756d206e756d626572206f66204e46547320616c6c6f776564207460448201527f6f204d696e7420726561636865642100000000000000000000000000000000006064820152608401610c42565b891561268157600f60009054906101000a90046001600160a01b03166001600160a01b03166323b872dd3330600e548f6125dc9190613ac4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561264357600080fd5b505af1158015612657573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061267b9190613ae3565b506126de565b8a600c5461268f9190613ac4565b3410156126de5760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742046756e647321000000000000000000000000006044820152606401610c42565b6126e8338c612d9b565b5050505050505050505050565b6000610b2f82612cdb565b6000546001600160a01b0316331461275a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c42565b600381106127aa5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420436f6e7472616374205374617465210000000000000000006044820152606401610c42565b806127c757601480546000919060ff19166001835b021790555050565b80600114156127e357601480546001919060ff191682806127bf565b506014805460ff19166002179055565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546040517fbaa51f86000000000000000000000000000000000000000000000000000000008152600481018390526001600160a01b039091169063baa51f869060240160206040518083038186803b1580156128c457600080fd5b505afa1580156128d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128fc9190613ae3565b156129495760405162461bcd60e51b815260206004820152601060248201527f546f6b656e206973205374616b656421000000000000000000000000000000006044820152606401610c42565b600061295482612e58565b80519091506000906001600160a01b0316336001600160a01b0316148061298b57503361298084610bc7565b6001600160a01b0316145b8061299d5750815161299d9033610943565b905080612a125760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610c42565b846001600160a01b031682600001516001600160a01b031614612a9d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610c42565b6001600160a01b038416612b195760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c42565b612b2960008484600001516127f3565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116612c9157612c1b816001541190565b15612c91578251600082815260046020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b038216612d595760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610c42565b506001600160a01b031660009081526005602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b6116f782826040518060200160405280600081525061329b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612e02576040519150601f19603f3d011682016040523d82523d6000602084013e612e07565b606091505b5050905080610e555760405162461bcd60e51b815260206004820152601460248201527f4661696c656420746f2073656e642045746865720000000000000000000000006044820152606401610c42565b6040805180820190915260008082526020820152612e77826001541190565b612ee95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610c42565b815b6000818152600460209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612f49579392505050565b5060001901612eeb565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561315d576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613018903390899088908890600401613bef565b602060405180830381600087803b15801561303257600080fd5b505af1925050508015613062575060408051601f3d908101601f1916820190925261305f91810190613c2b565b60015b613112573d808015613090576040519150601f19603f3d011682016040523d82523d6000602084013e613095565b606091505b50805161310a5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610c42565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613161565b5060015b949350505050565b6060816131a957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156131d357806131bd81613c48565b91506131cc9050600a83613c79565b91506131ad565b60008167ffffffffffffffff8111156131ee576131ee6137b5565b6040519080825280601f01601f191660200182016040528015613218576020820181803683370190505b5090505b84156131615761322d600183613c8d565b915061323a600a86613ca4565b613245906030613aac565b60f81b81838151811061325a5761325a613cb8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613294600a86613c79565b945061321c565b610e55838383600180546001600160a01b0385166133215760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610c42565b836133945760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610c42565b6001600160a01b038516600081815260056020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526004909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561353a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561352e576134bc6000888488612fbb565b61352e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610c42565b60019182019101613469565b50600155612cd4565b82805461354f90613a5b565b90600052602060002090601f01602090048101928261357157600085556135b7565b82601f1061358a57805160ff19168380011785556135b7565b828001600101855582156135b7579182015b828111156135b757825182559160200191906001019061359c565b50611a509291505b80821115611a5057600081556001016135bf565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146118c957600080fd5b60006020828403121561361357600080fd5b813561361e816135d3565b9392505050565b60005b83811015613640578181015183820152602001613628565b8381111561135b5750506000910152565b60008151808452613669816020860160208601613625565b601f01601f19169290920160200192915050565b60208152600061361e6020830184613651565b6000602082840312156136a257600080fd5b5035919050565b80356001600160a01b03811681146136c057600080fd5b919050565b600080604083850312156136d857600080fd5b6136e1836136a9565b946020939093013593505050565b60008060006060848603121561370457600080fd5b61370d846136a9565b925061371b602085016136a9565b9150604084013590509250925092565b803560ff811681146136c057600080fd5b6000806000806080858703121561375257600080fd5b843593506137626020860161372b565b93969395505050506040820135916060013590565b80151581146118c957600080fd5b6000806040838503121561379857600080fd5b8235915060208301356137aa81613777565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156137e6576137e66137b5565b604051601f8501601f19908116603f0116810190828211818310171561380e5761380e6137b5565b8160405280935085815286868601111561382757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561385357600080fd5b813567ffffffffffffffff81111561386a57600080fd5b8201601f8101841361387b57600080fd5b613161848235602084016137cb565b60006020828403121561389c57600080fd5b61361e826136a9565b600080600080600060a086880312156138bd57600080fd5b6138c6866136a9565b94506138d46020870161372b565b94979496505050506040830135926060810135926080909101359150565b634e487b7160e01b600052602160045260246000fd5b602081016003831061392a57634e487b7160e01b600052602160045260246000fd5b91905290565b6000806040838503121561394357600080fd5b61394c836136a9565b915060208301356137aa81613777565b6000806000806080858703121561397257600080fd5b61397b856136a9565b9350613989602086016136a9565b925060408501359150606085013567ffffffffffffffff8111156139ac57600080fd5b8501601f810187136139bd57600080fd5b6139cc878235602084016137cb565b91505092959194509250565b600080604083850312156139eb57600080fd5b6139f4836136a9565b9150613a02602084016136a9565b90509250929050565b600080600080600060a08688031215613a2357600080fd5b853594506020860135613a3581613777565b9350613a436040870161372b565b94979396509394606081013594506080013592915050565b600181811c90821680613a6f57607f821691505b60208210811415613a9057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613abf57613abf613a96565b500190565b6000816000190483118215151615613ade57613ade613a96565b500290565b600060208284031215613af557600080fd5b815161361e81613777565b60008151613b12818560208601613625565b9290920192915050565b600080845481600182811c915080831680613b3857607f831692505b6020808410821415613b5857634e487b7160e01b86526022600452602486fd5b818015613b6c5760018114613b7d57613baa565b60ff19861689528489019650613baa565b60008b81526020902060005b86811015613ba25781548b820152908501908301613b89565b505084890196505b505050505050613be6613bbd8286613b00565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613c216080830184613651565b9695505050505050565b600060208284031215613c3d57600080fd5b815161361e816135d3565b6000600019821415613c5c57613c5c613a96565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082613c8857613c88613c63565b500490565b600082821015613c9f57613c9f613a96565b500390565b600082613cb357613cb3613c63565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f673b8031b373287e38caebb1d70794c25678d3709da5cad52abb4b590f867c264736f6c63430008090033

Deployed Bytecode Sourcemap

46845:10700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33632:372;;;;;;;;;;-1:-1:-1;33632:372:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;33632:372:0;;;;;;;;35518:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37080:214::-;;;;;;;;;;-1:-1:-1;37080:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1819:55:1;;;1801:74;;1789:2;1774:18;37080:214:0;1655:226:1;53706:233:0;;;;;;;;;;-1:-1:-1;53706:233:0;;;;;:::i;:::-;;:::i;:::-;;36601:413;;;;;;;;;;-1:-1:-1;36601:413:0;;;;;:::i;:::-;;:::i;47144:60::-;;;;;;;;;;;;;;;;;;;2492:25:1;;;2480:2;2465:18;47144:60:0;2346:177:1;31881:108:0;;;;;;;;;;-1:-1:-1;31969:12:0;;31881:108;;47211:63;;;;;;;;;;;;;;;;37956:170;;;;;;;;;;-1:-1:-1;37956:170:0;;;;;:::i;:::-;;:::i;52262:442::-;;;;;;:::i;:::-;;:::i;49864:619::-;;;;;;:::i;:::-;;:::i;32553:1007::-;;;;;;;;;;-1:-1:-1;32553:1007:0;;;;;:::i;:::-;;:::i;51625:442::-;;;;;;:::i;:::-;;:::i;55154:128::-;;;;;;;;;;-1:-1:-1;55154:128:0;;;;;:::i;:::-;;:::i;55423:180::-;;;;;;;;;;-1:-1:-1;55423:180:0;;;;;:::i;:::-;;:::i;55937:211::-;;;;;;;;;;;;;:::i;38197:185::-;;;;;;;;;;-1:-1:-1;38197:185:0;;;;;:::i;:::-;;:::i;55705:174::-;;;;;;;;;;-1:-1:-1;55705:174:0;;;;;:::i;:::-;;:::i;32066:187::-;;;;;;;;;;-1:-1:-1;32066:187:0;;;;;:::i;:::-;;:::i;54947:100::-;;;;;;;;;;-1:-1:-1;54947:100:0;;;;;:::i;:::-;;:::i;56591:128::-;;;;;;;;;;-1:-1:-1;56591:128:0;;;;;:::i;:::-;56649:7;56676:20;;;:11;:20;;;;;:35;;;;;;;56591:128;49412:324;;;;;;;;;;-1:-1:-1;49412:324:0;;;;;:::i;:::-;;:::i;35327:124::-;;;;;;;;;;-1:-1:-1;35327:124:0;;;;;:::i;:::-;;:::i;47727:24::-;;;;;;;;;;-1:-1:-1;47727:24:0;;;;-1:-1:-1;;;;;47727:24:0;;;46994:36;;;;;;;;;;;;;;;;47697:21;;;;;;;;;;;;;:::i;47311:43::-;;;;;;;;;;;;;;;;34068:221;;;;;;;;;;-1:-1:-1;34068:221:0;;;;;:::i;:::-;;:::i;5497:103::-;;;;;;;;;;;;;:::i;47662:28::-;;;;;;;;;;;;;:::i;47414:44::-;;;;;;;;;;;;;;;;52846:139;;;;;;;;;;-1:-1:-1;52846:139:0;;;;;:::i;:::-;;:::i;47037:44::-;;;;;;;;;;;;;;;;47599:54;;;;;;;;;;-1:-1:-1;47599:54:0;;;;;;;;;;;;;;;:::i;4846:87::-;;;;;;;;;;-1:-1:-1;4892:7:0;4919:6;-1:-1:-1;;;;;4919:6:0;4846:87;;47361:46;;;;;;;;;;;;;;;;35687:104;;;;;;;;;;;;;:::i;37366:288::-;;;;;;;;;;-1:-1:-1;37366:288:0;;;;;:::i;:::-;;:::i;31676:129::-;;;;;;;;;;-1:-1:-1;31676:129:0;;;;;:::i;:::-;;:::i;54272:118::-;;;;;;;;;;-1:-1:-1;54272:118:0;;;;;:::i;:::-;;:::i;47465:44::-;;;;;;;;;;;;;;;;57176:99;;;;;;;;;;-1:-1:-1;57246:21:0;57176:99;;47088:47;;;;;;;;;;;;;;;;31428:37;;;;;;;;;;-1:-1:-1;31428:37:0;;;;-1:-1:-1;;;;;31428:37:0;;;38453:355;;;;;;;;;;-1:-1:-1;38453:355:0;;;;;:::i;:::-;;:::i;56790:315::-;;;;;;;;;;-1:-1:-1;56790:315:0;;;;;:::i;:::-;;:::i;54048:112::-;;;;;;;;;;-1:-1:-1;54048:112:0;;;;;:::i;:::-;;:::i;54499:122::-;;;;;;;;;;-1:-1:-1;54499:122:0;;;;;:::i;:::-;;:::i;47283:19::-;;;;;;;;;;-1:-1:-1;47283:19:0;;;;-1:-1:-1;;;;;47283:19:0;;;37725:164;;;;;;;;;;-1:-1:-1;37725:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37846:25:0;;;37822:4;37846:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37725:164;54733:128;;;;;;;;;;-1:-1:-1;54733:128:0;;;;;:::i;:::-;;:::i;5755:201::-;;;;;;;;;;-1:-1:-1;5755:201:0;;;;;:::i;:::-;;:::i;50739:691::-;;;;;;:::i;:::-;;:::i;57425:117::-;;;;;;;;;;-1:-1:-1;57425:117:0;;;;;:::i;:::-;;:::i;53132:426::-;;;;;;;;;;-1:-1:-1;53132:426:0;;;;;:::i;:::-;;:::i;33632:372::-;33734:4;33771:40;;;33786:25;33771:40;;:105;;-1:-1:-1;33828:48:0;;;33843:33;33828:48;33771:105;:172;;;-1:-1:-1;33893:50:0;;;33908:35;33893:50;33771:172;:225;;;-1:-1:-1;17754:25:0;17739:40;;;;33960:36;33751:245;33632:372;-1:-1:-1;;33632:372:0:o;35518:100::-;35572:13;35605:5;35598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35518:100;:::o;37080:214::-;37148:7;37176:16;37184:7;39154:12;;-1:-1:-1;39144:22:0;39063:111;37176:16;37168:74;;;;-1:-1:-1;;;37168:74:0;;9369:2:1;37168:74:0;;;9351:21:1;9408:2;9388:18;;;9381:30;9447:34;9427:18;;;9420:62;9518:15;9498:18;;;9491:43;9551:19;;37168:74:0;;;;;;;;;-1:-1:-1;37262:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37262:24:0;;37080:214::o;53706:233::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;53773:23:::1;53799:11;:7:::0;53809:1:::1;53799:11;:::i;:::-;53773:37;;53847:14;;53829:15;:32;53821:67;;;::::0;-1:-1:-1;;;53821:67:0;;10466:2:1;53821:67:0::1;::::0;::::1;10448:21:1::0;10505:2;10485:18;;;10478:30;10544:24;10524:18;;;10517:52;10586:18;;53821:67:0::1;10264:346:1::0;53821:67:0::1;53899:14;:32:::0;-1:-1:-1;53706:233:0:o;36601:413::-;36674:13;36690:24;36706:7;36690:15;:24::i;:::-;36674:40;;36739:5;-1:-1:-1;;;;;36733:11:0;:2;-1:-1:-1;;;;;36733:11:0;;;36725:58;;;;-1:-1:-1;;;36725:58:0;;10817:2:1;36725:58:0;;;10799:21:1;10856:2;10836:18;;;10829:30;10895:34;10875:18;;;10868:62;10966:4;10946:18;;;10939:32;10988:19;;36725:58:0;10615:398:1;36725:58:0;3650:10;-1:-1:-1;;;;;36818:21:0;;;;:62;;-1:-1:-1;36843:37:0;36860:5;3650:10;37725:164;:::i;36843:37::-;36796:169;;;;-1:-1:-1;;;36796:169:0;;11220:2:1;36796:169:0;;;11202:21:1;11259:2;11239:18;;;11232:30;11298:34;11278:18;;;11271:62;11369:27;11349:18;;;11342:55;11414:19;;36796:169:0;11018:421:1;36796:169:0;36978:28;36987:2;36991:7;37000:5;36978:8;:28::i;:::-;36663:351;36601:413;;:::o;37956:170::-;38090:28;38100:4;38106:2;38110:7;38090:9;:28::i;52262:442::-;48287:10;48301:9;48287:23;48279:44;;;;-1:-1:-1;;;48279:44:0;;11646:2:1;48279:44:0;;;11628:21:1;11685:1;11665:18;;;11658:29;11723:10;11703:18;;;11696:38;11751:18;;48279:44:0;11444:331:1;48279:44:0;52412:21:::1;::::0;48500:13:::1;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;48492:57;;;::::0;-1:-1:-1;;;48492:57:0;;11982:2:1;48492:57:0::1;::::0;::::1;11964:21:1::0;12021:2;12001:18;;;11994:30;12060:15;12040:18;;;12033:43;12093:18;;48492:57:0::1;11780:337:1::0;48492:57:0::1;52460:8:::2;48747:14;;48735:8;48719:13;31969:12:::0;;;31881:108;48719:13:::2;:24;;;;:::i;:::-;48718:43;48710:80;;;::::0;-1:-1:-1;;;48710:80:0;;12324:2:1;48710:80:0::2;::::0;::::2;12306:21:1::0;12363:2;12343:18;;;12336:30;12402:26;12382:18;;;12375:54;12446:18;;48710:80:0::2;12122:348:1::0;48710:80:0::2;52495:2:::3;52500;52504;52508:1;48908:47;48929:10;48940:2;48943;48946;48950:4;48908:20;:47::i;:::-;48899:79;;;::::0;-1:-1:-1;;;48899:79:0;;12677:2:1;48899:79:0::3;::::0;::::3;12659:21:1::0;12716:2;12696:18;;;12689:30;12755:19;12735:18;;;12728:47;12792:18;;48899:79:0::3;12475:341:1::0;48899:79:0::3;52574:28:::4;;52563:8;52535:25;52549:10;52535:13;:25::i;:::-;:36;;;;:::i;:::-;:67;52527:127;;;::::0;-1:-1:-1;;;52527:127:0;;13023:2:1;52527:127:0::4;::::0;::::4;13005:21:1::0;13062:2;13042:18;;;13035:30;13101:34;13081:18;;;13074:62;13172:17;13152:18;;;13145:45;13207:19;;52527:127:0::4;12821:411:1::0;52527:127:0::4;52665:31;52675:10;52687:8;52665:9;:31::i;:::-;48801:1:::3;;;;48560::::2;48334::::1;52262:442:::0;;;;:::o;49864:619::-;48287:10;48301:9;48287:23;48279:44;;;;-1:-1:-1;;;48279:44:0;;11646:2:1;48279:44:0;;;11628:21:1;11685:1;11665:18;;;11658:29;11723:10;11703:18;;;11696:38;11751:18;;48279:44:0;11444:331:1;48279:44:0;49992:20:::1;::::0;48500:13:::1;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;48492:57;;;::::0;-1:-1:-1;;;48492:57:0;;11982:2:1;48492:57:0::1;::::0;::::1;11964:21:1::0;12021:2;12001:18;;;11994:30;12060:15;12040:18;;;12033:43;12093:18;;48492:57:0::1;11780:337:1::0;48492:57:0::1;50039:8:::2;48747:14;;48735:8;48719:13;31969:12:::0;;;31881:108;48719:13:::2;:24;;;;:::i;:::-;48718:43;48710:80;;;::::0;-1:-1:-1;;;48710:80:0;;12324:2:1;48710:80:0::2;::::0;::::2;12306:21:1::0;12363:2;12343:18;;;12336:30;12402:26;12382:18;;;12375:54;12446:18;;48710:80:0::2;12122:348:1::0;48710:80:0::2;50112:26:::3;;50101:8;50073:25;50087:10;50073:13;:25::i;:::-;:36;;;;:::i;:::-;:65;50065:125;;;::::0;-1:-1:-1;;;50065:125:0;;13023:2:1;50065:125:0::3;::::0;::::3;13005:21:1::0;13062:2;13042:18;;;13035:30;13101:34;13081:18;;;13074:62;13172:17;13152:18;;;13145:45;13207:19;;50065:125:0::3;12821:411:1::0;50065:125:0::3;50205:7;50201:233;;;50229:5;::::0;50286:21:::3;::::0;-1:-1:-1;;;;;50229:5:0;;::::3;::::0;:18:::3;::::0;50248:10:::3;::::0;50268:4:::3;::::0;50275:32:::3;::::0;:8;:32:::3;:::i;:::-;50229:79;::::0;;::::3;::::0;;;;;;-1:-1:-1;;;;;13751:15:1;;;50229:79:0::3;::::0;::::3;13733:34:1::0;13803:15;;;;13783:18;;;13776:43;13835:18;;;13828:34;13645:18;;50229:79:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50201:233;;;50390:8;50371:16;;:27;;;;:::i;:::-;50358:9;:40;;50350:72;;;::::0;-1:-1:-1;;;50350:72:0;;14325:2:1;50350:72:0::3;::::0;::::3;14307:21:1::0;14364:2;14344:18;;;14337:30;14403:21;14383:18;;;14376:49;14442:18;;50350:72:0::3;14123:343:1::0;50350:72:0::3;50444:31;50454:10;50466:8;50444:9;:31::i;:::-;48560:1:::2;48334::::1;49864:619:::0;;:::o;32553:1007::-;32642:7;32678:16;32688:5;32678:9;:16::i;:::-;32670:5;:24;32662:71;;;;-1:-1:-1;;;32662:71:0;;14673:2:1;32662:71:0;;;14655:21:1;14712:2;14692:18;;;14685:30;14751:34;14731:18;;;14724:62;14822:4;14802:18;;;14795:32;14844:19;;32662:71:0;14471:398:1;32662:71:0;32744:22;32769:13;31969:12;;;31881:108;32769:13;32744:38;;32793:19;32823:25;33012:9;33007:466;33027:14;33023:1;:18;33007:466;;;33067:31;33101:14;;;:11;:14;;;;;;;;;33067:48;;;;;;;;;-1:-1:-1;;;;;33067:48:0;;;;;;;;;;;;;;;;;;33138:28;33134:111;;33211:14;;;-1:-1:-1;33134:111:0;33288:5;-1:-1:-1;;;;;33267:26:0;:17;-1:-1:-1;;;;;33267:26:0;;33263:195;;;33337:5;33322:11;:20;33318:85;;;-1:-1:-1;33378:1:0;-1:-1:-1;33371:8:0;;-1:-1:-1;;;33371:8:0;33318:85;33425:13;;;;;33263:195;-1:-1:-1;33043:3:0;;33007:466;;;-1:-1:-1;33496:56:0;;-1:-1:-1;;;33496:56:0;;15076:2:1;33496:56:0;;;15058:21:1;15115:2;15095:18;;;15088:30;15154:34;15134:18;;;15127:62;15225:16;15205:18;;;15198:44;15259:19;;33496:56:0;14874:410:1;51625:442:0;48287:10;48301:9;48287:23;48279:44;;;;-1:-1:-1;;;48279:44:0;;11646:2:1;48279:44:0;;;11628:21:1;11685:1;11665:18;;;11658:29;11723:10;11703:18;;;11696:38;11751:18;;48279:44:0;11444:331:1;48279:44:0;51775:21:::1;::::0;48500:13:::1;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;48492:57;;;::::0;-1:-1:-1;;;48492:57:0;;11982:2:1;48492:57:0::1;::::0;::::1;11964:21:1::0;12021:2;12001:18;;;11994:30;12060:15;12040:18;;;12033:43;12093:18;;48492:57:0::1;11780:337:1::0;48492:57:0::1;51823:8:::2;48747:14;;48735:8;48719:13;31969:12:::0;;;31881:108;48719:13:::2;:24;;;;:::i;:::-;48718:43;48710:80;;;::::0;-1:-1:-1;;;48710:80:0;;12324:2:1;48710:80:0::2;::::0;::::2;12306:21:1::0;12363:2;12343:18;;;12336:30;12402:26;12382:18;;;12375:54;12446:18;;48710:80:0::2;12122:348:1::0;48710:80:0::2;51858:2:::3;51863;51867;51871:1;48908:47;48929:10;48940:2;48943;48946;48950:4;48908:20;:47::i;:::-;48899:79;;;::::0;-1:-1:-1;;;48899:79:0;;12677:2:1;48899:79:0::3;::::0;::::3;12659:21:1::0;12716:2;12696:18;;;12689:30;12755:19;12735:18;;;12728:47;12792:18;;48899:79:0::3;12475:341:1::0;48899:79:0::3;51937:28:::4;;51926:8;51898:25;51912:10;51898:13;:25::i;55154:128::-:0;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;55242:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55154:128:::0;:::o;55423:180::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;-1:-1:-1;;;;;55505:26:0;::::1;55497:63;;;::::0;-1:-1:-1;;;55497:63:0;;15491:2:1;55497:63:0::1;::::0;::::1;15473:21:1::0;15530:2;15510:18;;;15503:30;15569:26;15549:18;;;15542:54;15613:18;;55497:63:0::1;15289:348:1::0;55497:63:0::1;55571:9;:24:::0;;;::::1;-1:-1:-1::0;;;;;55571:24:0;;;::::1;::::0;;;::::1;::::0;;55423:180::o;55937:211::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;57246:21;56038:11;56030:58:::1;;;::::0;-1:-1:-1;;;56030:58:0;;15844:2:1;56030:58:0::1;::::0;::::1;15826:21:1::0;15883:2;15863:18;;;15856:30;15922:34;15902:18;;;15895:62;15993:4;15973:18;;;15966:32;16015:19;;56030:58:0::1;15642:398:1::0;56030:58:0::1;56119:9;::::0;56101:38:::1;::::0;-1:-1:-1;;;;;56119:9:0::1;56131:7:::0;56101:9:::1;:38::i;:::-;55974:174;55937:211::o:0;38197:185::-;38335:39;38352:4;38358:2;38362:7;38335:39;;;;;;;;;;;;:16;:39::i;55705:174::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;-1:-1:-1;;;;;55781:24:0;::::1;55773:61;;;::::0;-1:-1:-1;;;55773:61:0;;15491:2:1;55773:61:0::1;::::0;::::1;15473:21:1::0;15530:2;15510:18;;;15503:30;15569:26;15549:18;;;15542:54;15613:18;;55773:61:0::1;15289:348:1::0;55773:61:0::1;55845:5;:26:::0;;;::::1;-1:-1:-1::0;;;;;55845:26:0;;;::::1;::::0;;;::::1;::::0;;55705:174::o;32066:187::-;32133:7;32169:13;31969:12;;;31881:108;32169:13;32161:5;:21;32153:69;;;;-1:-1:-1;;;32153:69:0;;16247:2:1;32153:69:0;;;16229:21:1;16286:2;16266:18;;;16259:30;16325:34;16305:18;;;16298:62;16396:5;16376:18;;;16369:33;16419:19;;32153:69:0;16045:399:1;32153:69:0;-1:-1:-1;32240:5:0;32066:187::o;54947:100::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;55021:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;49412:324::-:0;49564:43;;16644:66:1;49589:4:0;16739:2:1;16735:15;;;16731:24;;49564:43:0;;;16719:37:1;16790:15;;;16786:24;16772:12;;;16765:46;16827:12;;;16820:28;;;49522:4:0;;;;16864:12:1;;49564:43:0;;;;;;;;;;;;49554:54;;;;;;49539:69;;49636:92;49709:4;49656:58;;;;;;;17129:66:1;17117:79;;17221:2;17212:12;;17205:28;;;;17258:2;17249:12;;16887:380;49656:58:0;;;;-1:-1:-1;;49656:58:0;;;;;;;;;49646:69;;49656:58;49646:69;;;;49636:92;;;;;;;;;17499:25:1;17572:4;17560:17;;17540:18;;;17533:45;17594:18;;;17587:34;;;17637:18;;;17630:34;;;17471:19;;49636:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49636:92:0;;-1:-1:-1;;49636:92:0;;49626:6;;-1:-1:-1;;;;;49626:102:0;;;:6;;:102;;49412:324;-1:-1:-1;;;;;;;;49412:324:0:o;35327:124::-;35391:7;35418:20;35430:7;35418:11;:20::i;:::-;:25;;35327:124;-1:-1:-1;;35327:124:0:o;47697:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34068:221::-;34132:7;-1:-1:-1;;;;;34160:19:0;;34152:75;;;;-1:-1:-1;;;34152:75:0;;17877:2:1;34152:75:0;;;17859:21:1;17916:2;17896:18;;;17889:30;17955:34;17935:18;;;17928:62;18026:13;18006:18;;;17999:41;18057:19;;34152:75:0;17675:407:1;34152:75:0;-1:-1:-1;;;;;;34253:19:0;;;;;:12;:19;;;;;:27;;;;34068:221::o;5497:103::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;5562:30:::1;5589:1;5562:18;:30::i;:::-;5497:103::o:0;47662:28::-;;;;;;;:::i;52846:139::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;52933:8:::1;48747:14;;48735:8;48719:13;31969:12:::0;;;31881:108;48719:13:::1;:24;;;;:::i;:::-;48718:43;48710:80;;;::::0;-1:-1:-1;;;48710:80:0;;12324:2:1;48710:80:0::1;::::0;::::1;12306:21:1::0;12363:2;12343:18;;;12336:30;12402:26;12382:18;;;12375:54;12446:18;;48710:80:0::1;12122:348:1::0;48710:80:0::1;52954:23:::2;52964:2;52968:8;52954:9;:23::i;35687:104::-:0;35743:13;35776:7;35769:14;;;;;:::i;37366:288::-;-1:-1:-1;;;;;37461:24:0;;3650:10;37461:24;;37453:63;;;;-1:-1:-1;;;37453:63:0;;18289:2:1;37453:63:0;;;18271:21:1;18328:2;18308:18;;;18301:30;18367:28;18347:18;;;18340:56;18413:18;;37453:63:0;18087:350:1;37453:63:0;3650:10;37529:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37529:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37529:53:0;;;;;;;;;;37598:48;;586:41:1;;;37529:42:0;;3650:10;37598:48;;559:18:1;37598:48:0;;;;;;;37366:288;;:::o;31676:129::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;31752:14:::1;:45:::0;;;::::1;-1:-1:-1::0;;;;;31752:45:0;;;::::1;::::0;;;::::1;::::0;;31676:129::o;54272:118::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;54352:19:::1;:30:::0;54272:118::o;38453:355::-;38612:28;38622:4;38628:2;38632:7;38612:9;:28::i;:::-;38673:48;38696:4;38702:2;38706:7;38715:5;38673:22;:48::i;:::-;38651:149;;;;-1:-1:-1;;;38651:149:0;;18644:2:1;38651:149:0;;;18626:21:1;18683:2;18663:18;;;18656:30;18722:34;18702:18;;;18695:62;18793:21;18773:18;;;18766:49;18832:19;;38651:149:0;18442:415:1;56790:315:0;56863:13;56897:24;56912:7;56897:24;;39154:12;;-1:-1:-1;39144:22:0;39063:111;56897:24;56889:68;;;;-1:-1:-1;;;56889:68:0;;19064:2:1;56889:68:0;;;19046:21:1;19103:2;19083:18;;;19076:30;19142:33;19122:18;;;19115:61;19193:18;;56889:68:0;18862:355:1;56889:68:0;57014:1;56996:7;56990:21;;;;;:::i;:::-;;;:25;:107;;57083:14;56990:107;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57042:7;57051:18;:7;:16;:18::i;:::-;57025:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56970:127;56790:315;-1:-1:-1;;56790:315:0:o;54048:112::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;54125:16:::1;:27:::0;54048:112::o;54499:122::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;54581:21:::1;:32:::0;54499:122::o;54733:128::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;54818:24:::1;:35:::0;54733:128::o;5755:201::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;-1:-1:-1;;;;;5844:22:0;::::1;5836:73;;;::::0;-1:-1:-1;;;5836:73:0;;21279:2:1;5836:73:0::1;::::0;::::1;21261:21:1::0;21318:2;21298:18;;;21291:30;21357:34;21337:18;;;21330:62;21428:8;21408:18;;;21401:36;21454:19;;5836:73:0::1;21077:402:1::0;5836:73:0::1;5920:28;5939:8;5920:18;:28::i;50739:691::-:0;50888:21;;48500:13;;;;:31;;;;;;;;:::i;:::-;;48492:57;;;;-1:-1:-1;;;48492:57:0;;11982:2:1;48492:57:0;;;11964:21:1;12021:2;12001:18;;;11994:30;12060:15;12040:18;;;12033:43;12093:18;;48492:57:0;11780:337:1;48492:57:0;50936:8:::1;48747:14;;48735:8;48719:13;31969:12:::0;;;31881:108;48719:13:::1;:24;;;;:::i;:::-;48718:43;48710:80;;;::::0;-1:-1:-1;;;48710:80:0;;12324:2:1;48710:80:0::1;::::0;::::1;12306:21:1::0;12363:2;12343:18;;;12336:30;12402:26;12382:18;;;12375:54;12446:18;;48710:80:0::1;12122:348:1::0;48710:80:0::1;50971:2:::2;50976;50980;50984:1;48908:47;48929:10;48940:2;48943;48946;48950:4;48908:20;:47::i;:::-;48899:79;;;::::0;-1:-1:-1;;;48899:79:0;;12677:2:1;48899:79:0::2;::::0;::::2;12659:21:1::0;12716:2;12696:18;;;12689:30;12755:19;12735:18;;;12728:47;12792:18;;48899:79:0::2;12475:341:1::0;48899:79:0::2;51050:29:::3;;51039:8;51011:25;51025:10;51011:13;:25::i;:::-;:36;;;;:::i;:::-;:68;51003:128;;;::::0;-1:-1:-1;;;51003:128:0;;13023:2:1;51003:128:0::3;::::0;::::3;13005:21:1::0;13062:2;13042:18;;;13035:30;13101:34;13081:18;;;13074:62;13172:17;13152:18;;;13145:45;13207:19;;51003:128:0::3;12821:411:1::0;51003:128:0::3;51146:7;51142:239;;;51170:5;;;;;;;;;-1:-1:-1::0;;;;;51170:5:0::3;-1:-1:-1::0;;;;;51170:18:0::3;;51189:10;51209:4;51227:24;;51216:8;:35;;;;:::i;:::-;51170:82;::::0;;::::3;::::0;;;;;;-1:-1:-1;;;;;13751:15:1;;;51170:82:0::3;::::0;::::3;13733:34:1::0;13803:15;;;;13783:18;;;13776:43;13835:18;;;13828:34;13645:18;;51170:82:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51142:239;;;51337:8;51315:19;;:30;;;;:::i;:::-;51302:9;:43;;51294:75;;;::::0;-1:-1:-1;;;51294:75:0;;14325:2:1;51294:75:0::3;::::0;::::3;14307:21:1::0;14364:2;14344:18;;;14337:30;14403:21;14383:18;;;14376:49;14442:18;;51294:75:0::3;14123:343:1::0;51294:75:0::3;51391:31;51401:10;51413:8;51391:9;:31::i;:::-;48801:1:::2;;;;48560::::1;50739:691:::0;;;;;;:::o;57425:117::-;57489:4;57513:21;57527:6;57513:13;:21::i;53132:426::-;4892:7;4919:6;-1:-1:-1;;;;;4919:6:0;3650:10;5066:23;5058:68;;;;-1:-1:-1;;;5058:68:0;;9783:2:1;5058:68:0;;;9765:21:1;;;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;9913:18;;5058:68:0;9581:356:1;5058:68:0;53234:1:::1;53217:14;:18;53209:54;;;::::0;-1:-1:-1;;;53209:54:0;;21686:2:1;53209:54:0::1;::::0;::::1;21668:21:1::0;21725:2;21705:18;;;21698:30;21764:25;21744:18;;;21737:53;21807:18;;53209:54:0::1;21484:347:1::0;53209:54:0::1;53278:19:::0;53274:267:::1;;53314:13;:33:::0;;53330:17:::1;::::0;53314:13;-1:-1:-1;;53314:33:0::1;::::0;53330:17;53314:33:::1;;;;;;55974:174;55937:211::o:0;53274:267::-:1;53378:14;53396:1;53378:19;53374:167;;;53414:13;:37:::0;;53430:21:::1;::::0;53414:13;-1:-1:-1;;53414:37:0::1;53430:21:::0;;53414:37:::1;::::0;53374:167:::1;-1:-1:-1::0;53493:13:0::1;:36:::0;;-1:-1:-1;;53493:36:0::1;53509:20;53493:36;::::0;;53132:426::o;44056:196::-;44171:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;44171:29:0;;;;;;;;;44216:28;;44171:24;;44216:28;;;;;;;44056:196;;;:::o;41863:2075::-;41987:14;;:32;;;;;;;;2492:25:1;;;-1:-1:-1;;;;;41987:14:0;;;;:23;;2465:18:1;;41987:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41986:33;41978:62;;;;-1:-1:-1;;;41978:62:0;;22038:2:1;41978:62:0;;;22020:21:1;22077:2;22057:18;;;22050:30;22116:18;22096;;;22089:46;22152:18;;41978:62:0;21836:340:1;41978:62:0;42051:35;42089:20;42101:7;42089:11;:20::i;:::-;42164:18;;42051:58;;-1:-1:-1;42122:22:0;;-1:-1:-1;;;;;42148:34:0;3650:10;-1:-1:-1;;;;;42148:34:0;;:87;;;-1:-1:-1;3650:10:0;42199:20;42211:7;42199:11;:20::i;:::-;-1:-1:-1;;;;;42199:36:0;;42148:87;:154;;;-1:-1:-1;42269:18:0;;42252:50;;3650:10;37725:164;:::i;42252:50::-;42122:181;;42324:17;42316:80;;;;-1:-1:-1;;;42316:80:0;;22383:2:1;42316:80:0;;;22365:21:1;22422:2;22402:18;;;22395:30;22461:34;22441:18;;;22434:62;22532:20;22512:18;;;22505:48;22570:19;;42316:80:0;22181:414:1;42316:80:0;42439:4;-1:-1:-1;;;;;42417:26:0;:13;:18;;;-1:-1:-1;;;;;42417:26:0;;42409:77;;;;-1:-1:-1;;;42409:77:0;;22802:2:1;42409:77:0;;;22784:21:1;22841:2;22821:18;;;22814:30;22880:34;22860:18;;;22853:62;22951:8;22931:18;;;22924:36;22977:19;;42409:77:0;22600:402:1;42409:77:0;-1:-1:-1;;;;;42505:16:0;;42497:66;;;;-1:-1:-1;;;42497:66:0;;23209:2:1;42497:66:0;;;23191:21:1;23248:2;23228:18;;;23221:30;23287:34;23267:18;;;23260:62;23358:7;23338:18;;;23331:35;23383:19;;42497:66:0;23007:401:1;42497:66:0;42684:49;42701:1;42705:7;42714:13;:18;;;42684:8;:49::i;:::-;-1:-1:-1;;;;;43029:18:0;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;-1:-1:-1;;43029:31:0;;;;;;;43075:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43075:29:0;;;;;;;;;;;;;43121:20;;;:11;:20;;;;;;:30;;43166:61;;;;;;43211:15;43166:61;;;;;;43501:11;;;43531:24;;;;;:29;43501:11;;43531:29;43527:295;;43599:20;43607:11;39154:12;;-1:-1:-1;39144:22:0;39063:111;43599:20;43595:212;;;43676:18;;;43644:24;;;:11;:24;;;;;;;;:50;;43759:28;;;;43717:70;;;;;;;;-1:-1:-1;;;;;43644:50:0;;;43717:70;;;;;;;43595:212;43004:829;43869:7;43865:2;-1:-1:-1;;;;;43850:27:0;43859:4;-1:-1:-1;;;;;43850:27:0;;;;;;;;;;;43888:42;41967:1971;;41863:2075;;;:::o;34297:229::-;34358:7;-1:-1:-1;;;;;34386:19:0;;34378:81;;;;-1:-1:-1;;;34378:81:0;;23615:2:1;34378:81:0;;;23597:21:1;23654:2;23634:18;;;23627:30;23693:34;23673:18;;;23666:62;23764:19;23744:18;;;23737:47;23801:19;;34378:81:0;23413:413:1;34378:81:0;-1:-1:-1;;;;;;34485:19:0;;;;;:12;:19;;;;;:32;;;;;;;34297:229::o;39182:104::-;39251:27;39261:2;39265:8;39251:27;;;;;;;;;;;;:9;:27::i;56223:183::-;56304:9;56319:7;-1:-1:-1;;;;;56319:12:0;56339:6;56319:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56303:47;;;56369:4;56361:37;;;;-1:-1:-1;;;56361:37:0;;24243:2:1;56361:37:0;;;24225:21:1;24282:2;24262:18;;;24255:30;24321:22;24301:18;;;24294:50;24361:18;;56361:37:0;24041:344:1;34728:537:0;-1:-1:-1;;;;;;;;;;;;;;;;;34831:16:0;34839:7;39154:12;;-1:-1:-1;39144:22:0;39063:111;34831:16;34823:71;;;;-1:-1:-1;;;34823:71:0;;24592:2:1;34823:71:0;;;24574:21:1;24631:2;24611:18;;;24604:30;24670:34;24650:18;;;24643:62;24741:12;24721:18;;;24714:40;24771:19;;34823:71:0;24390:406:1;34823:71:0;34952:7;34932:245;34999:31;35033:17;;;:11;:17;;;;;;;;;34999:51;;;;;;;;;-1:-1:-1;;;;;34999:51:0;;;;;;;;;;;;;;;;;;35073:28;35069:93;;35133:9;34728:537;-1:-1:-1;;;34728:537:0:o;35069:93::-;-1:-1:-1;;;34972:6:0;34932:245;;6116:191;6190:16;6209:6;;-1:-1:-1;;;;;6226:17:0;;;;;;;;;;6259:40;;6209:6;;;;;;;6259:40;;6190:16;6259:40;6179:128;6116:191;:::o;44817:804::-;44972:4;-1:-1:-1;;;;;44993:13:0;;7842:19;:23;44989:625;;45029:72;;;;;-1:-1:-1;;;;;45029:36:0;;;;;:72;;3650:10;;45080:4;;45086:7;;45095:5;;45029:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45029:72:0;;;;;;;;-1:-1:-1;;45029:72:0;;;;;;;;;;;;:::i;:::-;;;45025:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45275:13:0;;45271:273;;45318:61;;-1:-1:-1;;;45318:61:0;;18644:2:1;45318:61:0;;;18626:21:1;18683:2;18663:18;;;18656:30;18722:34;18702:18;;;18695:62;18793:21;18773:18;;;18766:49;18832:19;;45318:61:0;18442:415:1;45271:273:0;45494:6;45488:13;45479:6;45475:2;45471:15;45464:38;45025:534;45152:55;;45162:45;45152:55;;-1:-1:-1;45145:62:0;;44989:625;-1:-1:-1;45598:4:0;44989:625;44817:804;;;;;;:::o;23697:723::-;23753:13;23974:10;23970:53;;-1:-1:-1;;24001:10:0;;;;;;;;;;;;;;;;;;23697:723::o;23970:53::-;24048:5;24033:12;24089:78;24096:9;;24089:78;;24122:8;;;;:::i;:::-;;-1:-1:-1;24145:10:0;;-1:-1:-1;24153:2:0;24145:10;;:::i;:::-;;;24089:78;;;24177:19;24209:6;24199:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24199:17:0;;24177:39;;24227:154;24234:10;;24227:154;;24261:11;24271:1;24261:11;;:::i;:::-;;-1:-1:-1;24330:10:0;24338:2;24330:5;:10;:::i;:::-;24317:24;;:2;:24;:::i;:::-;24304:39;;24287:6;24294;24287:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;24358:11:0;24367:2;24358:11;;:::i;:::-;;;24227:154;;39649:163;39772:32;39778:2;39782:8;39792:5;39799:4;40233:12;;-1:-1:-1;;;;;40264:16:0;;40256:62;;;;-1:-1:-1;;;40256:62:0;;27151:2:1;40256:62:0;;;27133:21:1;27190:2;27170:18;;;27163:30;27229:34;27209:18;;;27202:62;27300:3;27280:18;;;27273:31;27321:19;;40256:62:0;26949:397:1;40256:62:0;40337:13;40329:66;;;;-1:-1:-1;;;40329:66:0;;27553:2:1;40329:66:0;;;27535:21:1;27592:2;27572:18;;;27565:30;27631:34;27611:18;;;27604:62;27702:10;27682:18;;;27675:38;27730:19;;40329:66:0;27351:404:1;40329:66:0;-1:-1:-1;;;;;40747:16:0;;;;;;:12;:16;;;;;;;;:45;;40807:50;40747:45;;;;;;;;;;;;;;40807:50;;;;;;;;;;;;;;40874:25;;;:11;:25;;;;;:35;;40924:66;;;;;;40974:15;40924:66;;;;;;;40874:25;;41059:415;41079:8;41075:1;:12;41059:415;;;41118:38;;41143:12;;-1:-1:-1;;;;;41118:38:0;;;41135:1;;41118:38;;41135:1;;41118:38;41179:4;41175:249;;;41242:59;41273:1;41277:2;41281:12;41295:5;41242:22;:59::i;:::-;41208:196;;;;-1:-1:-1;;;41208:196:0;;18644:2:1;41208:196:0;;;18626:21:1;18683:2;18663:18;;;18656:30;18722:34;18702:18;;;18695:62;18793:21;18773:18;;;18766:49;18832:19;;41208:196:0;18442:415:1;41208:196:0;41444:14;;;;;41089:3;41059:415;;;-1:-1:-1;41490:12:0;:27;41541:60;49864:619;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:328::-;954:3;992:5;986:12;1019:6;1014:3;1007:19;1035:63;1091:6;1084:4;1079:3;1075:14;1068:4;1061:5;1057:16;1035:63;:::i;:::-;1143:2;1131:15;-1:-1:-1;;1127:88:1;1118:98;;;;1218:4;1114:109;;901:328;-1:-1:-1;;901:328:1:o;1234:231::-;1383:2;1372:9;1365:21;1346:4;1403:56;1455:2;1444:9;1440:18;1432:6;1403:56;:::i;1470:180::-;1529:6;1582:2;1570:9;1561:7;1557:23;1553:32;1550:52;;;1598:1;1595;1588:12;1550:52;-1:-1:-1;1621:23:1;;1470:180;-1:-1:-1;1470:180:1:o;1886:196::-;1954:20;;-1:-1:-1;;;;;2003:54:1;;1993:65;;1983:93;;2072:1;2069;2062:12;1983:93;1886:196;;;:::o;2087:254::-;2155:6;2163;2216:2;2204:9;2195:7;2191:23;2187:32;2184:52;;;2232:1;2229;2222:12;2184:52;2255:29;2274:9;2255:29;:::i;:::-;2245:39;2331:2;2316:18;;;;2303:32;;-1:-1:-1;;;2087:254:1:o;2528:328::-;2605:6;2613;2621;2674:2;2662:9;2653:7;2649:23;2645:32;2642:52;;;2690:1;2687;2680:12;2642:52;2713:29;2732:9;2713:29;:::i;:::-;2703:39;;2761:38;2795:2;2784:9;2780:18;2761:38;:::i;:::-;2751:48;;2846:2;2835:9;2831:18;2818:32;2808:42;;2528:328;;;;;:::o;2861:156::-;2927:20;;2987:4;2976:16;;2966:27;;2956:55;;3007:1;3004;2997:12;3022:387;3106:6;3114;3122;3130;3183:3;3171:9;3162:7;3158:23;3154:33;3151:53;;;3200:1;3197;3190:12;3151:53;3236:9;3223:23;3213:33;;3265:36;3297:2;3286:9;3282:18;3265:36;:::i;:::-;3022:387;;3255:46;;-1:-1:-1;;;;3348:2:1;3333:18;;3320:32;;3399:2;3384:18;3371:32;;3022:387::o;3414:118::-;3500:5;3493:13;3486:21;3479:5;3476:32;3466:60;;3522:1;3519;3512:12;3537:309;3602:6;3610;3663:2;3651:9;3642:7;3638:23;3634:32;3631:52;;;3679:1;3676;3669:12;3631:52;3715:9;3702:23;3692:33;;3775:2;3764:9;3760:18;3747:32;3788:28;3810:5;3788:28;:::i;:::-;3835:5;3825:15;;;3537:309;;;;;:::o;3851:184::-;-1:-1:-1;;;3900:1:1;3893:88;4000:4;3997:1;3990:15;4024:4;4021:1;4014:15;4040:691;4105:5;4135:18;4176:2;4168:6;4165:14;4162:40;;;4182:18;;:::i;:::-;4316:2;4310:9;4382:2;4370:15;;-1:-1:-1;;4366:24:1;;;4392:2;4362:33;4358:42;4346:55;;;4416:18;;;4436:22;;;4413:46;4410:72;;;4462:18;;:::i;:::-;4502:10;4498:2;4491:22;4531:6;4522:15;;4561:6;4553;4546:22;4601:3;4592:6;4587:3;4583:16;4580:25;4577:45;;;4618:1;4615;4608:12;4577:45;4668:6;4663:3;4656:4;4648:6;4644:17;4631:44;4723:1;4716:4;4707:6;4699;4695:19;4691:30;4684:41;;;;4040:691;;;;;:::o;4736:451::-;4805:6;4858:2;4846:9;4837:7;4833:23;4829:32;4826:52;;;4874:1;4871;4864:12;4826:52;4914:9;4901:23;4947:18;4939:6;4936:30;4933:50;;;4979:1;4976;4969:12;4933:50;5002:22;;5055:4;5047:13;;5043:27;-1:-1:-1;5033:55:1;;5084:1;5081;5074:12;5033:55;5107:74;5173:7;5168:2;5155:16;5150:2;5146;5142:11;5107:74;:::i;5192:186::-;5251:6;5304:2;5292:9;5283:7;5279:23;5275:32;5272:52;;;5320:1;5317;5310:12;5272:52;5343:29;5362:9;5343:29;:::i;5383:462::-;5476:6;5484;5492;5500;5508;5561:3;5549:9;5540:7;5536:23;5532:33;5529:53;;;5578:1;5575;5568:12;5529:53;5601:29;5620:9;5601:29;:::i;:::-;5591:39;;5649:36;5681:2;5670:9;5666:18;5649:36;:::i;:::-;5383:462;;5639:46;;-1:-1:-1;;;;5732:2:1;5717:18;;5704:32;;5783:2;5768:18;;5755:32;;5834:3;5819:19;;;5806:33;;-1:-1:-1;5383:462:1:o;5850:184::-;-1:-1:-1;;;5899:1:1;5892:88;5999:4;5996:1;5989:15;6023:4;6020:1;6013:15;6039:403;6189:2;6174:18;;6222:1;6211:13;;6201:201;;-1:-1:-1;;;6255:1:1;6248:88;6359:4;6356:1;6349:15;6387:4;6384:1;6377:15;6201:201;6411:25;;;6039:403;:::o;6447:315::-;6512:6;6520;6573:2;6561:9;6552:7;6548:23;6544:32;6541:52;;;6589:1;6586;6579:12;6541:52;6612:29;6631:9;6612:29;:::i;:::-;6602:39;;6691:2;6680:9;6676:18;6663:32;6704:28;6726:5;6704:28;:::i;7021:667::-;7116:6;7124;7132;7140;7193:3;7181:9;7172:7;7168:23;7164:33;7161:53;;;7210:1;7207;7200:12;7161:53;7233:29;7252:9;7233:29;:::i;:::-;7223:39;;7281:38;7315:2;7304:9;7300:18;7281:38;:::i;:::-;7271:48;;7366:2;7355:9;7351:18;7338:32;7328:42;;7421:2;7410:9;7406:18;7393:32;7448:18;7440:6;7437:30;7434:50;;;7480:1;7477;7470:12;7434:50;7503:22;;7556:4;7548:13;;7544:27;-1:-1:-1;7534:55:1;;7585:1;7582;7575:12;7534:55;7608:74;7674:7;7669:2;7656:16;7651:2;7647;7643:11;7608:74;:::i;:::-;7598:84;;;7021:667;;;;;;;:::o;7938:260::-;8006:6;8014;8067:2;8055:9;8046:7;8042:23;8038:32;8035:52;;;8083:1;8080;8073:12;8035:52;8106:29;8125:9;8106:29;:::i;:::-;8096:39;;8154:38;8188:2;8177:9;8173:18;8154:38;:::i;:::-;8144:48;;7938:260;;;;;:::o;8203:517::-;8293:6;8301;8309;8317;8325;8378:3;8366:9;8357:7;8353:23;8349:33;8346:53;;;8395:1;8392;8385:12;8346:53;8431:9;8418:23;8408:33;;8491:2;8480:9;8476:18;8463:32;8504:28;8526:5;8504:28;:::i;:::-;8551:5;-1:-1:-1;8575:36:1;8607:2;8592:18;;8575:36;:::i;:::-;8203:517;;;;-1:-1:-1;8565:46:1;;8658:2;8643:18;;8630:32;;-1:-1:-1;8709:3:1;8694:19;8681:33;;8203:517;-1:-1:-1;;8203:517:1:o;8725:437::-;8804:1;8800:12;;;;8847;;;8868:61;;8922:4;8914:6;8910:17;8900:27;;8868:61;8975:2;8967:6;8964:14;8944:18;8941:38;8938:218;;;-1:-1:-1;;;9009:1:1;9002:88;9113:4;9110:1;9103:15;9141:4;9138:1;9131:15;8938:218;;8725:437;;;:::o;9942:184::-;-1:-1:-1;;;9991:1:1;9984:88;10091:4;10088:1;10081:15;10115:4;10112:1;10105:15;10131:128;10171:3;10202:1;10198:6;10195:1;10192:13;10189:39;;;10208:18;;:::i;:::-;-1:-1:-1;10244:9:1;;10131:128::o;13237:228::-;13277:7;13403:1;-1:-1:-1;;13331:74:1;13328:1;13325:81;13320:1;13313:9;13306:17;13302:105;13299:131;;;13410:18;;:::i;:::-;-1:-1:-1;13450:9:1;;13237:228::o;13873:245::-;13940:6;13993:2;13981:9;13972:7;13968:23;13964:32;13961:52;;;14009:1;14006;13999:12;13961:52;14041:9;14035:16;14060:28;14082:5;14060:28;:::i;19348:185::-;19390:3;19428:5;19422:12;19443:52;19488:6;19483:3;19476:4;19469:5;19465:16;19443:52;:::i;:::-;19511:16;;;;;19348:185;-1:-1:-1;;19348:185:1:o;19656:1416::-;19933:3;19962:1;19995:6;19989:13;20025:3;20047:1;20075:9;20071:2;20067:18;20057:28;;20135:2;20124:9;20120:18;20157;20147:61;;20201:4;20193:6;20189:17;20179:27;;20147:61;20227:2;20275;20267:6;20264:14;20244:18;20241:38;20238:222;;;-1:-1:-1;;;20309:3:1;20302:90;20415:4;20412:1;20405:15;20445:4;20440:3;20433:17;20238:222;20476:18;20503:162;;;;20679:1;20674:320;;;;20469:525;;20503:162;-1:-1:-1;;20540:9:1;20536:82;20531:3;20524:95;20648:6;20643:3;20639:16;20632:23;;20503:162;;20674:320;19295:1;19288:14;;;19332:4;19319:18;;20769:1;20783:165;20797:6;20794:1;20791:13;20783:165;;;20875:14;;20862:11;;;20855:35;20918:16;;;;20812:10;;20783:165;;;20787:3;;20977:6;20972:3;20968:16;20961:23;;20469:525;;;;;;;21010:56;21035:30;21061:3;21053:6;21035:30;:::i;:::-;19610:7;19598:20;;19643:1;19634:11;;19538:113;21010:56;21003:63;19656:1416;-1:-1:-1;;;;;19656:1416:1:o;25217:523::-;25411:4;-1:-1:-1;;;;;25521:2:1;25513:6;25509:15;25498:9;25491:34;25573:2;25565:6;25561:15;25556:2;25545:9;25541:18;25534:43;;25613:6;25608:2;25597:9;25593:18;25586:34;25656:3;25651:2;25640:9;25636:18;25629:31;25677:57;25729:3;25718:9;25714:19;25706:6;25677:57;:::i;:::-;25669:65;25217:523;-1:-1:-1;;;;;;25217:523:1:o;25745:249::-;25814:6;25867:2;25855:9;25846:7;25842:23;25838:32;25835:52;;;25883:1;25880;25873:12;25835:52;25915:9;25909:16;25934:30;25958:5;25934:30;:::i;25999:195::-;26038:3;-1:-1:-1;;26062:5:1;26059:77;26056:103;;;26139:18;;:::i;:::-;-1:-1:-1;26186:1:1;26175:13;;25999:195::o;26199:184::-;-1:-1:-1;;;26248:1:1;26241:88;26348:4;26345:1;26338:15;26372:4;26369:1;26362:15;26388:120;26428:1;26454;26444:35;;26459:18;;:::i;:::-;-1:-1:-1;26493:9:1;;26388:120::o;26513:125::-;26553:4;26581:1;26578;26575:8;26572:34;;;26586:18;;:::i;:::-;-1:-1:-1;26623:9:1;;26513:125::o;26643:112::-;26675:1;26701;26691:35;;26706:18;;:::i;:::-;-1:-1:-1;26740:9:1;;26643:112::o;26760:184::-;-1:-1:-1;;;26809:1:1;26802:88;26909:4;26906:1;26899:15;26933:4;26930:1;26923:15

Swarm Source

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