ETH Price: $2,994.47 (-2.00%)
Gas: 2 Gwei

Token

Rugimals PFP (RPFP)
 

Overview

Max Total Supply

1,351 RPFP

Holders

251

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 RPFP
0x27031f529dde7adf72ca721768382570f7385d3f
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:
rugimalsPFP

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-19
*/

/**

          _          _                _        _            _
        /\ \       /\ \             /\ \     /\ \         /\ \
       /  \ \     /  \ \            \ \ \   /  \ \        \_\ \
      / /\ \ \   / /\ \ \           /\ \_\ / /\ \ \       /\__ \
     / / /\ \_\ / / /\ \_\         / /\/_// / /\ \ \     / /_ \ \
    / / /_/ / // / /_/ / /_       / / /  / / /  \ \_\   / / /\ \ \
   / / /__\/ // / /__\/ //\ \    / / /  / / /    \/_/  / / /  \/_/
  / / /_____// / /_____/ \ \_\  / / /  / / /          / / /
 / / /      / / /\ \ \   / / /_/ / /  / / /________  / / /
/ / /      / / /  \ \ \ / / /__\/ /  / / /_________\/_/ /
\/_/       \/_/    \_\/ \/_______/   \/____________/\_\/

Created by: https://prjct.tools

prjct.tools helps you build and launch a generative nft project: we provide
the core libraries, APIs, workflows and front-end tools while you focus on
art and ideas. Merging infinite creativity with structured machine learning
and computational algorithms.

Let's build art together.
 */

// SPDX-License-Identifier: MIT


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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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


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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


