ETH Price: $3,392.78 (-1.26%)
Gas: 2 Gwei

Token

ForbiddenRealmsElfSyndicate (FRES)
 

Overview

Max Total Supply

793 FRES

Holders

104

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 FRES
0xaf4d5fbf87ec03b7bcfe50fdcbd4149a758e55b6
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:
ForbiddenRealmsElfSyndicate

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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;

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/elf.sol

/**
 *Submitted for verification at Etherscan.io on 2022-02-21
*/

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




pragma solidity >=0.8.9 <0.9.0;




contract ForbiddenRealmsElfSyndicate is Ownable, ERC721A {
    

    uint constant maxSupply = 6900;
    uint public totalNFTSupply = 0;
    uint public devReserve = 690; // developer reserve
    bool public isPublicOpen = true;
    uint public walletLimit = 2;
    string public baseURI;
    uint public maxPerTransaction = 2;  //Max Limit for Sale



    // claim mapping
    mapping(address => uint) private elvesClaimed;


    constructor() ERC721A("ForbiddenRealmsElfSyndicate", "FRES"){}


    // buy elves
   function freeMint(uint _count) external {
       
         require(isPublicOpen == true, "Sale is Paused.");
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 2");
        require(totalNFTSupply + devReserve + _count <= maxSupply, "Not enough tokens left");
        require(elvesClaimed[msg.sender] < walletLimit, "Wallet limit reached!");

      
        _safeMint(msg.sender, _count);
        elvesClaimed[msg.sender] += _count;
        totalNFTSupply += _count;
    }



    // gift elves
    function sendEleves(address _wallet, uint _count) public onlyOwner{
        require(_count > 0, "mint at least one token");
        require(totalNFTSupply +  _count  <= maxSupply, "not enough tokens left");
        _safeMint(_wallet, _count);
            
        totalNFTSupply += _count;
    }
    

    function setPublicSaleStatus(bool temp) external onlyOwner {
        isPublicOpen = temp;
    }

    function getPublicSaleStatus() public view returns(uint){
      require(isPublicOpen == true,"Sale not Started Yet.");
        return 1;
     }

       
    function setWaletLimit(uint _limit) external onlyOwner{
        walletLimit = _limit;
    }

  
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[{"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":"devReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSaleStatus","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":[],"name":"isPublicOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_wallet","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"sendEleves","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":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWaletLimit","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNFTSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260006009556102b2600a556001600b60006101000a81548160ff0219169083151502179055506002600c556002600e553480156200004157600080fd5b506040518060400160405280601b81526020017f466f7262696464656e5265616c6d73456c6653796e64696361746500000000008152506040518060400160405280600481526020017f4652455300000000000000000000000000000000000000000000000000000000815250620000ce620000c26200011e60201b60201c565b6200012660201b60201c565b8160039080519060200190620000e6929190620001ef565b508060049080519060200190620000ff929190620001ef565b5062000110620001ea60201b60201c565b600181905550505062000304565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620001fd90620002ce565b90600052602060002090601f0160209004810192826200022157600085556200026d565b82601f106200023c57805160ff19168380011785556200026d565b828001600101855582156200026d579182015b828111156200026c5782518255916020019190600101906200024f565b5b5090506200027c919062000280565b5090565b5b808211156200029b57600081600090555060010162000281565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e757607f821691505b60208210811415620002fe57620002fd6200029f565b5b50919050565b6135a880620003146000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a22cb465116100a2578063e2c7928111610071578063e2c79281146104f4578063e985e9c514610512578063f2fde38b14610542578063fcd2a4271461055e576101cf565b8063a22cb46514610470578063b423fe671461048c578063b88d4fde146104a8578063c87b56dd146104c4576101cf565b80638da5cb5b116100de5780638da5cb5b146103fc5780639120946c1461041a57806395d89b4114610436578063a0bcfc7f14610454576101cf565b806370a08231146103a6578063715018a6146103d65780637c928fe9146103e0576101cf565b80632daea42a11610171578063499e8eec1161014b578063499e8eec1461031c5780634b980d671461033a5780636352211e146103585780636c0360eb14610388576101cf565b80632daea42a146102c65780633c8463a1146102e257806342842e0e14610300576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806311c67efc1461026e57806318160ddd1461028c57806323b872dd146102aa576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e991906127ac565b61057c565b6040516101fb91906127f4565b60405180910390f35b61020c61058e565b60405161021991906128a8565b60405180910390f35b61023c60048036038101906102379190612900565b610620565b604051610249919061296e565b60405180910390f35b61026c600480360381019061026791906129b5565b61069c565b005b6102766107a7565b60405161028391906127f4565b60405180910390f35b6102946107ba565b6040516102a19190612a04565b60405180910390f35b6102c460048036038101906102bf9190612a1f565b6107d1565b005b6102e060048036038101906102db9190612900565b6107e1565b005b6102ea610867565b6040516102f79190612a04565b60405180910390f35b61031a60048036038101906103159190612a1f565b61086d565b005b61032461088d565b6040516103319190612a04565b60405180910390f35b6103426108ec565b60405161034f9190612a04565b60405180910390f35b610372600480360381019061036d9190612900565b6108f2565b60405161037f919061296e565b60405180910390f35b610390610908565b60405161039d91906128a8565b60405180910390f35b6103c060048036038101906103bb9190612a72565b610996565b6040516103cd9190612a04565b60405180910390f35b6103de610a66565b005b6103fa60048036038101906103f59190612900565b610aee565b005b610404610d2a565b604051610411919061296e565b60405180910390f35b610434600480360381019061042f91906129b5565b610d53565b005b61043e610e8b565b60405161044b91906128a8565b60405180910390f35b61046e60048036038101906104699190612bd4565b610f1d565b005b61048a60048036038101906104859190612c49565b610fb3565b005b6104a660048036038101906104a19190612c89565b61112b565b005b6104c260048036038101906104bd9190612d57565b6111c4565b005b6104de60048036038101906104d99190612900565b611240565b6040516104eb91906128a8565b60405180910390f35b6104fc6112df565b6040516105099190612a04565b60405180910390f35b61052c60048036038101906105279190612dda565b6112e5565b60405161053991906127f4565b60405180910390f35b61055c60048036038101906105579190612a72565b611379565b005b610566611471565b6040516105739190612a04565b60405180910390f35b600061058782611477565b9050919050565b60606003805461059d90612e49565b80601f01602080910402602001604051908101604052809291908181526020018280546105c990612e49565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b600061062b82611559565b610661576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a7826108f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561070f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6115a7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610760575061075e816107596115a7565b6112e5565b155b15610797576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107a28383836115af565b505050565b600b60009054906101000a900460ff1681565b60006107c4611661565b6002546001540303905090565b6107dc838383611666565b505050565b6107e96115a7565b73ffffffffffffffffffffffffffffffffffffffff16610807610d2a565b73ffffffffffffffffffffffffffffffffffffffff161461085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490612ec7565b60405180910390fd5b80600c8190555050565b600c5481565b610888838383604051806020016040528060008152506111c4565b505050565b600060011515600b60009054906101000a900460ff161515146108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc90612f33565b60405180910390fd5b6001905090565b600e5481565b60006108fd82611b1c565b600001519050919050565b600d805461091590612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461094190612e49565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610a6e6115a7565b73ffffffffffffffffffffffffffffffffffffffff16610a8c610d2a565b73ffffffffffffffffffffffffffffffffffffffff1614610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612ec7565b60405180910390fd5b610aec6000611dab565b565b60011515600b60009054906101000a900460ff16151514610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90612f9f565b60405180910390fd5b60008111610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e9061300b565b60405180910390fd5b600e54811115610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613077565b60405180910390fd5b611af481600a54600954610be091906130c6565b610bea91906130c6565b1115610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613168565b60405180910390fd5b600c54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906131d4565b60405180910390fd5b610cb83382611e6f565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d0791906130c6565b925050819055508060096000828254610d2091906130c6565b9250508190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d5b6115a7565b73ffffffffffffffffffffffffffffffffffffffff16610d79610d2a565b73ffffffffffffffffffffffffffffffffffffffff1614610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690612ec7565b60405180910390fd5b60008111610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e099061300b565b60405180910390fd5b611af481600954610e2391906130c6565b1115610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613240565b60405180910390fd5b610e6e8282611e6f565b8060096000828254610e8091906130c6565b925050819055505050565b606060048054610e9a90612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec690612e49565b8015610f135780601f10610ee857610100808354040283529160200191610f13565b820191906000526020600020905b815481529060010190602001808311610ef657829003601f168201915b5050505050905090565b610f256115a7565b73ffffffffffffffffffffffffffffffffffffffff16610f43610d2a565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612ec7565b60405180910390fd5b80600d9080519060200190610faf92919061265a565b5050565b610fbb6115a7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611020576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061102d6115a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110da6115a7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161111f91906127f4565b60405180910390a35050565b6111336115a7565b73ffffffffffffffffffffffffffffffffffffffff16611151610d2a565b73ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90612ec7565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6111cf848484611666565b6111ee8373ffffffffffffffffffffffffffffffffffffffff16611e8d565b8015611203575061120184848484611eb0565b155b1561123a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061124b82611559565b611281576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061128b612010565b90506000815114156112ac57604051806020016040528060008152506112d7565b806112b6846120a2565b6040516020016112c792919061329c565b6040516020818303038152906040525b915050919050565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113816115a7565b73ffffffffffffffffffffffffffffffffffffffff1661139f610d2a565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90612ec7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613332565b60405180910390fd5b61146e81611dab565b50565b600a5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061154257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611552575061155182612203565b5b9050919050565b600081611564611661565b11158015611573575060015482105b80156115a0575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061167182611b1c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116dc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116fd6115a7565b73ffffffffffffffffffffffffffffffffffffffff16148061172c575061172b856117266115a7565b6112e5565b5b80611771575061173a6115a7565b73ffffffffffffffffffffffffffffffffffffffff1661175984610620565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117aa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611811576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181e858585600161226d565b61182a600084876115af565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611aaa576001548214611aa957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b158585856001612273565b5050505050565b611b246126e0565b600082905080611b32611661565b11158015611b41575060015481105b15611d74576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d7257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c56578092505050611da6565b5b600115611d7157818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d6c578092505050611da6565b611c57565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e89828260405180602001604052806000815250612279565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ed66115a7565b8786866040518563ffffffff1660e01b8152600401611ef894939291906133a7565b602060405180830381600087803b158015611f1257600080fd5b505af1925050508015611f4357506040513d601f19601f82011682018060405250810190611f409190613408565b60015b611fbd573d8060008114611f73576040519150601f19603f3d011682016040523d82523d6000602084013e611f78565b606091505b50600081511415611fb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461201f90612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461204b90612e49565b80156120985780601f1061206d57610100808354040283529160200191612098565b820191906000526020600020905b81548152906001019060200180831161207b57829003601f168201915b5050505050905090565b606060008214156120ea576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121fe565b600082905060005b6000821461211c57808061210590613435565b915050600a8261211591906134ad565b91506120f2565b60008167ffffffffffffffff81111561213857612137612aa9565b5b6040519080825280601f01601f19166020018201604052801561216a5781602001600182028036833780820191505090505b5090505b600085146121f75760018261218391906134de565b9150600a856121929190613512565b603061219e91906130c6565b60f81b8183815181106121b4576121b3613543565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121f091906134ad565b945061216e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b612286838383600161228b565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156122f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612334576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612341600086838761226d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561250b575061250a8773ffffffffffffffffffffffffffffffffffffffff16611e8d565b5b156125d1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125806000888480600101955088611eb0565b6125b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156125115782600154146125cc57600080fd5b61263d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125d2575b8160018190555050506126536000868387612273565b5050505050565b82805461266690612e49565b90600052602060002090601f01602090048101928261268857600085556126cf565b82601f106126a157805160ff19168380011785556126cf565b828001600101855582156126cf579182015b828111156126ce5782518255916020019190600101906126b3565b5b5090506126dc9190612723565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561273c576000816000905550600101612724565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61278981612754565b811461279457600080fd5b50565b6000813590506127a681612780565b92915050565b6000602082840312156127c2576127c161274a565b5b60006127d084828501612797565b91505092915050565b60008115159050919050565b6127ee816127d9565b82525050565b600060208201905061280960008301846127e5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561284957808201518184015260208101905061282e565b83811115612858576000848401525b50505050565b6000601f19601f8301169050919050565b600061287a8261280f565b612884818561281a565b935061289481856020860161282b565b61289d8161285e565b840191505092915050565b600060208201905081810360008301526128c2818461286f565b905092915050565b6000819050919050565b6128dd816128ca565b81146128e857600080fd5b50565b6000813590506128fa816128d4565b92915050565b6000602082840312156129165761291561274a565b5b6000612924848285016128eb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129588261292d565b9050919050565b6129688161294d565b82525050565b6000602082019050612983600083018461295f565b92915050565b6129928161294d565b811461299d57600080fd5b50565b6000813590506129af81612989565b92915050565b600080604083850312156129cc576129cb61274a565b5b60006129da858286016129a0565b92505060206129eb858286016128eb565b9150509250929050565b6129fe816128ca565b82525050565b6000602082019050612a1960008301846129f5565b92915050565b600080600060608486031215612a3857612a3761274a565b5b6000612a46868287016129a0565b9350506020612a57868287016129a0565b9250506040612a68868287016128eb565b9150509250925092565b600060208284031215612a8857612a8761274a565b5b6000612a96848285016129a0565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ae18261285e565b810181811067ffffffffffffffff82111715612b0057612aff612aa9565b5b80604052505050565b6000612b13612740565b9050612b1f8282612ad8565b919050565b600067ffffffffffffffff821115612b3f57612b3e612aa9565b5b612b488261285e565b9050602081019050919050565b82818337600083830152505050565b6000612b77612b7284612b24565b612b09565b905082815260208101848484011115612b9357612b92612aa4565b5b612b9e848285612b55565b509392505050565b600082601f830112612bbb57612bba612a9f565b5b8135612bcb848260208601612b64565b91505092915050565b600060208284031215612bea57612be961274a565b5b600082013567ffffffffffffffff811115612c0857612c0761274f565b5b612c1484828501612ba6565b91505092915050565b612c26816127d9565b8114612c3157600080fd5b50565b600081359050612c4381612c1d565b92915050565b60008060408385031215612c6057612c5f61274a565b5b6000612c6e858286016129a0565b9250506020612c7f85828601612c34565b9150509250929050565b600060208284031215612c9f57612c9e61274a565b5b6000612cad84828501612c34565b91505092915050565b600067ffffffffffffffff821115612cd157612cd0612aa9565b5b612cda8261285e565b9050602081019050919050565b6000612cfa612cf584612cb6565b612b09565b905082815260208101848484011115612d1657612d15612aa4565b5b612d21848285612b55565b509392505050565b600082601f830112612d3e57612d3d612a9f565b5b8135612d4e848260208601612ce7565b91505092915050565b60008060008060808587031215612d7157612d7061274a565b5b6000612d7f878288016129a0565b9450506020612d90878288016129a0565b9350506040612da1878288016128eb565b925050606085013567ffffffffffffffff811115612dc257612dc161274f565b5b612dce87828801612d29565b91505092959194509250565b60008060408385031215612df157612df061274a565b5b6000612dff858286016129a0565b9250506020612e10858286016129a0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e6157607f821691505b60208210811415612e7557612e74612e1a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eb160208361281a565b9150612ebc82612e7b565b602082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b6000612f1d60158361281a565b9150612f2882612ee7565b602082019050919050565b60006020820190508181036000830152612f4c81612f10565b9050919050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6000612f89600f8361281a565b9150612f9482612f53565b602082019050919050565b60006020820190508181036000830152612fb881612f7c565b9050919050565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b6000612ff560178361281a565b915061300082612fbf565b602082019050919050565b6000602082019050818103600083015261302481612fe8565b9050919050565b7f6d617820706572207472616e73616374696f6e20320000000000000000000000600082015250565b600061306160158361281a565b915061306c8261302b565b602082019050919050565b6000602082019050818103600083015261309081613054565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130d1826128ca565b91506130dc836128ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561311157613110613097565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061315260168361281a565b915061315d8261311c565b602082019050919050565b6000602082019050818103600083015261318181613145565b9050919050565b7f57616c6c6574206c696d69742072656163686564210000000000000000000000600082015250565b60006131be60158361281a565b91506131c982613188565b602082019050919050565b600060208201905081810360008301526131ed816131b1565b9050919050565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061322a60168361281a565b9150613235826131f4565b602082019050919050565b600060208201905081810360008301526132598161321d565b9050919050565b600081905092915050565b60006132768261280f565b6132808185613260565b935061329081856020860161282b565b80840191505092915050565b60006132a8828561326b565b91506132b4828461326b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061331c60268361281a565b9150613327826132c0565b604082019050919050565b6000602082019050818103600083015261334b8161330f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061337982613352565b613383818561335d565b935061339381856020860161282b565b61339c8161285e565b840191505092915050565b60006080820190506133bc600083018761295f565b6133c9602083018661295f565b6133d660408301856129f5565b81810360608301526133e8818461336e565b905095945050505050565b60008151905061340281612780565b92915050565b60006020828403121561341e5761341d61274a565b5b600061342c848285016133f3565b91505092915050565b6000613440826128ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561347357613472613097565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134b8826128ca565b91506134c3836128ca565b9250826134d3576134d261347e565b5b828204905092915050565b60006134e9826128ca565b91506134f4836128ca565b92508282101561350757613506613097565b5b828203905092915050565b600061351d826128ca565b9150613528836128ca565b9250826135385761353761347e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122001beb5643faa80d5d2923d6603f7f87d4e65a3397e0db7952164f89af98bdf9464736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063a22cb465116100a2578063e2c7928111610071578063e2c79281146104f4578063e985e9c514610512578063f2fde38b14610542578063fcd2a4271461055e576101cf565b8063a22cb46514610470578063b423fe671461048c578063b88d4fde146104a8578063c87b56dd146104c4576101cf565b80638da5cb5b116100de5780638da5cb5b146103fc5780639120946c1461041a57806395d89b4114610436578063a0bcfc7f14610454576101cf565b806370a08231146103a6578063715018a6146103d65780637c928fe9146103e0576101cf565b80632daea42a11610171578063499e8eec1161014b578063499e8eec1461031c5780634b980d671461033a5780636352211e146103585780636c0360eb14610388576101cf565b80632daea42a146102c65780633c8463a1146102e257806342842e0e14610300576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806311c67efc1461026e57806318160ddd1461028c57806323b872dd146102aa576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e991906127ac565b61057c565b6040516101fb91906127f4565b60405180910390f35b61020c61058e565b60405161021991906128a8565b60405180910390f35b61023c60048036038101906102379190612900565b610620565b604051610249919061296e565b60405180910390f35b61026c600480360381019061026791906129b5565b61069c565b005b6102766107a7565b60405161028391906127f4565b60405180910390f35b6102946107ba565b6040516102a19190612a04565b60405180910390f35b6102c460048036038101906102bf9190612a1f565b6107d1565b005b6102e060048036038101906102db9190612900565b6107e1565b005b6102ea610867565b6040516102f79190612a04565b60405180910390f35b61031a60048036038101906103159190612a1f565b61086d565b005b61032461088d565b6040516103319190612a04565b60405180910390f35b6103426108ec565b60405161034f9190612a04565b60405180910390f35b610372600480360381019061036d9190612900565b6108f2565b60405161037f919061296e565b60405180910390f35b610390610908565b60405161039d91906128a8565b60405180910390f35b6103c060048036038101906103bb9190612a72565b610996565b6040516103cd9190612a04565b60405180910390f35b6103de610a66565b005b6103fa60048036038101906103f59190612900565b610aee565b005b610404610d2a565b604051610411919061296e565b60405180910390f35b610434600480360381019061042f91906129b5565b610d53565b005b61043e610e8b565b60405161044b91906128a8565b60405180910390f35b61046e60048036038101906104699190612bd4565b610f1d565b005b61048a60048036038101906104859190612c49565b610fb3565b005b6104a660048036038101906104a19190612c89565b61112b565b005b6104c260048036038101906104bd9190612d57565b6111c4565b005b6104de60048036038101906104d99190612900565b611240565b6040516104eb91906128a8565b60405180910390f35b6104fc6112df565b6040516105099190612a04565b60405180910390f35b61052c60048036038101906105279190612dda565b6112e5565b60405161053991906127f4565b60405180910390f35b61055c60048036038101906105579190612a72565b611379565b005b610566611471565b6040516105739190612a04565b60405180910390f35b600061058782611477565b9050919050565b60606003805461059d90612e49565b80601f01602080910402602001604051908101604052809291908181526020018280546105c990612e49565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b600061062b82611559565b610661576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a7826108f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561070f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6115a7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610760575061075e816107596115a7565b6112e5565b155b15610797576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107a28383836115af565b505050565b600b60009054906101000a900460ff1681565b60006107c4611661565b6002546001540303905090565b6107dc838383611666565b505050565b6107e96115a7565b73ffffffffffffffffffffffffffffffffffffffff16610807610d2a565b73ffffffffffffffffffffffffffffffffffffffff161461085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490612ec7565b60405180910390fd5b80600c8190555050565b600c5481565b610888838383604051806020016040528060008152506111c4565b505050565b600060011515600b60009054906101000a900460ff161515146108e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dc90612f33565b60405180910390fd5b6001905090565b600e5481565b60006108fd82611b1c565b600001519050919050565b600d805461091590612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461094190612e49565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610a6e6115a7565b73ffffffffffffffffffffffffffffffffffffffff16610a8c610d2a565b73ffffffffffffffffffffffffffffffffffffffff1614610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612ec7565b60405180910390fd5b610aec6000611dab565b565b60011515600b60009054906101000a900460ff16151514610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90612f9f565b60405180910390fd5b60008111610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e9061300b565b60405180910390fd5b600e54811115610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613077565b60405180910390fd5b611af481600a54600954610be091906130c6565b610bea91906130c6565b1115610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613168565b60405180910390fd5b600c54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906131d4565b60405180910390fd5b610cb83382611e6f565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d0791906130c6565b925050819055508060096000828254610d2091906130c6565b9250508190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d5b6115a7565b73ffffffffffffffffffffffffffffffffffffffff16610d79610d2a565b73ffffffffffffffffffffffffffffffffffffffff1614610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690612ec7565b60405180910390fd5b60008111610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e099061300b565b60405180910390fd5b611af481600954610e2391906130c6565b1115610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613240565b60405180910390fd5b610e6e8282611e6f565b8060096000828254610e8091906130c6565b925050819055505050565b606060048054610e9a90612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec690612e49565b8015610f135780601f10610ee857610100808354040283529160200191610f13565b820191906000526020600020905b815481529060010190602001808311610ef657829003601f168201915b5050505050905090565b610f256115a7565b73ffffffffffffffffffffffffffffffffffffffff16610f43610d2a565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612ec7565b60405180910390fd5b80600d9080519060200190610faf92919061265a565b5050565b610fbb6115a7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611020576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061102d6115a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110da6115a7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161111f91906127f4565b60405180910390a35050565b6111336115a7565b73ffffffffffffffffffffffffffffffffffffffff16611151610d2a565b73ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90612ec7565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6111cf848484611666565b6111ee8373ffffffffffffffffffffffffffffffffffffffff16611e8d565b8015611203575061120184848484611eb0565b155b1561123a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061124b82611559565b611281576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061128b612010565b90506000815114156112ac57604051806020016040528060008152506112d7565b806112b6846120a2565b6040516020016112c792919061329c565b6040516020818303038152906040525b915050919050565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113816115a7565b73ffffffffffffffffffffffffffffffffffffffff1661139f610d2a565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90612ec7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613332565b60405180910390fd5b61146e81611dab565b50565b600a5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061154257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611552575061155182612203565b5b9050919050565b600081611564611661565b11158015611573575060015482105b80156115a0575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061167182611b1c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116dc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116fd6115a7565b73ffffffffffffffffffffffffffffffffffffffff16148061172c575061172b856117266115a7565b6112e5565b5b80611771575061173a6115a7565b73ffffffffffffffffffffffffffffffffffffffff1661175984610620565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117aa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611811576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61181e858585600161226d565b61182a600084876115af565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611aaa576001548214611aa957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b158585856001612273565b5050505050565b611b246126e0565b600082905080611b32611661565b11158015611b41575060015481105b15611d74576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d7257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c56578092505050611da6565b5b600115611d7157818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d6c578092505050611da6565b611c57565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e89828260405180602001604052806000815250612279565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ed66115a7565b8786866040518563ffffffff1660e01b8152600401611ef894939291906133a7565b602060405180830381600087803b158015611f1257600080fd5b505af1925050508015611f4357506040513d601f19601f82011682018060405250810190611f409190613408565b60015b611fbd573d8060008114611f73576040519150601f19603f3d011682016040523d82523d6000602084013e611f78565b606091505b50600081511415611fb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d805461201f90612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461204b90612e49565b80156120985780601f1061206d57610100808354040283529160200191612098565b820191906000526020600020905b81548152906001019060200180831161207b57829003601f168201915b5050505050905090565b606060008214156120ea576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121fe565b600082905060005b6000821461211c57808061210590613435565b915050600a8261211591906134ad565b91506120f2565b60008167ffffffffffffffff81111561213857612137612aa9565b5b6040519080825280601f01601f19166020018201604052801561216a5781602001600182028036833780820191505090505b5090505b600085146121f75760018261218391906134de565b9150600a856121929190613512565b603061219e91906130c6565b60f81b8183815181106121b4576121b3613543565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121f091906134ad565b945061216e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b612286838383600161228b565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156122f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612334576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612341600086838761226d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561250b575061250a8773ffffffffffffffffffffffffffffffffffffffff16611e8d565b5b156125d1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125806000888480600101955088611eb0565b6125b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156125115782600154146125cc57600080fd5b61263d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125d2575b8160018190555050506126536000868387612273565b5050505050565b82805461266690612e49565b90600052602060002090601f01602090048101928261268857600085556126cf565b82601f106126a157805160ff19168380011785556126cf565b828001600101855582156126cf579182015b828111156126ce5782518255916020019190600101906126b3565b5b5090506126dc9190612723565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561273c576000816000905550600101612724565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61278981612754565b811461279457600080fd5b50565b6000813590506127a681612780565b92915050565b6000602082840312156127c2576127c161274a565b5b60006127d084828501612797565b91505092915050565b60008115159050919050565b6127ee816127d9565b82525050565b600060208201905061280960008301846127e5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561284957808201518184015260208101905061282e565b83811115612858576000848401525b50505050565b6000601f19601f8301169050919050565b600061287a8261280f565b612884818561281a565b935061289481856020860161282b565b61289d8161285e565b840191505092915050565b600060208201905081810360008301526128c2818461286f565b905092915050565b6000819050919050565b6128dd816128ca565b81146128e857600080fd5b50565b6000813590506128fa816128d4565b92915050565b6000602082840312156129165761291561274a565b5b6000612924848285016128eb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129588261292d565b9050919050565b6129688161294d565b82525050565b6000602082019050612983600083018461295f565b92915050565b6129928161294d565b811461299d57600080fd5b50565b6000813590506129af81612989565b92915050565b600080604083850312156129cc576129cb61274a565b5b60006129da858286016129a0565b92505060206129eb858286016128eb565b9150509250929050565b6129fe816128ca565b82525050565b6000602082019050612a1960008301846129f5565b92915050565b600080600060608486031215612a3857612a3761274a565b5b6000612a46868287016129a0565b9350506020612a57868287016129a0565b9250506040612a68868287016128eb565b9150509250925092565b600060208284031215612a8857612a8761274a565b5b6000612a96848285016129a0565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ae18261285e565b810181811067ffffffffffffffff82111715612b0057612aff612aa9565b5b80604052505050565b6000612b13612740565b9050612b1f8282612ad8565b919050565b600067ffffffffffffffff821115612b3f57612b3e612aa9565b5b612b488261285e565b9050602081019050919050565b82818337600083830152505050565b6000612b77612b7284612b24565b612b09565b905082815260208101848484011115612b9357612b92612aa4565b5b612b9e848285612b55565b509392505050565b600082601f830112612bbb57612bba612a9f565b5b8135612bcb848260208601612b64565b91505092915050565b600060208284031215612bea57612be961274a565b5b600082013567ffffffffffffffff811115612c0857612c0761274f565b5b612c1484828501612ba6565b91505092915050565b612c26816127d9565b8114612c3157600080fd5b50565b600081359050612c4381612c1d565b92915050565b60008060408385031215612c6057612c5f61274a565b5b6000612c6e858286016129a0565b9250506020612c7f85828601612c34565b9150509250929050565b600060208284031215612c9f57612c9e61274a565b5b6000612cad84828501612c34565b91505092915050565b600067ffffffffffffffff821115612cd157612cd0612aa9565b5b612cda8261285e565b9050602081019050919050565b6000612cfa612cf584612cb6565b612b09565b905082815260208101848484011115612d1657612d15612aa4565b5b612d21848285612b55565b509392505050565b600082601f830112612d3e57612d3d612a9f565b5b8135612d4e848260208601612ce7565b91505092915050565b60008060008060808587031215612d7157612d7061274a565b5b6000612d7f878288016129a0565b9450506020612d90878288016129a0565b9350506040612da1878288016128eb565b925050606085013567ffffffffffffffff811115612dc257612dc161274f565b5b612dce87828801612d29565b91505092959194509250565b60008060408385031215612df157612df061274a565b5b6000612dff858286016129a0565b9250506020612e10858286016129a0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e6157607f821691505b60208210811415612e7557612e74612e1a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eb160208361281a565b9150612ebc82612e7b565b602082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b6000612f1d60158361281a565b9150612f2882612ee7565b602082019050919050565b60006020820190508181036000830152612f4c81612f10565b9050919050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6000612f89600f8361281a565b9150612f9482612f53565b602082019050919050565b60006020820190508181036000830152612fb881612f7c565b9050919050565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b6000612ff560178361281a565b915061300082612fbf565b602082019050919050565b6000602082019050818103600083015261302481612fe8565b9050919050565b7f6d617820706572207472616e73616374696f6e20320000000000000000000000600082015250565b600061306160158361281a565b915061306c8261302b565b602082019050919050565b6000602082019050818103600083015261309081613054565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130d1826128ca565b91506130dc836128ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561311157613110613097565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061315260168361281a565b915061315d8261311c565b602082019050919050565b6000602082019050818103600083015261318181613145565b9050919050565b7f57616c6c6574206c696d69742072656163686564210000000000000000000000600082015250565b60006131be60158361281a565b91506131c982613188565b602082019050919050565b600060208201905081810360008301526131ed816131b1565b9050919050565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061322a60168361281a565b9150613235826131f4565b602082019050919050565b600060208201905081810360008301526132598161321d565b9050919050565b600081905092915050565b60006132768261280f565b6132808185613260565b935061329081856020860161282b565b80840191505092915050565b60006132a8828561326b565b91506132b4828461326b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061331c60268361281a565b9150613327826132c0565b604082019050919050565b6000602082019050818103600083015261334b8161330f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061337982613352565b613383818561335d565b935061339381856020860161282b565b61339c8161285e565b840191505092915050565b60006080820190506133bc600083018761295f565b6133c9602083018661295f565b6133d660408301856129f5565b81810360608301526133e8818461336e565b905095945050505050565b60008151905061340281612780565b92915050565b60006020828403121561341e5761341d61274a565b5b600061342c848285016133f3565b91505092915050565b6000613440826128ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561347357613472613097565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134b8826128ca565b91506134c3836128ca565b9250826134d3576134d261347e565b5b828204905092915050565b60006134e9826128ca565b91506134f4836128ca565b92508282101561350757613506613097565b5b828203905092915050565b600061351d826128ca565b9150613528836128ca565b9250826135385761353761347e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122001beb5643faa80d5d2923d6603f7f87d4e65a3397e0db7952164f89af98bdf9464736f6c63430008090033

Deployed Bytecode Sourcemap

44947:2255:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47037:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30100:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31603:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31166:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45149:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26236:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32468:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46652:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45187:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32709:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46489:146;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45249:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29908:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45221:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27356:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4705:103;;;:::i;:::-;;45484:554;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4054:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46069:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30269:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46757:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31879:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46384:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32965:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30444:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45056:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32237:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4963:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45093:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47037:162;47131:4;47155:36;47179:11;47155:23;:36::i;:::-;47148:43;;47037:162;;;:::o;30100:100::-;30154:13;30187:5;30180:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30100:100;:::o;31603:204::-;31671:7;31696:16;31704:7;31696;:16::i;:::-;31691:64;;31721:34;;;;;;;;;;;;;;31691:64;31775:15;:24;31791:7;31775:24;;;;;;;;;;;;;;;;;;;;;31768:31;;31603:204;;;:::o;31166:371::-;31239:13;31255:24;31271:7;31255:15;:24::i;:::-;31239:40;;31300:5;31294:11;;:2;:11;;;31290:48;;;31314:24;;;;;;;;;;;;;;31290:48;31371:5;31355:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31381:37;31398:5;31405:12;:10;:12::i;:::-;31381:16;:37::i;:::-;31380:38;31355:63;31351:138;;;31442:35;;;;;;;;;;;;;;31351:138;31501:28;31510:2;31514:7;31523:5;31501:8;:28::i;:::-;31228:309;31166:371;;:::o;45149:31::-;;;;;;;;;;;;;:::o;26236:303::-;26280:7;26505:15;:13;:15::i;:::-;26490:12;;26474:13;;:28;:46;26467:53;;26236:303;:::o;32468:170::-;32602:28;32612:4;32618:2;32622:7;32602:9;:28::i;:::-;32468:170;;;:::o;46652:93::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46731:6:::1;46717:11;:20;;;;46652:93:::0;:::o;45187:27::-;;;;:::o;32709:185::-;32847:39;32864:4;32870:2;32874:7;32847:39;;;;;;;;;;;;:16;:39::i;:::-;32709:185;;;:::o;46489:146::-;46540:4;46578;46562:20;;:12;;;;;;;;;;;:20;;;46554:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46625:1;46618:8;;46489:146;:::o;45249:33::-;;;;:::o;29908:125::-;29972:7;29999:21;30012:7;29999:12;:21::i;:::-;:26;;;29992:33;;29908:125;;;:::o;45221:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27356:206::-;27420:7;27461:1;27444:19;;:5;:19;;;27440:60;;;27472:28;;;;;;;;;;;;;;27440:60;27526:12;:19;27539:5;27526:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27518:36;;27511:43;;27356:206;;;:::o;4705:103::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4770:30:::1;4797:1;4770:18;:30::i;:::-;4705:103::o:0;45484:554::-;45569:4;45553:20;;:12;;;;;;;;;;;:20;;;45545:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;45621:1;45612:6;:10;45604:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;45679:17;;45669:6;:27;;45661:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45045:4;45771:6;45758:10;;45741:14;;:27;;;;:::i;:::-;:36;;;;:::i;:::-;:49;;45733:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;45863:11;;45836:12;:24;45849:10;45836:24;;;;;;;;;;;;;;;;:38;45828:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45921:29;45931:10;45943:6;45921:9;:29::i;:::-;45989:6;45961:12;:24;45974:10;45961:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;46024:6;46006:14;;:24;;;;;;;:::i;:::-;;;;;;;;45484:554;:::o;4054:87::-;4100:7;4127:6;;;;;;;;;;;4120:13;;4054:87;:::o;46069:301::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46163:1:::1;46154:6;:10;46146:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;45045:4;46229:6;46211:14;;:24;;;;:::i;:::-;:38;;46203:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46287:26;46297:7;46306:6;46287:9;:26::i;:::-;46356:6;46338:14;;:24;;;;;;;:::i;:::-;;;;;;;;46069:301:::0;;:::o;30269:104::-;30325:13;30358:7;30351:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30269:104;:::o;46757:92::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46837:4:::1;46827:7;:14;;;;;;;;;;;;:::i;:::-;;46757:92:::0;:::o;31879:287::-;31990:12;:10;:12::i;:::-;31978:24;;:8;:24;;;31974:54;;;32011:17;;;;;;;;;;;;;;31974:54;32086:8;32041:18;:32;32060:12;:10;:12::i;:::-;32041:32;;;;;;;;;;;;;;;:42;32074:8;32041:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32139:8;32110:48;;32125:12;:10;:12::i;:::-;32110:48;;;32149:8;32110:48;;;;;;:::i;:::-;;;;;;;;31879:287;;:::o;46384:97::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46469:4:::1;46454:12;;:19;;;;;;;;;;;;;;;;;;46384:97:::0;:::o;32965:369::-;33132:28;33142:4;33148:2;33152:7;33132:9;:28::i;:::-;33175:15;:2;:13;;;:15::i;:::-;:76;;;;;33195:56;33226:4;33232:2;33236:7;33245:5;33195:30;:56::i;:::-;33194:57;33175:76;33171:156;;;33275:40;;;;;;;;;;;;;;33171:156;32965:369;;;;:::o;30444:318::-;30517:13;30548:16;30556:7;30548;:16::i;:::-;30543:59;;30573:29;;;;;;;;;;;;;;30543:59;30615:21;30639:10;:8;:10::i;:::-;30615:34;;30692:1;30673:7;30667:21;:26;;:87;;;;;;;;;;;;;;;;;30720:7;30729:18;:7;:16;:18::i;:::-;30703:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30667:87;30660:94;;;30444:318;;;:::o;45056:30::-;;;;:::o;32237:164::-;32334:4;32358:18;:25;32377:5;32358:25;;;;;;;;;;;;;;;:35;32384:8;32358:35;;;;;;;;;;;;;;;;;;;;;;;;;32351:42;;32237:164;;;;:::o;4963:201::-;4285:12;:10;:12::i;:::-;4274:23;;:7;:5;:7::i;:::-;:23;;;4266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5072:1:::1;5052:22;;:8;:22;;;;5044:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5128:28;5147:8;5128:18;:28::i;:::-;4963:201:::0;:::o;45093:28::-;;;;:::o;26987:305::-;27089:4;27141:25;27126:40;;;:11;:40;;;;:105;;;;27198:33;27183:48;;;:11;:48;;;;27126:105;:158;;;;27248:36;27272:11;27248:23;:36::i;:::-;27126:158;27106:178;;26987:305;;;:::o;33589:187::-;33646:4;33689:7;33670:15;:13;:15::i;:::-;:26;;:53;;;;;33710:13;;33700:7;:23;33670:53;:98;;;;;33741:11;:20;33753:7;33741:20;;;;;;;;;;;:27;;;;;;;;;;;;33740:28;33670:98;33663:105;;33589:187;;;:::o;2778:98::-;2831:7;2858:10;2851:17;;2778:98;:::o;41759:196::-;41901:2;41874:15;:24;41890:7;41874:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41939:7;41935:2;41919:28;;41928:5;41919:28;;;;;;;;;;;;41759:196;;;:::o;26010:92::-;26066:7;26010:92;:::o;36702:2130::-;36817:35;36855:21;36868:7;36855:12;:21::i;:::-;36817:59;;36915:4;36893:26;;:13;:18;;;:26;;;36889:67;;36928:28;;;;;;;;;;;;;;36889:67;36969:22;37011:4;36995:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37032:36;37049:4;37055:12;:10;:12::i;:::-;37032:16;:36::i;:::-;36995:73;:126;;;;37109:12;:10;:12::i;:::-;37085:36;;:20;37097:7;37085:11;:20::i;:::-;:36;;;36995:126;36969:153;;37140:17;37135:66;;37166:35;;;;;;;;;;;;;;37135:66;37230:1;37216:16;;:2;:16;;;37212:52;;;37241:23;;;;;;;;;;;;;;37212:52;37277:43;37299:4;37305:2;37309:7;37318:1;37277:21;:43::i;:::-;37385:35;37402:1;37406:7;37415:4;37385:8;:35::i;:::-;37746:1;37716:12;:18;37729:4;37716:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37790:1;37762:12;:16;37775:2;37762:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37808:31;37842:11;:20;37854:7;37842:20;;;;;;;;;;;37808:54;;37893:2;37877:8;:13;;;:18;;;;;;;;;;;;;;;;;;37943:15;37910:8;:23;;;:49;;;;;;;;;;;;;;;;;;38211:19;38243:1;38233:7;:11;38211:33;;38259:31;38293:11;:24;38305:11;38293:24;;;;;;;;;;;38259:58;;38361:1;38336:27;;:8;:13;;;;;;;;;;;;:27;;;38332:384;;;38546:13;;38531:11;:28;38527:174;;38600:4;38584:8;:13;;;:20;;;;;;;;;;;;;;;;;;38653:13;:28;;;38627:8;:23;;;:54;;;;;;;;;;;;;;;;;;38527:174;38332:384;37691:1036;;;38763:7;38759:2;38744:27;;38753:4;38744:27;;;;;;;;;;;;38782:42;38803:4;38809:2;38813:7;38822:1;38782:20;:42::i;:::-;36806:2026;;36702:2130;;;:::o;28737:1109::-;28799:21;;:::i;:::-;28833:12;28848:7;28833:22;;28916:4;28897:15;:13;:15::i;:::-;:23;;:47;;;;;28931:13;;28924:4;:20;28897:47;28893:886;;;28965:31;28999:11;:17;29011:4;28999:17;;;;;;;;;;;28965:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29040:9;:16;;;29035:729;;29111:1;29085:28;;:9;:14;;;:28;;;29081:101;;29149:9;29142:16;;;;;;29081:101;29484:261;29491:4;29484:261;;;29524:6;;;;;;;;29569:11;:17;29581:4;29569:17;;;;;;;;;;;29557:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29643:1;29617:28;;:9;:14;;;:28;;;29613:109;;29685:9;29678:16;;;;;;29613:109;29484:261;;;29035:729;28946:833;28893:886;29807:31;;;;;;;;;;;;;;28737:1109;;;;:::o;5324:191::-;5398:16;5417:6;;;;;;;;;;;5398:25;;5443:8;5434:6;;:17;;;;;;;;;;;;;;;;;;5498:8;5467:40;;5488:8;5467:40;;;;;;;;;;;;5387:128;5324:191;:::o;33784:104::-;33853:27;33863:2;33867:8;33853:27;;;;;;;;;;;;:9;:27::i;:::-;33784:104;;:::o;6755:326::-;6815:4;7072:1;7050:7;:19;;;:23;7043:30;;6755:326;;;:::o;42447:667::-;42610:4;42647:2;42631:36;;;42668:12;:10;:12::i;:::-;42682:4;42688:7;42697:5;42631:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42627:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42882:1;42865:6;:13;:18;42861:235;;;42911:40;;;;;;;;;;;;;;42861:235;43054:6;43048:13;43039:6;43035:2;43031:15;43024:38;42627:480;42760:45;;;42750:55;;;:6;:55;;;;42743:62;;;42447:667;;;;;;:::o;46857:108::-;46917:13;46950:7;46943:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46857:108;:::o;340:723::-;396:13;626:1;617:5;:10;613:53;;;644:10;;;;;;;;;;;;;;;;;;;;;613:53;676:12;691:5;676:20;;707:14;732:78;747:1;739:4;:9;732:78;;765:8;;;;;:::i;:::-;;;;796:2;788:10;;;;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;820:39;;870:154;886:1;877:5;:10;870:154;;914:1;904:11;;;;;:::i;:::-;;;981:2;973:5;:10;;;;:::i;:::-;960:2;:24;;;;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1010:2;1001:11;;;;;:::i;:::-;;;870:154;;;1048:6;1034:21;;;;;340:723;;;;:::o;16838:157::-;16923:4;16962:25;16947:40;;;:11;:40;;;;16940:47;;16838:157;;;:::o;43762:159::-;;;;;:::o;44580:158::-;;;;;:::o;34251:163::-;34374:32;34380:2;34384:8;34394:5;34401:4;34374:5;:32::i;:::-;34251:163;;;:::o;34673:1775::-;34812:20;34835:13;;34812:36;;34877:1;34863:16;;:2;:16;;;34859:48;;;34888:19;;;;;;;;;;;;;;34859:48;34934:1;34922:8;:13;34918:44;;;34944:18;;;;;;;;;;;;;;34918:44;34975:61;35005:1;35009:2;35013:12;35027:8;34975:21;:61::i;:::-;35348:8;35313:12;:16;35326:2;35313:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35412:8;35372:12;:16;35385:2;35372:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35471:2;35438:11;:25;35450:12;35438:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35538:15;35488:11;:25;35500:12;35488:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35571:20;35594:12;35571:35;;35621:11;35650:8;35635:12;:23;35621:37;;35679:4;:23;;;;;35687:15;:2;:13;;;:15::i;:::-;35679:23;35675:641;;;35723:314;35779:12;35775:2;35754:38;;35771:1;35754:38;;;;;;;;;;;;35820:69;35859:1;35863:2;35867:14;;;;;;35883:5;35820:30;:69::i;:::-;35815:174;;35925:40;;;;;;;;;;;;;;35815:174;36032:3;36016:12;:19;;35723:314;;36118:12;36101:13;;:29;36097:43;;36132:8;;;36097:43;35675:641;;;36181:120;36237:14;;;;;;36233:2;36212:40;;36229:1;36212:40;;;;;;;;;;;;36296:3;36280:12;:19;;36181:120;;35675:641;36346:12;36330:13;:28;;;;35288:1082;;36380:60;36409:1;36413:2;36417:12;36431:8;36380:20;:60::i;:::-;34801:1647;34673:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:323::-;9662:6;9711:2;9699:9;9690:7;9686:23;9682:32;9679:119;;;9717:79;;:::i;:::-;9679:119;9837:1;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9808:114;9606:323;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:171::-;14087:23;14083:1;14075:6;14071:14;14064:47;13947:171;:::o;14124:366::-;14266:3;14287:67;14351:2;14346:3;14287:67;:::i;:::-;14280:74;;14363:93;14452:3;14363:93;:::i;:::-;14481:2;14476:3;14472:12;14465:19;;14124:366;;;:::o;14496:419::-;14662:4;14700:2;14689:9;14685:18;14677:26;;14749:9;14743:4;14739:20;14735:1;14724:9;14720:17;14713:47;14777:131;14903:4;14777:131;:::i;:::-;14769:139;;14496:419;;;:::o;14921:165::-;15061:17;15057:1;15049:6;15045:14;15038:41;14921:165;:::o;15092:366::-;15234:3;15255:67;15319:2;15314:3;15255:67;:::i;:::-;15248:74;;15331:93;15420:3;15331:93;:::i;:::-;15449:2;15444:3;15440:12;15433:19;;15092:366;;;:::o;15464:419::-;15630:4;15668:2;15657:9;15653:18;15645:26;;15717:9;15711:4;15707:20;15703:1;15692:9;15688:17;15681:47;15745:131;15871:4;15745:131;:::i;:::-;15737:139;;15464:419;;;:::o;15889:173::-;16029:25;16025:1;16017:6;16013:14;16006:49;15889:173;:::o;16068:366::-;16210:3;16231:67;16295:2;16290:3;16231:67;:::i;:::-;16224:74;;16307:93;16396:3;16307:93;:::i;:::-;16425:2;16420:3;16416:12;16409:19;;16068:366;;;:::o;16440:419::-;16606:4;16644:2;16633:9;16629:18;16621:26;;16693:9;16687:4;16683:20;16679:1;16668:9;16664:17;16657:47;16721:131;16847:4;16721:131;:::i;:::-;16713:139;;16440:419;;;:::o;16865:171::-;17005:23;17001:1;16993:6;16989:14;16982:47;16865:171;:::o;17042:366::-;17184:3;17205:67;17269:2;17264:3;17205:67;:::i;:::-;17198:74;;17281:93;17370:3;17281:93;:::i;:::-;17399:2;17394:3;17390:12;17383:19;;17042:366;;;:::o;17414:419::-;17580:4;17618:2;17607:9;17603:18;17595:26;;17667:9;17661:4;17657:20;17653:1;17642:9;17638:17;17631:47;17695:131;17821:4;17695:131;:::i;:::-;17687:139;;17414:419;;;:::o;17839:180::-;17887:77;17884:1;17877:88;17984:4;17981:1;17974:15;18008:4;18005:1;17998:15;18025:305;18065:3;18084:20;18102:1;18084:20;:::i;:::-;18079:25;;18118:20;18136:1;18118:20;:::i;:::-;18113:25;;18272:1;18204:66;18200:74;18197:1;18194:81;18191:107;;;18278:18;;:::i;:::-;18191:107;18322:1;18319;18315:9;18308:16;;18025:305;;;;:::o;18336:172::-;18476:24;18472:1;18464:6;18460:14;18453:48;18336:172;:::o;18514:366::-;18656:3;18677:67;18741:2;18736:3;18677:67;:::i;:::-;18670:74;;18753:93;18842:3;18753:93;:::i;:::-;18871:2;18866:3;18862:12;18855:19;;18514:366;;;:::o;18886:419::-;19052:4;19090:2;19079:9;19075:18;19067:26;;19139:9;19133:4;19129:20;19125:1;19114:9;19110:17;19103:47;19167:131;19293:4;19167:131;:::i;:::-;19159:139;;18886:419;;;:::o;19311:171::-;19451:23;19447:1;19439:6;19435:14;19428:47;19311:171;:::o;19488:366::-;19630:3;19651:67;19715:2;19710:3;19651:67;:::i;:::-;19644:74;;19727:93;19816:3;19727:93;:::i;:::-;19845:2;19840:3;19836:12;19829:19;;19488:366;;;:::o;19860:419::-;20026:4;20064:2;20053:9;20049:18;20041:26;;20113:9;20107:4;20103:20;20099:1;20088:9;20084:17;20077:47;20141:131;20267:4;20141:131;:::i;:::-;20133:139;;19860:419;;;:::o;20285:172::-;20425:24;20421:1;20413:6;20409:14;20402:48;20285:172;:::o;20463:366::-;20605:3;20626:67;20690:2;20685:3;20626:67;:::i;:::-;20619:74;;20702:93;20791:3;20702:93;:::i;:::-;20820:2;20815:3;20811:12;20804:19;;20463:366;;;:::o;20835:419::-;21001:4;21039:2;21028:9;21024:18;21016:26;;21088:9;21082:4;21078:20;21074:1;21063:9;21059:17;21052:47;21116:131;21242:4;21116:131;:::i;:::-;21108:139;;20835:419;;;:::o;21260:148::-;21362:11;21399:3;21384:18;;21260:148;;;;:::o;21414:377::-;21520:3;21548:39;21581:5;21548:39;:::i;:::-;21603:89;21685:6;21680:3;21603:89;:::i;:::-;21596:96;;21701:52;21746:6;21741:3;21734:4;21727:5;21723:16;21701:52;:::i;:::-;21778:6;21773:3;21769:16;21762:23;;21524:267;21414:377;;;;:::o;21797:435::-;21977:3;21999:95;22090:3;22081:6;21999:95;:::i;:::-;21992:102;;22111:95;22202:3;22193:6;22111:95;:::i;:::-;22104:102;;22223:3;22216:10;;21797:435;;;;;:::o;22238:225::-;22378:34;22374:1;22366:6;22362:14;22355:58;22447:8;22442:2;22434:6;22430:15;22423:33;22238:225;:::o;22469:366::-;22611:3;22632:67;22696:2;22691:3;22632:67;:::i;:::-;22625:74;;22708:93;22797:3;22708:93;:::i;:::-;22826:2;22821:3;22817:12;22810:19;;22469:366;;;:::o;22841:419::-;23007:4;23045:2;23034:9;23030:18;23022:26;;23094:9;23088:4;23084:20;23080:1;23069:9;23065:17;23058:47;23122:131;23248:4;23122:131;:::i;:::-;23114:139;;22841:419;;;:::o;23266:98::-;23317:6;23351:5;23345:12;23335:22;;23266:98;;;:::o;23370:168::-;23453:11;23487:6;23482:3;23475:19;23527:4;23522:3;23518:14;23503:29;;23370:168;;;;:::o;23544:360::-;23630:3;23658:38;23690:5;23658:38;:::i;:::-;23712:70;23775:6;23770:3;23712:70;:::i;:::-;23705:77;;23791:52;23836:6;23831:3;23824:4;23817:5;23813:16;23791:52;:::i;:::-;23868:29;23890:6;23868:29;:::i;:::-;23863:3;23859:39;23852:46;;23634:270;23544:360;;;;:::o;23910:640::-;24105:4;24143:3;24132:9;24128:19;24120:27;;24157:71;24225:1;24214:9;24210:17;24201:6;24157:71;:::i;:::-;24238:72;24306:2;24295:9;24291:18;24282:6;24238:72;:::i;:::-;24320;24388:2;24377:9;24373:18;24364:6;24320:72;:::i;:::-;24439:9;24433:4;24429:20;24424:2;24413:9;24409:18;24402:48;24467:76;24538:4;24529:6;24467:76;:::i;:::-;24459:84;;23910:640;;;;;;;:::o;24556:141::-;24612:5;24643:6;24637:13;24628:22;;24659:32;24685:5;24659:32;:::i;:::-;24556:141;;;;:::o;24703:349::-;24772:6;24821:2;24809:9;24800:7;24796:23;24792:32;24789:119;;;24827:79;;:::i;:::-;24789:119;24947:1;24972:63;25027:7;25018:6;25007:9;25003:22;24972:63;:::i;:::-;24962:73;;24918:127;24703:349;;;;:::o;25058:233::-;25097:3;25120:24;25138:5;25120:24;:::i;:::-;25111:33;;25166:66;25159:5;25156:77;25153:103;;;25236:18;;:::i;:::-;25153:103;25283:1;25276:5;25272:13;25265:20;;25058:233;;;:::o;25297:180::-;25345:77;25342:1;25335:88;25442:4;25439:1;25432:15;25466:4;25463:1;25456:15;25483:185;25523:1;25540:20;25558:1;25540:20;:::i;:::-;25535:25;;25574:20;25592:1;25574:20;:::i;:::-;25569:25;;25613:1;25603:35;;25618:18;;:::i;:::-;25603:35;25660:1;25657;25653:9;25648:14;;25483:185;;;;:::o;25674:191::-;25714:4;25734:20;25752:1;25734:20;:::i;:::-;25729:25;;25768:20;25786:1;25768:20;:::i;:::-;25763:25;;25807:1;25804;25801:8;25798:34;;;25812:18;;:::i;:::-;25798:34;25857:1;25854;25850:9;25842:17;;25674:191;;;;:::o;25871:176::-;25903:1;25920:20;25938:1;25920:20;:::i;:::-;25915:25;;25954:20;25972:1;25954:20;:::i;:::-;25949:25;;25993:1;25983:35;;25998:18;;:::i;:::-;25983:35;26039:1;26036;26032:9;26027:14;;25871:176;;;;:::o;26053:180::-;26101:77;26098:1;26091:88;26198:4;26195:1;26188:15;26222:4;26219:1;26212:15

Swarm Source

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