pragma solidity ^0.8.4;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex = 1;

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

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

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

        // Execution should never reach this point.
        assert(false);
        return 0;
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

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

    /**
     * @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(), ".json")) : '';
    }

    /**
     * @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 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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 tokenId < _currentIndex;
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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


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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

contract rugimalsPFP is Ownable, ERC721A {

    // OG List :: previous supporters, get NFTs for free (gas only)
    // Whitelist :: marketed supporters, get sales price and advanced purchase
    // Public sale :: regular price, till they all sell

    uint public max_supply = 1350;

    uint public public_max = 3;

    uint public public_price = 0.0 ether;

    bool public public_sale_status = true;

    uint public total_supply = 0;

    string public baseURI = "ipfs://QmcJ3UPkuhknkL8rswdtw25osqGeP12vHUUSEJFBRTWYwQ/";

    constructor() ERC721A("Rugimals PFP", "RPFP"){}

    function buy(uint _count) public payable {
      require(public_sale_status == true, "Sale is paused.");
      require(_count > 0, "Mint at least one token.");
      require(_count <= public_max, "You have selected too many to mint (max 20).");
      require(total_supply + _count <= max_supply, "Not enough tokens available.");
      require(msg.value >= public_price * _count, "Incorrect ETH amount.");

      _safeMint(msg.sender, _count);
      total_supply += _count;
    }

    function is_public_active() public view returns(uint){
      require(public_sale_status == true, "Public sale not active.");
      return 1;
    }

    // onlyOwner

    function buy_rey(uint _count) public onlyOwner {
      require(_count > 0, "Mint at least one token.");
      require(total_supply + _count<= max_supply, "Not enough tokens available.");

      _safeMint(msg.sender, _count);
      total_supply += _count;
    }

    function public_status(bool enable) external onlyOwner {
      public_sale_status = enable;
    }

    function update_public_price(uint price) external onlyOwner {
      public_price = price;
    }
    function update_public_max(uint total) external onlyOwner {
      public_max = total;
    }
    function update_max_supply(uint total) external onlyOwner {
      max_supply = total;
    }

    function _baseURI() internal view virtual override returns (string memory) {
      return baseURI;
    }
    function setBaseUri(string memory _uri) external onlyOwner {
      baseURI = _uri;
    }

    function getMintedAmount() public view returns (uint256) {
      return total_supply;
    }

    function withdraw() external onlyOwner {
      uint _balance = address(this).balance;
      payable(0xe3a426413Caafd88d94e6D593ce8ba8eC119C389).transfer(_balance); // project wallet
    }

}

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_rey","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":"getMintedAmount","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":"is_public_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"public_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"public_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"name":"update_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"name":"update_public_max","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"update_public_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001805561054660085560036009556000600a556001600b60006101000a81548160ff0219169083151502179055506000600c5560405180606001604052806036815260200162003e6360369139600d9080519060200190620000699291906200020a565b503480156200007757600080fd5b506040518060400160405280600c81526020017f527567696d616c732050465000000000000000000000000000000000000000008152506040518060400160405280600481526020017f525046500000000000000000000000000000000000000000000000000000000081525062000104620000f86200013e60201b60201c565b6200014660201b60201c565b81600290805190602001906200011c9291906200020a565b508060039080519060200190620001359291906200020a565b5050506200031f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021890620002ba565b90600052602060002090601f0160209004810192826200023c576000855562000288565b82601f106200025757805160ff191683800117855562000288565b8280016001018555821562000288579182015b82811115620002875782518255916020019190600101906200026a565b5b5090506200029791906200029b565b5090565b5b80821115620002b65760008160009055506001016200029c565b5090565b60006002820490506001821680620002d357607f821691505b60208210811415620002ea57620002e9620002f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b34806200032f6000396000f3fe6080604052600436106102045760003560e01c806388ab416811610118578063b88d4fde116100a0578063d96a094a1161006f578063d96a094a14610755578063e2a70eaf14610771578063e2b8c6be1461079a578063e985e9c5146107c5578063f2fde38b1461080257610204565b8063b88d4fde1461069d578063c31f563d146106c6578063c87b56dd146106ef578063ccd5c2cf1461072c57610204565b806395d89b41116100e757806395d89b41146105ca57806395ea5e67146105f5578063a0bcfc7f14610620578063a22cb46514610649578063a69f67501461067257610204565b806388ab4168146105205780638a333b501461054b5780638da5cb5b146105765780638ea2e684146105a157610204565b80633940e9ee1161019b5780636352211e1161016a5780636352211e146104395780636c0360eb1461047657806370a08231146104a1578063715018a6146104de5780637f3705ba146104f557610204565b80633940e9ee146103915780633ccfd60b146103bc57806342842e0e146103d35780634f6ccce7146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a714610209578063031e5dea1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f6b565b61082b565b60405161023d91906132dc565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061300e565b610975565b005b34801561027b57600080fd5b506102846109fb565b60405161029191906132f7565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061300e565b610a8d565b6040516102ce9190613275565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612efe565b610b09565b005b34801561030c57600080fd5b50610315610c14565b6040516103229190613419565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612de8565b610c1e565b005b34801561036057600080fd5b5061037b60048036038101906103769190612efe565b610c2e565b6040516103889190613419565b60405180910390f35b34801561039d57600080fd5b506103a6610df3565b6040516103b39190613419565b60405180910390f35b3480156103c857600080fd5b506103d1610df9565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612de8565b610ed8565b005b34801561040857600080fd5b50610423600480360381019061041e919061300e565b610ef8565b6040516104309190613419565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061300e565b610f42565b60405161046d9190613275565b60405180910390f35b34801561048257600080fd5b5061048b610f58565b60405161049891906132f7565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190612d7b565b610fe6565b6040516104d59190613419565b60405180910390f35b3480156104ea57600080fd5b506104f36110c6565b005b34801561050157600080fd5b5061050a61114e565b6040516105179190613419565b60405180910390f35b34801561052c57600080fd5b506105356111ad565b6040516105429190613419565b60405180910390f35b34801561055757600080fd5b506105606111b7565b60405161056d9190613419565b60405180910390f35b34801561058257600080fd5b5061058b6111bd565b6040516105989190613275565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c3919061300e565b6111e6565b005b3480156105d657600080fd5b506105df61131d565b6040516105ec91906132f7565b60405180910390f35b34801561060157600080fd5b5061060a6113af565b60405161061791906132dc565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612fc5565b6113c2565b005b34801561065557600080fd5b50610670600480360381019061066b9190612ebe565b611458565b005b34801561067e57600080fd5b506106876115d0565b6040516106949190613419565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612e3b565b6115d6565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061300e565b611629565b005b3480156106fb57600080fd5b506107166004803603810190610711919061300e565b6116af565b60405161072391906132f7565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612f3e565b61174e565b005b61076f600480360381019061076a919061300e565b6117e7565b005b34801561077d57600080fd5b506107986004803603810190610793919061300e565b61198d565b005b3480156107a657600080fd5b506107af611a13565b6040516107bc9190613419565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612da8565b611a19565b6040516107f991906132dc565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612d7b565b611aad565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611ba5565b5b9050919050565b61097d611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661099b6111bd565b73ffffffffffffffffffffffffffffffffffffffff16146109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890613379565b60405180910390fd5b8060088190555050565b606060028054610a0a906136c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a36906136c9565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000610a9882611c17565b610ace576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1482610f42565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9b611c0f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bcd5750610bcb81610bc6611c0f565b611a19565b155b15610c04576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c0f838383611c25565b505050565b6000600154905090565b610c29838383611cd7565b505050565b6000610c3983610fe6565b8210610c71576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610c7b610c14565b905060008060005b83811015610dd5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc75786841415610dbe578195505050505050610ded565b83806001019450505b508080600101915050610c83565b506000610de557610de46137a6565b5b600093505050505b92915050565b600c5481565b610e01611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610e1f6111bd565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613379565b60405180910390fd5b600047905073e3a426413caafd88d94e6d593ce8ba8ec119c38973ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed4573d6000803e3d6000fd5b5050565b610ef3838383604051806020016040528060008152506115d6565b505050565b6000610f02610c14565b8210610f3a576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610f4d826121fc565b600001519050919050565b600d8054610f65906136c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f91906136c9565b8015610fde5780601f10610fb357610100808354040283529160200191610fde565b820191906000526020600020905b815481529060010190602001808311610fc157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110ce611c0f565b73ffffffffffffffffffffffffffffffffffffffff166110ec6111bd565b73ffffffffffffffffffffffffffffffffffffffff1614611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990613379565b60405180910390fd5b61114c6000612349565b565b600060011515600b60009054906101000a900460ff161515146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d906133b9565b60405180910390fd5b6001905090565b6000600c54905090565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111ee611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661120c6111bd565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613379565b60405180910390fd5b600081116112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90613399565b60405180910390fd5b60085481600c546112b691906134fe565b11156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906133d9565b60405180910390fd5b611301338261240d565b80600c600082825461131391906134fe565b9250508190555050565b60606003805461132c906136c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611358906136c9565b80156113a55780601f1061137a576101008083540402835291602001916113a5565b820191906000526020600020905b81548152906001019060200180831161138857829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b6113ca611c0f565b73ffffffffffffffffffffffffffffffffffffffff166113e86111bd565b73ffffffffffffffffffffffffffffffffffffffff161461143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590613379565b60405180910390fd5b80600d9080519060200190611454929190612b55565b5050565b611460611c0f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114d2611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157f611c0f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c491906132dc565b60405180910390a35050565b600a5481565b6115e1848484611cd7565b6115ed8484848461242b565b611623576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611631611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661164f6111bd565b73ffffffffffffffffffffffffffffffffffffffff16146116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90613379565b60405180910390fd5b8060098190555050565b60606116ba82611c17565b6116f0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116fa6125b9565b905060008151141561171b5760405180602001604052806000815250611746565b806117258461264b565b604051602001611736929190613246565b6040516020818303038152906040525b915050919050565b611756611c0f565b73ffffffffffffffffffffffffffffffffffffffff166117746111bd565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613379565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60011515600b60009054906101000a900460ff1615151461183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490613339565b60405180910390fd5b60008111611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613399565b60405180910390fd5b6009548111156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613359565b60405180910390fd5b60085481600c546118d691906134fe565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906133d9565b60405180910390fd5b80600a546119259190613585565b341015611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906133f9565b60405180910390fd5b611971338261240d565b80600c600082825461198391906134fe565b9250508190555050565b611995611c0f565b73ffffffffffffffffffffffffffffffffffffffff166119b36111bd565b73ffffffffffffffffffffffffffffffffffffffff1614611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613379565b60405180910390fd5b80600a8190555050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab5611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611ad36111bd565b73ffffffffffffffffffffffffffffffffffffffff1614611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613379565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090613319565b60405180910390fd5b611ba281612349565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ce2826121fc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d09611c0f565b73ffffffffffffffffffffffffffffffffffffffff161480611d655750611d2e611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611d4d84610a8d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d815750611d808260000151611d7b611c0f565b611a19565b5b905080611dba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e23576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e8a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e9785858560016127ac565b611ea76000848460000151611c25565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218c576120eb81611c17565b1561218b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f585858560016127b2565b5050505050565b612204612bdb565b61220d82611c17565b612243576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612335578092505050612344565b50808060019003915050612249565b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124278282604051806020016040528060008152506127b8565b5050565b600061244c8473ffffffffffffffffffffffffffffffffffffffff166127ca565b156125ac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612475611c0f565b8786866040518563ffffffff1660e01b81526004016124979493929190613290565b602060405180830381600087803b1580156124b157600080fd5b505af19250505080156124e257506040513d601f19601f820116820180604052508101906124df9190612f98565b60015b61255c573d8060008114612512576040519150601f19603f3d011682016040523d82523d6000602084013e612517565b606091505b50600081511415612554576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125b1565b600190505b949350505050565b6060600d80546125c8906136c9565b80601f01602080910402602001604051908101604052809291908181526020018280546125f4906136c9565b80156126415780601f1061261657610100808354040283529160200191612641565b820191906000526020600020905b81548152906001019060200180831161262457829003601f168201915b5050505050905090565b60606000821415612693576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127a7565b600082905060005b600082146126c55780806126ae9061372c565b915050600a826126be9190613554565b915061269b565b60008167ffffffffffffffff8111156126e1576126e0613891565b5b6040519080825280601f01601f1916602001820160405280156127135781602001600182028036833780820191505090505b5090505b600085146127a05760018261272c91906135df565b9150600a8561273b9190613775565b603061274791906134fe565b60f81b81838151811061275d5761275c613862565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127999190613554565b9450612717565b8093505050505b919050565b50505050565b50505050565b6127c583838360016127ed565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561285b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612896576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128a360008683876127ac565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b3857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612aec5750612aea600088848861242b565b155b15612b23576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612a71565b508060018190555050612b4e60008683876127b2565b5050505050565b828054612b61906136c9565b90600052602060002090601f016020900481019282612b835760008555612bca565b82601f10612b9c57805160ff1916838001178555612bca565b82800160010185558215612bca579182015b82811115612bc9578251825591602001919060010190612bae565b5b509050612bd79190612c15565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612c2e576000816000905550600101612c16565b5090565b6000612c45612c4084613459565b613434565b905082815260208101848484011115612c6157612c606138c5565b5b612c6c848285613687565b509392505050565b6000612c87612c828461348a565b613434565b905082815260208101848484011115612ca357612ca26138c5565b5b612cae848285613687565b509392505050565b600081359050612cc581613aa2565b92915050565b600081359050612cda81613ab9565b92915050565b600081359050612cef81613ad0565b92915050565b600081519050612d0481613ad0565b92915050565b600082601f830112612d1f57612d1e6138c0565b5b8135612d2f848260208601612c32565b91505092915050565b600082601f830112612d4d57612d4c6138c0565b5b8135612d5d848260208601612c74565b91505092915050565b600081359050612d7581613ae7565b92915050565b600060208284031215612d9157612d906138cf565b5b6000612d9f84828501612cb6565b91505092915050565b60008060408385031215612dbf57612dbe6138cf565b5b6000612dcd85828601612cb6565b9250506020612dde85828601612cb6565b9150509250929050565b600080600060608486031215612e0157612e006138cf565b5b6000612e0f86828701612cb6565b9350506020612e2086828701612cb6565b9250506040612e3186828701612d66565b9150509250925092565b60008060008060808587031215612e5557612e546138cf565b5b6000612e6387828801612cb6565b9450506020612e7487828801612cb6565b9350506040612e8587828801612d66565b925050606085013567ffffffffffffffff811115612ea657612ea56138ca565b5b612eb287828801612d0a565b91505092959194509250565b60008060408385031215612ed557612ed46138cf565b5b6000612ee385828601612cb6565b9250506020612ef485828601612ccb565b9150509250929050565b60008060408385031215612f1557612f146138cf565b5b6000612f2385828601612cb6565b9250506020612f3485828601612d66565b9150509250929050565b600060208284031215612f5457612f536138cf565b5b6000612f6284828501612ccb565b91505092915050565b600060208284031215612f8157612f806138cf565b5b6000612f8f84828501612ce0565b91505092915050565b600060208284031215612fae57612fad6138cf565b5b6000612fbc84828501612cf5565b91505092915050565b600060208284031215612fdb57612fda6138cf565b5b600082013567ffffffffffffffff811115612ff957612ff86138ca565b5b61300584828501612d38565b91505092915050565b600060208284031215613024576130236138cf565b5b600061303284828501612d66565b91505092915050565b61304481613613565b82525050565b61305381613625565b82525050565b6000613064826134bb565b61306e81856134d1565b935061307e818560208601613696565b613087816138d4565b840191505092915050565b600061309d826134c6565b6130a781856134e2565b93506130b7818560208601613696565b6130c0816138d4565b840191505092915050565b60006130d6826134c6565b6130e081856134f3565b93506130f0818560208601613696565b80840191505092915050565b60006131096026836134e2565b9150613114826138e5565b604082019050919050565b600061312c600f836134e2565b915061313782613934565b602082019050919050565b600061314f602c836134e2565b915061315a8261395d565b604082019050919050565b60006131726005836134f3565b915061317d826139ac565b600582019050919050565b60006131956020836134e2565b91506131a0826139d5565b602082019050919050565b60006131b86018836134e2565b91506131c3826139fe565b602082019050919050565b60006131db6017836134e2565b91506131e682613a27565b602082019050919050565b60006131fe601c836134e2565b915061320982613a50565b602082019050919050565b60006132216015836134e2565b915061322c82613a79565b602082019050919050565b6132408161367d565b82525050565b600061325282856130cb565b915061325e82846130cb565b915061326982613165565b91508190509392505050565b600060208201905061328a600083018461303b565b92915050565b60006080820190506132a5600083018761303b565b6132b2602083018661303b565b6132bf6040830185613237565b81810360608301526132d18184613059565b905095945050505050565b60006020820190506132f1600083018461304a565b92915050565b600060208201905081810360008301526133118184613092565b905092915050565b60006020820190508181036000830152613332816130fc565b9050919050565b600060208201905081810360008301526133528161311f565b9050919050565b6000602082019050818103600083015261337281613142565b9050919050565b6000602082019050818103600083015261339281613188565b9050919050565b600060208201905081810360008301526133b2816131ab565b9050919050565b600060208201905081810360008301526133d2816131ce565b9050919050565b600060208201905081810360008301526133f2816131f1565b9050919050565b6000602082019050818103600083015261341281613214565b9050919050565b600060208201905061342e6000830184613237565b92915050565b600061343e61344f565b905061344a82826136fb565b919050565b6000604051905090565b600067ffffffffffffffff82111561347457613473613891565b5b61347d826138d4565b9050602081019050919050565b600067ffffffffffffffff8211156134a5576134a4613891565b5b6134ae826138d4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135098261367d565b91506135148361367d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613549576135486137d5565b5b828201905092915050565b600061355f8261367d565b915061356a8361367d565b92508261357a57613579613804565b5b828204905092915050565b60006135908261367d565b915061359b8361367d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d4576135d36137d5565b5b828202905092915050565b60006135ea8261367d565b91506135f58361367d565b925082821015613608576136076137d5565b5b828203905092915050565b600061361e8261365d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136b4578082015181840152602081019050613699565b838111156136c3576000848401525b50505050565b600060028204905060018216806136e157607f821691505b602082108114156136f5576136f4613833565b5b50919050565b613704826138d4565b810181811067ffffffffffffffff8211171561372357613722613891565b5b80604052505050565b60006137378261367d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561376a576137696137d5565b5b600182019050919050565b60006137808261367d565b915061378b8361367d565b92508261379b5761379a613804565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973207061757365642e0000000000000000000000000000000000600082015250565b7f596f7520686176652073656c656374656420746f6f206d616e7920746f206d6960008201527f6e7420286d6178203230292e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74206174206c65617374206f6e6520746f6b656e2e0000000000000000600082015250565b7f5075626c69632073616c65206e6f74206163746976652e000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e7320617661696c61626c652e00000000600082015250565b7f496e636f72726563742045544820616d6f756e742e0000000000000000000000600082015250565b613aab81613613565b8114613ab657600080fd5b50565b613ac281613625565b8114613acd57600080fd5b50565b613ad981613631565b8114613ae457600080fd5b50565b613af08161367d565b8114613afb57600080fd5b5056fea2646970667358221220071b091d72a6b7bd1a868aa36a318e8f51caba92bc305146148c8f11292adf8464736f6c63430008070033697066733a2f2f516d634a3355506b75686b6e6b4c3872737764747732356f737147655031327648555553454a46425254575977512f

Deployed Bytecode

0x6080604052600436106102045760003560e01c806388ab416811610118578063b88d4fde116100a0578063d96a094a1161006f578063d96a094a14610755578063e2a70eaf14610771578063e2b8c6be1461079a578063e985e9c5146107c5578063f2fde38b1461080257610204565b8063b88d4fde1461069d578063c31f563d146106c6578063c87b56dd146106ef578063ccd5c2cf1461072c57610204565b806395d89b41116100e757806395d89b41146105ca57806395ea5e67146105f5578063a0bcfc7f14610620578063a22cb46514610649578063a69f67501461067257610204565b806388ab4168146105205780638a333b501461054b5780638da5cb5b146105765780638ea2e684146105a157610204565b80633940e9ee1161019b5780636352211e1161016a5780636352211e146104395780636c0360eb1461047657806370a08231146104a1578063715018a6146104de5780637f3705ba146104f557610204565b80633940e9ee146103915780633ccfd60b146103bc57806342842e0e146103d35780634f6ccce7146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a714610209578063031e5dea1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f6b565b61082b565b60405161023d91906132dc565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061300e565b610975565b005b34801561027b57600080fd5b506102846109fb565b60405161029191906132f7565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061300e565b610a8d565b6040516102ce9190613275565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612efe565b610b09565b005b34801561030c57600080fd5b50610315610c14565b6040516103229190613419565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612de8565b610c1e565b005b34801561036057600080fd5b5061037b60048036038101906103769190612efe565b610c2e565b6040516103889190613419565b60405180910390f35b34801561039d57600080fd5b506103a6610df3565b6040516103b39190613419565b60405180910390f35b3480156103c857600080fd5b506103d1610df9565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612de8565b610ed8565b005b34801561040857600080fd5b50610423600480360381019061041e919061300e565b610ef8565b6040516104309190613419565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061300e565b610f42565b60405161046d9190613275565b60405180910390f35b34801561048257600080fd5b5061048b610f58565b60405161049891906132f7565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190612d7b565b610fe6565b6040516104d59190613419565b60405180910390f35b3480156104ea57600080fd5b506104f36110c6565b005b34801561050157600080fd5b5061050a61114e565b6040516105179190613419565b60405180910390f35b34801561052c57600080fd5b506105356111ad565b6040516105429190613419565b60405180910390f35b34801561055757600080fd5b506105606111b7565b60405161056d9190613419565b60405180910390f35b34801561058257600080fd5b5061058b6111bd565b6040516105989190613275565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c3919061300e565b6111e6565b005b3480156105d657600080fd5b506105df61131d565b6040516105ec91906132f7565b60405180910390f35b34801561060157600080fd5b5061060a6113af565b60405161061791906132dc565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612fc5565b6113c2565b005b34801561065557600080fd5b50610670600480360381019061066b9190612ebe565b611458565b005b34801561067e57600080fd5b506106876115d0565b6040516106949190613419565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612e3b565b6115d6565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061300e565b611629565b005b3480156106fb57600080fd5b506107166004803603810190610711919061300e565b6116af565b60405161072391906132f7565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612f3e565b61174e565b005b61076f600480360381019061076a919061300e565b6117e7565b005b34801561077d57600080fd5b506107986004803603810190610793919061300e565b61198d565b005b3480156107a657600080fd5b506107af611a13565b6040516107bc9190613419565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612da8565b611a19565b6040516107f991906132dc565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612d7b565b611aad565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096e575061096d82611ba5565b5b9050919050565b61097d611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661099b6111bd565b73ffffffffffffffffffffffffffffffffffffffff16146109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890613379565b60405180910390fd5b8060088190555050565b606060028054610a0a906136c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a36906136c9565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000610a9882611c17565b610ace576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1482610f42565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9b611c0f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bcd5750610bcb81610bc6611c0f565b611a19565b155b15610c04576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c0f838383611c25565b505050565b6000600154905090565b610c29838383611cd7565b505050565b6000610c3983610fe6565b8210610c71576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610c7b610c14565b905060008060005b83811015610dd5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d7557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc75786841415610dbe578195505050505050610ded565b83806001019450505b508080600101915050610c83565b506000610de557610de46137a6565b5b600093505050505b92915050565b600c5481565b610e01611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610e1f6111bd565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613379565b60405180910390fd5b600047905073e3a426413caafd88d94e6d593ce8ba8ec119c38973ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed4573d6000803e3d6000fd5b5050565b610ef3838383604051806020016040528060008152506115d6565b505050565b6000610f02610c14565b8210610f3a576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610f4d826121fc565b600001519050919050565b600d8054610f65906136c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f91906136c9565b8015610fde5780601f10610fb357610100808354040283529160200191610fde565b820191906000526020600020905b815481529060010190602001808311610fc157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110ce611c0f565b73ffffffffffffffffffffffffffffffffffffffff166110ec6111bd565b73ffffffffffffffffffffffffffffffffffffffff1614611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990613379565b60405180910390fd5b61114c6000612349565b565b600060011515600b60009054906101000a900460ff161515146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d906133b9565b60405180910390fd5b6001905090565b6000600c54905090565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111ee611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661120c6111bd565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613379565b60405180910390fd5b600081116112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90613399565b60405180910390fd5b60085481600c546112b691906134fe565b11156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee906133d9565b60405180910390fd5b611301338261240d565b80600c600082825461131391906134fe565b9250508190555050565b60606003805461132c906136c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611358906136c9565b80156113a55780601f1061137a576101008083540402835291602001916113a5565b820191906000526020600020905b81548152906001019060200180831161138857829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b6113ca611c0f565b73ffffffffffffffffffffffffffffffffffffffff166113e86111bd565b73ffffffffffffffffffffffffffffffffffffffff161461143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590613379565b60405180910390fd5b80600d9080519060200190611454929190612b55565b5050565b611460611c0f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114d2611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157f611c0f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c491906132dc565b60405180910390a35050565b600a5481565b6115e1848484611cd7565b6115ed8484848461242b565b611623576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611631611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661164f6111bd565b73ffffffffffffffffffffffffffffffffffffffff16146116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90613379565b60405180910390fd5b8060098190555050565b60606116ba82611c17565b6116f0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116fa6125b9565b905060008151141561171b5760405180602001604052806000815250611746565b806117258461264b565b604051602001611736929190613246565b6040516020818303038152906040525b915050919050565b611756611c0f565b73ffffffffffffffffffffffffffffffffffffffff166117746111bd565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613379565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60011515600b60009054906101000a900460ff1615151461183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490613339565b60405180910390fd5b60008111611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613399565b60405180910390fd5b6009548111156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613359565b60405180910390fd5b60085481600c546118d691906134fe565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906133d9565b60405180910390fd5b80600a546119259190613585565b341015611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906133f9565b60405180910390fd5b611971338261240d565b80600c600082825461198391906134fe565b9250508190555050565b611995611c0f565b73ffffffffffffffffffffffffffffffffffffffff166119b36111bd565b73ffffffffffffffffffffffffffffffffffffffff1614611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090613379565b60405180910390fd5b80600a8190555050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ab5611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611ad36111bd565b73ffffffffffffffffffffffffffffffffffffffff1614611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090613379565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090613319565b60405180910390fd5b611ba281612349565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600060015482109050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ce2826121fc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d09611c0f565b73ffffffffffffffffffffffffffffffffffffffff161480611d655750611d2e611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611d4d84610a8d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d815750611d808260000151611d7b611c0f565b611a19565b5b905080611dba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e23576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e8a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e9785858560016127ac565b611ea76000848460000151611c25565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218c576120eb81611c17565b1561218b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f585858560016127b2565b5050505050565b612204612bdb565b61220d82611c17565b612243576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612335578092505050612344565b50808060019003915050612249565b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124278282604051806020016040528060008152506127b8565b5050565b600061244c8473ffffffffffffffffffffffffffffffffffffffff166127ca565b156125ac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612475611c0f565b8786866040518563ffffffff1660e01b81526004016124979493929190613290565b602060405180830381600087803b1580156124b157600080fd5b505af19250505080156124e257506040513d601f19601f820116820180604052508101906124df9190612f98565b60015b61255c573d8060008114612512576040519150601f19603f3d011682016040523d82523d6000602084013e612517565b606091505b50600081511415612554576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125b1565b600190505b949350505050565b6060600d80546125c8906136c9565b80601f01602080910402602001604051908101604052809291908181526020018280546125f4906136c9565b80156126415780601f1061261657610100808354040283529160200191612641565b820191906000526020600020905b81548152906001019060200180831161262457829003601f168201915b5050505050905090565b60606000821415612693576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127a7565b600082905060005b600082146126c55780806126ae9061372c565b915050600a826126be9190613554565b915061269b565b60008167ffffffffffffffff8111156126e1576126e0613891565b5b6040519080825280601f01601f1916602001820160405280156127135781602001600182028036833780820191505090505b5090505b600085146127a05760018261272c91906135df565b9150600a8561273b9190613775565b603061274791906134fe565b60f81b81838151811061275d5761275c613862565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127999190613554565b9450612717565b8093505050505b919050565b50505050565b50505050565b6127c583838360016127ed565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561285b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612896576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128a360008683876127ac565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b3857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612aec5750612aea600088848861242b565b155b15612b23576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612a71565b508060018190555050612b4e60008683876127b2565b5050505050565b828054612b61906136c9565b90600052602060002090601f016020900481019282612b835760008555612bca565b82601f10612b9c57805160ff1916838001178555612bca565b82800160010185558215612bca579182015b82811115612bc9578251825591602001919060010190612bae565b5b509050612bd79190612c15565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612c2e576000816000905550600101612c16565b5090565b6000612c45612c4084613459565b613434565b905082815260208101848484011115612c6157612c606138c5565b5b612c6c848285613687565b509392505050565b6000612c87612c828461348a565b613434565b905082815260208101848484011115612ca357612ca26138c5565b5b612cae848285613687565b509392505050565b600081359050612cc581613aa2565b92915050565b600081359050612cda81613ab9565b92915050565b600081359050612cef81613ad0565b92915050565b600081519050612d0481613ad0565b92915050565b600082601f830112612d1f57612d1e6138c0565b5b8135612d2f848260208601612c32565b91505092915050565b600082601f830112612d4d57612d4c6138c0565b5b8135612d5d848260208601612c74565b91505092915050565b600081359050612d7581613ae7565b92915050565b600060208284031215612d9157612d906138cf565b5b6000612d9f84828501612cb6565b91505092915050565b60008060408385031215612dbf57612dbe6138cf565b5b6000612dcd85828601612cb6565b9250506020612dde85828601612cb6565b9150509250929050565b600080600060608486031215612e0157612e006138cf565b5b6000612e0f86828701612cb6565b9350506020612e2086828701612cb6565b9250506040612e3186828701612d66565b9150509250925092565b60008060008060808587031215612e5557612e546138cf565b5b6000612e6387828801612cb6565b9450506020612e7487828801612cb6565b9350506040612e8587828801612d66565b925050606085013567ffffffffffffffff811115612ea657612ea56138ca565b5b612eb287828801612d0a565b91505092959194509250565b60008060408385031215612ed557612ed46138cf565b5b6000612ee385828601612cb6565b9250506020612ef485828601612ccb565b9150509250929050565b60008060408385031215612f1557612f146138cf565b5b6000612f2385828601612cb6565b9250506020612f3485828601612d66565b9150509250929050565b600060208284031215612f5457612f536138cf565b5b6000612f6284828501612ccb565b91505092915050565b600060208284031215612f8157612f806138cf565b5b6000612f8f84828501612ce0565b91505092915050565b600060208284031215612fae57612fad6138cf565b5b6000612fbc84828501612cf5565b91505092915050565b600060208284031215612fdb57612fda6138cf565b5b600082013567ffffffffffffffff811115612ff957612ff86138ca565b5b61300584828501612d38565b91505092915050565b600060208284031215613024576130236138cf565b5b600061303284828501612d66565b91505092915050565b61304481613613565b82525050565b61305381613625565b82525050565b6000613064826134bb565b61306e81856134d1565b935061307e818560208601613696565b613087816138d4565b840191505092915050565b600061309d826134c6565b6130a781856134e2565b93506130b7818560208601613696565b6130c0816138d4565b840191505092915050565b60006130d6826134c6565b6130e081856134f3565b93506130f0818560208601613696565b80840191505092915050565b60006131096026836134e2565b9150613114826138e5565b604082019050919050565b600061312c600f836134e2565b915061313782613934565b602082019050919050565b600061314f602c836134e2565b915061315a8261395d565b604082019050919050565b60006131726005836134f3565b915061317d826139ac565b600582019050919050565b60006131956020836134e2565b91506131a0826139d5565b602082019050919050565b60006131b86018836134e2565b91506131c3826139fe565b602082019050919050565b60006131db6017836134e2565b91506131e682613a27565b602082019050919050565b60006131fe601c836134e2565b915061320982613a50565b602082019050919050565b60006132216015836134e2565b915061322c82613a79565b602082019050919050565b6132408161367d565b82525050565b600061325282856130cb565b915061325e82846130cb565b915061326982613165565b91508190509392505050565b600060208201905061328a600083018461303b565b92915050565b60006080820190506132a5600083018761303b565b6132b2602083018661303b565b6132bf6040830185613237565b81810360608301526132d18184613059565b905095945050505050565b60006020820190506132f1600083018461304a565b92915050565b600060208201905081810360008301526133118184613092565b905092915050565b60006020820190508181036000830152613332816130fc565b9050919050565b600060208201905081810360008301526133528161311f565b9050919050565b6000602082019050818103600083015261337281613142565b9050919050565b6000602082019050818103600083015261339281613188565b9050919050565b600060208201905081810360008301526133b2816131ab565b9050919050565b600060208201905081810360008301526133d2816131ce565b9050919050565b600060208201905081810360008301526133f2816131f1565b9050919050565b6000602082019050818103600083015261341281613214565b9050919050565b600060208201905061342e6000830184613237565b92915050565b600061343e61344f565b905061344a82826136fb565b919050565b6000604051905090565b600067ffffffffffffffff82111561347457613473613891565b5b61347d826138d4565b9050602081019050919050565b600067ffffffffffffffff8211156134a5576134a4613891565b5b6134ae826138d4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135098261367d565b91506135148361367d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613549576135486137d5565b5b828201905092915050565b600061355f8261367d565b915061356a8361367d565b92508261357a57613579613804565b5b828204905092915050565b60006135908261367d565b915061359b8361367d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d4576135d36137d5565b5b828202905092915050565b60006135ea8261367d565b91506135f58361367d565b925082821015613608576136076137d5565b5b828203905092915050565b600061361e8261365d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136b4578082015181840152602081019050613699565b838111156136c3576000848401525b50505050565b600060028204905060018216806136e157607f821691505b602082108114156136f5576136f4613833565b5b50919050565b613704826138d4565b810181811067ffffffffffffffff8211171561372357613722613891565b5b80604052505050565b60006137378261367d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561376a576137696137d5565b5b600182019050919050565b60006137808261367d565b915061378b8361367d565b92508261379b5761379a613804565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973207061757365642e0000000000000000000000000000000000600082015250565b7f596f7520686176652073656c656374656420746f6f206d616e7920746f206d6960008201527f6e7420286d6178203230292e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74206174206c65617374206f6e6520746f6b656e2e0000000000000000600082015250565b7f5075626c69632073616c65206e6f74206163746976652e000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e7320617661696c61626c652e00000000600082015250565b7f496e636f72726563742045544820616d6f756e742e0000000000000000000000600082015250565b613aab81613613565b8114613ab657600080fd5b50565b613ac281613625565b8114613acd57600080fd5b50565b613ad981613631565b8114613ae457600080fd5b50565b613af08161367d565b8114613afb57600080fd5b5056fea2646970667358221220071b091d72a6b7bd1a868aa36a318e8f51caba92bc305146148c8f11292adf8464736f6c63430008070033

Deployed Bytecode Sourcemap

40154:2465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25197:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42012:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26988:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28474:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28063:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23445:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29331:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24099:1026;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40576:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42424:190;;;;;;;;;;;;;:::i;:::-;;29572:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23623:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26797:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40613:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25633:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39496:94;;;;;;;;;;;;;:::i;:::-;;41252:149;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42323:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40412:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38845:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41429:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27157:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40530:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42225:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28750:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40485:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29828:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41913:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27332:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41703:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40757:487;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41810:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40450:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29100:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39745:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25197:372;25299:4;25351:25;25336:40;;;:11;:40;;;;:105;;;;25408:33;25393:48;;;:11;:48;;;;25336:105;:172;;;;25473:35;25458:50;;;:11;:50;;;;25336:172;:225;;;;25525:36;25549:11;25525:23;:36::i;:::-;25336:225;25316:245;;25197:372;;;:::o;42012:93::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42092:5:::1;42079:10;:18;;;;42012:93:::0;:::o;26988:100::-;27042:13;27075:5;27068:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26988:100;:::o;28474:204::-;28542:7;28567:16;28575:7;28567;:16::i;:::-;28562:64;;28592:34;;;;;;;;;;;;;;28562:64;28646:15;:24;28662:7;28646:24;;;;;;;;;;;;;;;;;;;;;28639:31;;28474:204;;;:::o;28063:345::-;28136:13;28152:24;28168:7;28152:15;:24::i;:::-;28136:40;;28197:5;28191:11;;:2;:11;;;28187:48;;;28211:24;;;;;;;;;;;;;;28187:48;28268:5;28252:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28278:37;28295:5;28302:12;:10;:12::i;:::-;28278:16;:37::i;:::-;28277:38;28252:63;28248:111;;;28324:35;;;;;;;;;;;;;;28248:111;28372:28;28381:2;28385:7;28394:5;28372:8;:28::i;:::-;28125:283;28063:345;;:::o;23445:101::-;23498:7;23525:13;;23518:20;;23445:101;:::o;29331:170::-;29465:28;29475:4;29481:2;29485:7;29465:9;:28::i;:::-;29331:170;;;:::o;24099:1026::-;24188:7;24221:16;24231:5;24221:9;:16::i;:::-;24212:5;:25;24208:61;;24246:23;;;;;;;;;;;;;;24208:61;24280:22;24305:13;:11;:13::i;:::-;24280:38;;24329:19;24359:25;24548:9;24543:466;24563:14;24559:1;:18;24543:466;;;24603:31;24637:11;:14;24649:1;24637:14;;;;;;;;;;;24603:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24700:1;24674:28;;:9;:14;;;:28;;;24670:111;;24747:9;:14;;;24727:34;;24670:111;24824:5;24803:26;;:17;:26;;;24799:195;;;24873:5;24858:11;:20;24854:85;;;24914:1;24907:8;;;;;;;;;24854:85;24961:13;;;;;;;24799:195;24584:425;24579:3;;;;;;;24543:466;;;;25092:5;25085:13;;;;:::i;:::-;;25116:1;25109:8;;;;;24099:1026;;;;;:::o;40576:28::-;;;;:::o;42424:190::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42472:13:::1;42488:21;42472:37;;42526:42;42518:60;;:70;42579:8;42518:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42463:151;42424:190::o:0;29572:185::-;29710:39;29727:4;29733:2;29737:7;29710:39;;;;;;;;;;;;:16;:39::i;:::-;29572:185;;;:::o;23623:176::-;23690:7;23723:13;:11;:13::i;:::-;23714:5;:22;23710:58;;23745:23;;;;;;;;;;;;;;23710:58;23786:5;23779:12;;23623:176;;;:::o;26797:124::-;26861:7;26888:20;26900:7;26888:11;:20::i;:::-;:25;;;26881:32;;26797:124;;;:::o;40613:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25633:206::-;25697:7;25738:1;25721:19;;:5;:19;;;25717:60;;;25749:28;;;;;;;;;;;;;;25717:60;25803:12;:19;25816:5;25803:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25795:36;;25788:43;;25633:206;;;:::o;39496:94::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39561:21:::1;39579:1;39561:9;:21::i;:::-;39496:94::o:0;41252:149::-;41300:4;41344;41322:26;;:18;;;;;;;;;;;:26;;;41314:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;41392:1;41385:8;;41252:149;:::o;42323:93::-;42371:7;42396:12;;42389:19;;42323:93;:::o;40412:29::-;;;;:::o;38845:87::-;38891:7;38918:6;;;;;;;;;;;38911:13;;38845:87;:::o;41429:266::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41502:1:::1;41493:6;:10;41485:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;41573:10;;41564:6;41549:12;;:21;;;;:::i;:::-;:34;;41541:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41627:29;41637:10;41649:6;41627:9;:29::i;:::-;41681:6;41665:12;;:22;;;;;;;:::i;:::-;;;;;;;;41429:266:::0;:::o;27157:104::-;27213:13;27246:7;27239:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27157:104;:::o;40530:37::-;;;;;;;;;;;;;:::o;42225:90::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42303:4:::1;42293:7;:14;;;;;;;;;;;;:::i;:::-;;42225:90:::0;:::o;28750:279::-;28853:12;:10;:12::i;:::-;28841:24;;:8;:24;;;28837:54;;;28874:17;;;;;;;;;;;;;;28837:54;28949:8;28904:18;:32;28923:12;:10;:12::i;:::-;28904:32;;;;;;;;;;;;;;;:42;28937:8;28904:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29002:8;28973:48;;28988:12;:10;:12::i;:::-;28973:48;;;29012:8;28973:48;;;;;;:::i;:::-;;;;;;;;28750:279;;:::o;40485:36::-;;;;:::o;29828:308::-;29987:28;29997:4;30003:2;30007:7;29987:9;:28::i;:::-;30031:48;30054:4;30060:2;30064:7;30073:5;30031:22;:48::i;:::-;30026:102;;30088:40;;;;;;;;;;;;;;30026:102;29828:308;;;;:::o;41913:93::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41993:5:::1;41980:10;:18;;;;41913:93:::0;:::o;27332:327::-;27405:13;27436:16;27444:7;27436;:16::i;:::-;27431:59;;27461:29;;;;;;;;;;;;;;27431:59;27503:21;27527:10;:8;:10::i;:::-;27503:34;;27580:1;27561:7;27555:21;:26;;:96;;;;;;;;;;;;;;;;;27608:7;27617:18;:7;:16;:18::i;:::-;27591:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27555:96;27548:103;;;27332:327;;;:::o;41703:99::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41788:6:::1;41767:18;;:27;;;;;;;;;;;;;;;;;;41703:99:::0;:::o;40757:487::-;40837:4;40815:26;;:18;;;;;;;;;;;:26;;;40807:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;40887:1;40878:6;:10;40870:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;40944:10;;40934:6;:20;;40926:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;41045:10;;41035:6;41020:12;;:21;;;;:::i;:::-;:35;;41012:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41133:6;41118:12;;:21;;;;:::i;:::-;41105:9;:34;;41097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41176:29;41186:10;41198:6;41176:9;:29::i;:::-;41230:6;41214:12;;:22;;;;;;;:::i;:::-;;;;;;;;40757:487;:::o;41810:97::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41894:5:::1;41879:12;:20;;;;41810:97:::0;:::o;40450:26::-;;;;:::o;29100:164::-;29197:4;29221:18;:25;29240:5;29221:25;;;;;;;;;;;;;;;:35;29247:8;29221:35;;;;;;;;;;;;;;;;;;;;;;;;;29214:42;;29100:164;;;;:::o;39745:192::-;39076:12;:10;:12::i;:::-;39065:23;;:7;:5;:7::i;:::-;:23;;;39057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39854:1:::1;39834:22;;:8;:22;;;;39826:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39910:19;39920:8;39910:9;:19::i;:::-;39745:192:::0;:::o;7313:157::-;7398:4;7437:25;7422:40;;;:11;:40;;;;7415:47;;7313:157;;;:::o;10056:98::-;10109:7;10136:10;10129:17;;10056:98;:::o;30391:112::-;30448:4;30482:13;;30472:7;:23;30465:30;;30391:112;;;:::o;35154:196::-;35296:2;35269:15;:24;35285:7;35269:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35334:7;35330:2;35314:28;;35323:5;35314:28;;;;;;;;;;;;35154:196;;;:::o;33074:1962::-;33189:35;33227:20;33239:7;33227:11;:20::i;:::-;33189:58;;33260:22;33302:13;:18;;;33286:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;33361:12;:10;:12::i;:::-;33337:36;;:20;33349:7;33337:11;:20::i;:::-;:36;;;33286:87;:154;;;;33390:50;33407:13;:18;;;33427:12;:10;:12::i;:::-;33390:16;:50::i;:::-;33286:154;33260:181;;33459:17;33454:66;;33485:35;;;;;;;;;;;;;;33454:66;33557:4;33535:26;;:13;:18;;;:26;;;33531:67;;33570:28;;;;;;;;;;;;;;33531:67;33627:1;33613:16;;:2;:16;;;33609:52;;;33638:23;;;;;;;;;;;;;;33609:52;33674:43;33696:4;33702:2;33706:7;33715:1;33674:21;:43::i;:::-;33782:49;33799:1;33803:7;33812:13;:18;;;33782:8;:49::i;:::-;34157:1;34127:12;:18;34140:4;34127:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34201:1;34173:12;:16;34186:2;34173:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34247:2;34219:11;:20;34231:7;34219:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;34309:15;34264:11;:20;34276:7;34264:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;34577:19;34609:1;34599:7;:11;34577:33;;34670:1;34629:43;;:11;:24;34641:11;34629:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;34625:295;;;34697:20;34705:11;34697:7;:20::i;:::-;34693:212;;;34774:13;:18;;;34742:11;:24;34754:11;34742:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;34857:13;:28;;;34815:11;:24;34827:11;34815:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;34693:212;34625:295;34102:829;34967:7;34963:2;34948:27;;34957:4;34948:27;;;;;;;;;;;;34986:42;35007:4;35013:2;35017:7;35026:1;34986:20;:42::i;:::-;33178:1858;;33074:1962;;;:::o;26256:479::-;26317:21;;:::i;:::-;26356:16;26364:7;26356;:16::i;:::-;26351:61;;26381:31;;;;;;;;;;;;;;26351:61;26455:12;26470:7;26455:22;;26450:235;26507:31;26541:11;:17;26553:4;26541:17;;;;;;;;;;;26507:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26607:1;26581:28;;:9;:14;;;:28;;;26577:93;;26641:9;26634:16;;;;;;26577:93;26488:197;26480:6;;;;;;;;26450:235;;26256:479;;;;:::o;39945:173::-;40001:16;40020:6;;;;;;;;;;;40001:25;;40046:8;40037:6;;:17;;;;;;;;;;;;;;;;;;40101:8;40070:40;;40091:8;40070:40;;;;;;;;;;;;39990:128;39945:173;:::o;30511:104::-;30580:27;30590:2;30594:8;30580:27;;;;;;;;;;;;:9;:27::i;:::-;30511:104;;:::o;35915:765::-;36070:4;36091:15;:2;:13;;;:15::i;:::-;36087:586;;;36143:2;36127:36;;;36164:12;:10;:12::i;:::-;36178:4;36184:7;36193:5;36127:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36123:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36390:1;36373:6;:13;:18;36369:234;;;36400:40;;;;;;;;;;;;;;36369:234;36553:6;36547:13;36538:6;36534:2;36530:15;36523:38;36123:495;36260:45;;;36250:55;;;:6;:55;;;;36243:62;;;;;36087:586;36657:4;36650:11;;35915:765;;;;;;;:::o;42113:106::-;42173:13;42204:7;42197:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42113:106;:::o;7730:723::-;7786:13;8016:1;8007:5;:10;8003:53;;;8034:10;;;;;;;;;;;;;;;;;;;;;8003:53;8066:12;8081:5;8066:20;;8097:14;8122:78;8137:1;8129:4;:9;8122:78;;8155:8;;;;;:::i;:::-;;;;8186:2;8178:10;;;;;:::i;:::-;;;8122:78;;;8210:19;8242:6;8232:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8210:39;;8260:154;8276:1;8267:5;:10;8260:154;;8304:1;8294:11;;;;;:::i;:::-;;;8371:2;8363:5;:10;;;;:::i;:::-;8350:2;:24;;;;:::i;:::-;8337:39;;8320:6;8327;8320:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8400:2;8391:11;;;;;:::i;:::-;;;8260:154;;;8438:6;8424:21;;;;;7730:723;;;;:::o;37168:159::-;;;;;:::o;37739:158::-;;;;;:::o;30978:163::-;31101:32;31107:2;31111:8;31121:5;31128:4;31101:5;:32::i;:::-;30978:163;;;:::o;11376:326::-;11436:4;11693:1;11671:7;:19;;;:23;11664:30;;11376:326;;;:::o;31400:1420::-;31539:20;31562:13;;31539:36;;31604:1;31590:16;;:2;:16;;;31586:48;;;31615:19;;;;;;;;;;;;;;31586:48;31661:1;31649:8;:13;31645:44;;;31671:18;;;;;;;;;;;;;;31645:44;31702:61;31732:1;31736:2;31740:12;31754:8;31702:21;:61::i;:::-;32078:8;32042:12;:16;32055:2;32042:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32143:8;32102:12;:16;32115:2;32102:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32202:2;32169:11;:25;32181:12;32169:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32269:15;32219:11;:25;32231:12;32219:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32302:20;32325:12;32302:35;;32359:9;32354:330;32374:8;32370:1;:12;32354:330;;;32438:12;32434:2;32413:38;;32430:1;32413:38;;;;;;;;;;;;32474:4;:68;;;;;32483:59;32514:1;32518:2;32522:12;32536:5;32483:22;:59::i;:::-;32482:60;32474:68;32470:164;;;32574:40;;;;;;;;;;;;;;32470:164;32654:14;;;;;;;32384:3;;;;;;;32354:330;;;;32716:12;32700:13;:28;;;;32017:723;32752:60;32781:1;32785:2;32789:12;32803:8;32752:20;:60::i;:::-;31528:1292;31400:1420;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:400::-;10121:3;10142:84;10224:1;10219:3;10142:84;:::i;:::-;10135:91;;10235:93;10324:3;10235:93;:::i;:::-;10353:1;10348:3;10344:11;10337:18;;9961:400;;;:::o;10367:366::-;10509:3;10530:67;10594:2;10589:3;10530:67;:::i;:::-;10523:74;;10606:93;10695:3;10606:93;:::i;:::-;10724:2;10719:3;10715:12;10708:19;;10367:366;;;:::o;10739:::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:::-;11997:3;12018:67;12082:2;12077:3;12018:67;:::i;:::-;12011:74;;12094:93;12183:3;12094:93;:::i;:::-;12212:2;12207:3;12203:12;12196:19;;11855:366;;;:::o;12227:118::-;12314:24;12332:5;12314:24;:::i;:::-;12309:3;12302:37;12227:118;;:::o;12351:701::-;12632:3;12654:95;12745:3;12736:6;12654:95;:::i;:::-;12647:102;;12766:95;12857:3;12848:6;12766:95;:::i;:::-;12759:102;;12878:148;13022:3;12878:148;:::i;:::-;12871:155;;13043:3;13036:10;;12351:701;;;;;:::o;13058:222::-;13151:4;13189:2;13178:9;13174:18;13166:26;;13202:71;13270:1;13259:9;13255:17;13246:6;13202:71;:::i;:::-;13058:222;;;;:::o;13286:640::-;13481:4;13519:3;13508:9;13504:19;13496:27;;13533:71;13601:1;13590:9;13586:17;13577:6;13533:71;:::i;:::-;13614:72;13682:2;13671:9;13667:18;13658:6;13614:72;:::i;:::-;13696;13764:2;13753:9;13749:18;13740:6;13696:72;:::i;:::-;13815:9;13809:4;13805:20;13800:2;13789:9;13785:18;13778:48;13843:76;13914:4;13905:6;13843:76;:::i;:::-;13835:84;;13286:640;;;;;;;:::o;13932:210::-;14019:4;14057:2;14046:9;14042:18;14034:26;;14070:65;14132:1;14121:9;14117:17;14108:6;14070:65;:::i;:::-;13932:210;;;;:::o;14148:313::-;14261:4;14299:2;14288:9;14284:18;14276:26;;14348:9;14342:4;14338:20;14334:1;14323:9;14319:17;14312:47;14376:78;14449:4;14440:6;14376:78;:::i;:::-;14368:86;;14148:313;;;;:::o;14467:419::-;14633:4;14671:2;14660:9;14656:18;14648:26;;14720:9;14714:4;14710:20;14706:1;14695:9;14691:17;14684:47;14748:131;14874:4;14748:131;:::i;:::-;14740:139;;14467:419;;;:::o;14892:::-;15058:4;15096:2;15085:9;15081:18;15073:26;;15145:9;15139:4;15135:20;15131:1;15120:9;15116:17;15109:47;15173:131;15299:4;15173:131;:::i;:::-;15165:139;;14892:419;;;:::o;15317:::-;15483:4;15521:2;15510:9;15506:18;15498:26;;15570:9;15564:4;15560:20;15556:1;15545:9;15541:17;15534:47;15598:131;15724:4;15598:131;:::i;:::-;15590:139;;15317:419;;;:::o;15742:::-;15908:4;15946:2;15935:9;15931:18;15923:26;;15995:9;15989:4;15985:20;15981:1;15970:9;15966:17;15959:47;16023:131;16149:4;16023:131;:::i;:::-;16015:139;;15742:419;;;:::o;16167:::-;16333:4;16371:2;16360:9;16356:18;16348:26;;16420:9;16414:4;16410:20;16406:1;16395:9;16391:17;16384:47;16448:131;16574:4;16448:131;:::i;:::-;16440:139;;16167:419;;;:::o;16592:::-;16758:4;16796:2;16785:9;16781:18;16773:26;;16845:9;16839:4;16835:20;16831:1;16820:9;16816:17;16809:47;16873:131;16999:4;16873:131;:::i;:::-;16865:139;;16592:419;;;:::o;17017:::-;17183:4;17221:2;17210:9;17206:18;17198:26;;17270:9;17264:4;17260:20;17256:1;17245:9;17241:17;17234:47;17298:131;17424:4;17298:131;:::i;:::-;17290:139;;17017:419;;;:::o;17442:::-;17608:4;17646:2;17635:9;17631:18;17623:26;;17695:9;17689:4;17685:20;17681:1;17670:9;17666:17;17659:47;17723:131;17849:4;17723:131;:::i;:::-;17715:139;;17442:419;;;:::o;17867:222::-;17960:4;17998:2;17987:9;17983:18;17975:26;;18011:71;18079:1;18068:9;18064:17;18055:6;18011:71;:::i;:::-;17867:222;;;;:::o;18095:129::-;18129:6;18156:20;;:::i;:::-;18146:30;;18185:33;18213:4;18205:6;18185:33;:::i;:::-;18095:129;;;:::o;18230:75::-;18263:6;18296:2;18290:9;18280:19;;18230:75;:::o;18311:307::-;18372:4;18462:18;18454:6;18451:30;18448:56;;;18484:18;;:::i;:::-;18448:56;18522:29;18544:6;18522:29;:::i;:::-;18514:37;;18606:4;18600;18596:15;18588:23;;18311:307;;;:::o;18624:308::-;18686:4;18776:18;18768:6;18765:30;18762:56;;;18798:18;;:::i;:::-;18762:56;18836:29;18858:6;18836:29;:::i;:::-;18828:37;;18920:4;18914;18910:15;18902:23;;18624:308;;;:::o;18938:98::-;18989:6;19023:5;19017:12;19007:22;;18938:98;;;:::o;19042:99::-;19094:6;19128:5;19122:12;19112:22;;19042:99;;;:::o;19147:168::-;19230:11;19264:6;19259:3;19252:19;19304:4;19299:3;19295:14;19280:29;;19147:168;;;;:::o;19321:169::-;19405:11;19439:6;19434:3;19427:19;19479:4;19474:3;19470:14;19455:29;;19321:169;;;;:::o;19496:148::-;19598:11;19635:3;19620:18;;19496:148;;;;:::o;19650:305::-;19690:3;19709:20;19727:1;19709:20;:::i;:::-;19704:25;;19743:20;19761:1;19743:20;:::i;:::-;19738:25;;19897:1;19829:66;19825:74;19822:1;19819:81;19816:107;;;19903:18;;:::i;:::-;19816:107;19947:1;19944;19940:9;19933:16;;19650:305;;;;:::o;19961:185::-;20001:1;20018:20;20036:1;20018:20;:::i;:::-;20013:25;;20052:20;20070:1;20052:20;:::i;:::-;20047:25;;20091:1;20081:35;;20096:18;;:::i;:::-;20081:35;20138:1;20135;20131:9;20126:14;;19961:185;;;;:::o;20152:348::-;20192:7;20215:20;20233:1;20215:20;:::i;:::-;20210:25;;20249:20;20267:1;20249:20;:::i;:::-;20244:25;;20437:1;20369:66;20365:74;20362:1;20359:81;20354:1;20347:9;20340:17;20336:105;20333:131;;;20444:18;;:::i;:::-;20333:131;20492:1;20489;20485:9;20474:20;;20152:348;;;;:::o;20506:191::-;20546:4;20566:20;20584:1;20566:20;:::i;:::-;20561:25;;20600:20;20618:1;20600:20;:::i;:::-;20595:25;;20639:1;20636;20633:8;20630:34;;;20644:18;;:::i;:::-;20630:34;20689:1;20686;20682:9;20674:17;;20506:191;;;;:::o;20703:96::-;20740:7;20769:24;20787:5;20769:24;:::i;:::-;20758:35;;20703:96;;;:::o;20805:90::-;20839:7;20882:5;20875:13;20868:21;20857:32;;20805:90;;;:::o;20901:149::-;20937:7;20977:66;20970:5;20966:78;20955:89;;20901:149;;;:::o;21056:126::-;21093:7;21133:42;21126:5;21122:54;21111:65;;21056:126;;;:::o;21188:77::-;21225:7;21254:5;21243:16;;21188:77;;;:::o;21271:154::-;21355:6;21350:3;21345;21332:30;21417:1;21408:6;21403:3;21399:16;21392:27;21271:154;;;:::o;21431:307::-;21499:1;21509:113;21523:6;21520:1;21517:13;21509:113;;;21608:1;21603:3;21599:11;21593:18;21589:1;21584:3;21580:11;21573:39;21545:2;21542:1;21538:10;21533:15;;21509:113;;;21640:6;21637:1;21634:13;21631:101;;;21720:1;21711:6;21706:3;21702:16;21695:27;21631:101;21480:258;21431:307;;;:::o;21744:320::-;21788:6;21825:1;21819:4;21815:12;21805:22;;21872:1;21866:4;21862:12;21893:18;21883:81;;21949:4;21941:6;21937:17;21927:27;;21883:81;22011:2;22003:6;22000:14;21980:18;21977:38;21974:84;;;22030:18;;:::i;:::-;21974:84;21795:269;21744:320;;;:::o;22070:281::-;22153:27;22175:4;22153:27;:::i;:::-;22145:6;22141:40;22283:6;22271:10;22268:22;22247:18;22235:10;22232:34;22229:62;22226:88;;;22294:18;;:::i;:::-;22226:88;22334:10;22330:2;22323:22;22113:238;22070:281;;:::o;22357:233::-;22396:3;22419:24;22437:5;22419:24;:::i;:::-;22410:33;;22465:66;22458:5;22455:77;22452:103;;;22535:18;;:::i;:::-;22452:103;22582:1;22575:5;22571:13;22564:20;;22357:233;;;:::o;22596:176::-;22628:1;22645:20;22663:1;22645:20;:::i;:::-;22640:25;;22679:20;22697:1;22679:20;:::i;:::-;22674:25;;22718:1;22708:35;;22723:18;;:::i;:::-;22708:35;22764:1;22761;22757:9;22752:14;;22596:176;;;;:::o;22778:180::-;22826:77;22823:1;22816:88;22923:4;22920:1;22913:15;22947:4;22944:1;22937:15;22964:180;23012:77;23009:1;23002:88;23109:4;23106:1;23099:15;23133:4;23130:1;23123:15;23150:180;23198:77;23195:1;23188:88;23295:4;23292:1;23285:15;23319:4;23316:1;23309:15;23336:180;23384:77;23381:1;23374:88;23481:4;23478:1;23471:15;23505:4;23502:1;23495:15;23522:180;23570:77;23567:1;23560:88;23667:4;23664:1;23657:15;23691:4;23688:1;23681:15;23708:180;23756:77;23753:1;23746:88;23853:4;23850:1;23843:15;23877:4;23874:1;23867:15;23894:117;24003:1;24000;23993:12;24017:117;24126:1;24123;24116:12;24140:117;24249:1;24246;24239:12;24263:117;24372:1;24369;24362:12;24386:102;24427:6;24478:2;24474:7;24469:2;24462:5;24458:14;24454:28;24444:38;;24386:102;;;:::o;24494:225::-;24634:34;24630:1;24622:6;24618:14;24611:58;24703:8;24698:2;24690:6;24686:15;24679:33;24494:225;:::o;24725:165::-;24865:17;24861:1;24853:6;24849:14;24842:41;24725:165;:::o;24896:231::-;25036:34;25032:1;25024:6;25020:14;25013:58;25105:14;25100:2;25092:6;25088:15;25081:39;24896:231;:::o;25133:155::-;25273:7;25269:1;25261:6;25257:14;25250:31;25133:155;:::o;25294:182::-;25434:34;25430:1;25422:6;25418:14;25411:58;25294:182;:::o;25482:174::-;25622:26;25618:1;25610:6;25606:14;25599:50;25482:174;:::o;25662:173::-;25802:25;25798:1;25790:6;25786:14;25779:49;25662:173;:::o;25841:178::-;25981:30;25977:1;25969:6;25965:14;25958:54;25841:178;:::o;26025:171::-;26165:23;26161:1;26153:6;26149:14;26142:47;26025:171;:::o;26202:122::-;26275:24;26293:5;26275:24;:::i;:::-;26268:5;26265:35;26255:63;;26314:1;26311;26304:12;26255:63;26202:122;:::o;26330:116::-;26400:21;26415:5;26400:21;:::i;:::-;26393:5;26390:32;26380:60;;26436:1;26433;26426:12;26380:60;26330:116;:::o;26452:120::-;26524:23;26541:5;26524:23;:::i;:::-;26517:5;26514:34;26504:62;;26562:1;26559;26552:12;26504:62;26452:120;:::o;26578:122::-;26651:24;26669:5;26651:24;:::i;:::-;26644:5;26641:35;26631:63;;26690:1;26687;26680:12;26631:63;26578:122;:::o

Swarm Source

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