ETH Price: $3,365.05 (-2.31%)
Gas: 1 Gwei

Token

TeddiesFriends (TEDDIES FRIENDS)
 

Overview

Max Total Supply

1,558 TEDDIES FRIENDS

Holders

95

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
19921111.eth
Balance
30 TEDDIES FRIENDS
0xdE4E81A778b99e8412ea3a3F765EB6179b87f198
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:
TeddiesFriends

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-04-21
*/

// File: TeddiesFriends.sol



// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
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 tokenId);

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


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.0;


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

    // 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) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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





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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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.7.0 <0.9.0;

contract TeddiesFriends is ERC721A, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.009 ether;
  uint256 public maxSupply = 3000;
  uint256 public maxMintAmount = 10;
  uint256 public maxFREEMintAmount = 10;
  uint256 public FREEnftPerAddressLimit = 30;
  uint256 public FREE_MAX_SUPPLY = 1500;
  address[] public whitelistedAddresses;
  bool public paused = true;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if (FREE_MAX_SUPPLY >= supply + _mintAmount) {
            require(_mintAmount <= maxFREEMintAmount, "max mint amount per session exceeded");
            require(numberMinted(msg.sender) + _mintAmount <= FREEnftPerAddressLimit, "max NFT per address exceeded");
        } else {
            require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
            require(msg.value >= _mintAmount * cost, "Invalid funds provided");
        }
    }
    _safeMint(msg.sender, _mintAmount);
    
  }

  function WLmint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    require(isWhitelisted(msg.sender), "user is not whitelisted");
    _safeMint(msg.sender, _mintAmount);
    
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }


  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  //only owner

  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }


  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    FREEnftPerAddressLimit = _limit;
  }

  function setFreeMaxSupply(uint256 _FreeMaxAmount) public onlyOwner {
    FREE_MAX_SUPPLY = _FreeMaxAmount;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setFreeMaxMintAmount(uint256 _newFreeMaxMintAmount) public onlyOwner {
    maxFREEMintAmount = _newFreeMaxMintAmount;
    FREEnftPerAddressLimit = _newFreeMaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREEnftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"WLmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFREEMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_FreeMaxAmount","type":"uint256"}],"name":"setFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506009908051906020019062000051929190620002d9565b50661ff973cafa8000600a55610bb8600b55600a600c55600a600d55601e600e556105dc600f556001601160006101000a81548160ff021916908315150217905550348015620000a057600080fd5b50604051620054c9380380620054c98339818101604052810190620000c6919062000407565b82828160019080519060200190620000e0929190620002d9565b508060029080519060200190620000f9929190620002d9565b5050506200011c620001106200013660201b60201c565b6200013e60201b60201c565b6200012d816200020460201b60201c565b505050620006c7565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002146200013660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023a620002af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000293576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028a90620004e7565b60405180910390fd5b8060089080519060200190620002ab929190620002d9565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e790620005af565b90600052602060002090601f0160209004810192826200030b576000855562000357565b82601f106200032657805160ff191683800117855562000357565b8280016001018555821562000357579182015b828111156200035657825182559160200191906001019062000339565b5b5090506200036691906200036a565b5090565b5b80821115620003855760008160009055506001016200036b565b5090565b6000620003a06200039a8462000532565b62000509565b905082815260208101848484011115620003bf57620003be6200067e565b5b620003cc84828562000579565b509392505050565b600082601f830112620003ec57620003eb62000679565b5b8151620003fe84826020860162000389565b91505092915050565b60008060006060848603121562000423576200042262000688565b5b600084015167ffffffffffffffff81111562000444576200044362000683565b5b6200045286828701620003d4565b935050602084015167ffffffffffffffff81111562000476576200047562000683565b5b6200048486828701620003d4565b925050604084015167ffffffffffffffff811115620004a857620004a762000683565b5b620004b686828701620003d4565b9150509250925092565b6000620004cf60208362000568565b9150620004dc826200069e565b602082019050919050565b600060208201905081810360008301526200050281620004c0565b9050919050565b60006200051562000528565b9050620005238282620005e5565b919050565b6000604051905090565b600067ffffffffffffffff82111562000550576200054f6200064a565b5b6200055b826200068d565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005995780820151818401526020810190506200057c565b83811115620005a9576000848401525b50505050565b60006002820490506001821680620005c857607f821691505b60208210811415620005df57620005de6200061b565b5b50919050565b620005f0826200068d565b810181811067ffffffffffffffff821117156200061257620006116200064a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614df280620006d76000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063c6682862116100b6578063d5abeb011161007a578063d5abeb0114610899578063da3ef23f146108c4578063dc33e681146108ed578063e985e9c51461092a578063edec5f2714610967578063f2fde38b1461099057610251565b8063c6682862146107b6578063c87b56dd146107e1578063d0eb26b01461081e578063d223a63114610847578063d4fcb2ae1461087057610251565b806395d89b41116100fd57806395d89b41146106e0578063a0712d681461070b578063a22cb46514610727578063b88d4fde14610750578063ba4e5c491461077957610251565b8063715018a61461061f5780637c7c867f146106365780637f00c7a6146106615780638069876d1461068a5780638da5cb5b146106b557610251565b80633af32abf116101d25780634f6ccce7116101965780634f6ccce7146104e957806355f804b314610526578063586963d91461054f5780635c975abb1461057a5780636352211e146105a557806370a08231146105e257610251565b80633af32abf146104345780633c773c25146104715780633ccfd60b1461048d57806342842e0e1461049757806344a0d68a146104c057610251565b806313faede61161021957806313faede61461034d57806318160ddd14610378578063239c70ae146103a357806323b872dd146103ce5780632f745c59146103f757610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906137a0565b6109b9565b60405161028a9190613e1d565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613773565b610b03565b005b3480156102c857600080fd5b506102d1610b9c565b6040516102de9190613e38565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613843565b610c2e565b60405161031b9190613db6565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906136e6565b610cb3565b005b34801561035957600080fd5b50610362610dcc565b60405161036f919061419a565b60405180910390f35b34801561038457600080fd5b5061038d610dd2565b60405161039a919061419a565b60405180910390f35b3480156103af57600080fd5b506103b8610ddb565b6040516103c5919061419a565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906135d0565b610de1565b005b34801561040357600080fd5b5061041e600480360381019061041991906136e6565b610df1565b60405161042b919061419a565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613563565b610fe3565b6040516104689190613e1d565b60405180910390f35b61048b60048036038101906104869190613843565b611092565b005b610495611194565b005b3480156104a357600080fd5b506104be60048036038101906104b991906135d0565b611290565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613843565b6112b0565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613843565b611336565b60405161051d919061419a565b60405180910390f35b34801561053257600080fd5b5061054d600480360381019061054891906137fa565b611389565b005b34801561055b57600080fd5b5061056461141f565b604051610571919061419a565b60405180910390f35b34801561058657600080fd5b5061058f611425565b60405161059c9190613e1d565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613843565b611438565b6040516105d99190613db6565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613563565b61144e565b604051610616919061419a565b60405180910390f35b34801561062b57600080fd5b50610634611537565b005b34801561064257600080fd5b5061064b6115bf565b604051610658919061419a565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613843565b6115c5565b005b34801561069657600080fd5b5061069f61164b565b6040516106ac919061419a565b60405180910390f35b3480156106c157600080fd5b506106ca611651565b6040516106d79190613db6565b60405180910390f35b3480156106ec57600080fd5b506106f561167b565b6040516107029190613e38565b60405180910390f35b61072560048036038101906107209190613843565b61170d565b005b34801561073357600080fd5b5061074e600480360381019061074991906136a6565b61194e565b005b34801561075c57600080fd5b5061077760048036038101906107729190613623565b611acf565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613843565b611b2b565b6040516107ad9190613db6565b60405180910390f35b3480156107c257600080fd5b506107cb611b6a565b6040516107d89190613e38565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190613843565b611bf8565b6040516108159190613e38565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190613843565b611ca2565b005b34801561085357600080fd5b5061086e60048036038101906108699190613843565b611d28565b005b34801561087c57600080fd5b5061089760048036038101906108929190613843565b611dae565b005b3480156108a557600080fd5b506108ae611e3b565b6040516108bb919061419a565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e691906137fa565b611e41565b005b3480156108f957600080fd5b50610914600480360381019061090f9190613563565b611ed7565b604051610921919061419a565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190613590565b611ee9565b60405161095e9190613e1d565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613726565b611f7d565b005b34801561099c57600080fd5b506109b760048036038101906109b29190613563565b61201d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aec57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610afc5750610afb82612115565b5b9050919050565b610b0b61217f565b73ffffffffffffffffffffffffffffffffffffffff16610b29611651565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613fda565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060018054610bab9061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd79061446a565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b6000610c3982612187565b610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f9061417a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cbe82611438565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d269061409a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4e61217f565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d7c81610d7761217f565b611ee9565b5b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390613f3a565b60405180910390fd5b610dc7838383612194565b505050565b600a5481565b60008054905090565b600c5481565b610dec838383612246565b505050565b6000610dfc8361144e565b8210610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613e5a565b60405180910390fd5b6000610e47610dd2565b905060008060005b83811015610fa1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f935786841415610f8a578195505050505050610fdd565b83806001019450505b508080600101915050610e4f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd49061411a565b60405180910390fd5b92915050565b600080600090505b601080549050811015611087578273ffffffffffffffffffffffffffffffffffffffff1660108281548110611023576110226145d4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561107457600191505061108d565b808061107f906144cd565b915050610feb565b50600090505b919050565b601160009054906101000a900460ff16156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990613ffa565b60405180910390fd5b60006110ec610dd2565b9050600b5482826110fd919061429f565b111561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590613f5a565b60405180910390fd5b61114733610fe3565b611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061413a565b60405180910390fd5b6111903383612786565b5050565b61119c61217f565b73ffffffffffffffffffffffffffffffffffffffff166111ba611651565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613fda565b60405180910390fd5b600061121a611651565b73ffffffffffffffffffffffffffffffffffffffff164760405161123d90613da1565b60006040518083038185875af1925050503d806000811461127a576040519150601f19603f3d011682016040523d82523d6000602084013e61127f565b606091505b505090508061128d57600080fd5b50565b6112ab83838360405180602001604052806000815250611acf565b505050565b6112b861217f565b73ffffffffffffffffffffffffffffffffffffffff166112d6611651565b73ffffffffffffffffffffffffffffffffffffffff161461132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613fda565b60405180910390fd5b80600a8190555050565b6000611340610dd2565b8210611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890613eda565b60405180910390fd5b819050919050565b61139161217f565b73ffffffffffffffffffffffffffffffffffffffff166113af611651565b73ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90613fda565b60405180910390fd5b806008908051906020019061141b929190613226565b5050565b600e5481565b601160009054906101000a900460ff1681565b6000611443826127a4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613f9a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61153f61217f565b73ffffffffffffffffffffffffffffffffffffffff1661155d611651565b73ffffffffffffffffffffffffffffffffffffffff16146115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613fda565b60405180910390fd5b6115bd600061293e565b565b600d5481565b6115cd61217f565b73ffffffffffffffffffffffffffffffffffffffff166115eb611651565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890613fda565b60405180910390fd5b80600c8190555050565b600f5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461168a9061446a565b80601f01602080910402602001604051908101604052809291908181526020018280546116b69061446a565b80156117035780601f106116d857610100808354040283529160200191611703565b820191906000526020600020905b8154815290600101906020018083116116e657829003601f168201915b5050505050905090565b601160009054906101000a900460ff161561175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613ffa565b60405180910390fd5b6000611767610dd2565b9050600b548282611778919061429f565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613f5a565b60405180910390fd5b6117c1611651565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119405781816117ff919061429f565b600f54106118a957600d5482111561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613f7a565b60405180910390fd5b600e548261185933611ed7565b611863919061429f565b11156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613eba565b60405180910390fd5b61193f565b600c548211156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590613f7a565b60405180910390fd5b600a54826118fc9190614326565b34101561193e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119359061407a565b60405180910390fd5b5b5b61194a3383612786565b5050565b61195661217f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061403a565b60405180910390fd5b80600660006119d161217f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a7e61217f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ac39190613e1d565b60405180910390a35050565b611ada848484612246565b611ae684848484612a04565b611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c906140ba565b60405180910390fd5b50505050565b60108181548110611b3b57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098054611b779061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba39061446a565b8015611bf05780601f10611bc557610100808354040283529160200191611bf0565b820191906000526020600020905b815481529060010190602001808311611bd357829003601f168201915b505050505081565b6060611c0382612187565b611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c399061401a565b60405180910390fd5b6000611c4c612b9b565b90506000815111611c6c5760405180602001604052806000815250611c9a565b80611c7684612c2d565b6009604051602001611c8a93929190613d70565b6040516020818303038152906040525b915050919050565b611caa61217f565b73ffffffffffffffffffffffffffffffffffffffff16611cc8611651565b73ffffffffffffffffffffffffffffffffffffffff1614611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613fda565b60405180910390fd5b80600e8190555050565b611d3061217f565b73ffffffffffffffffffffffffffffffffffffffff16611d4e611651565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613fda565b60405180910390fd5b80600f8190555050565b611db661217f565b73ffffffffffffffffffffffffffffffffffffffff16611dd4611651565b73ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190613fda565b60405180910390fd5b80600d8190555080600e8190555050565b600b5481565b611e4961217f565b73ffffffffffffffffffffffffffffffffffffffff16611e67611651565b73ffffffffffffffffffffffffffffffffffffffff1614611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490613fda565b60405180910390fd5b8060099080519060200190611ed3929190613226565b5050565b6000611ee282612d8e565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f8561217f565b73ffffffffffffffffffffffffffffffffffffffff16611fa3611651565b73ffffffffffffffffffffffffffffffffffffffff1614611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613fda565b60405180910390fd5b6010600061200791906132ac565b8181601091906120189291906132cd565b505050565b61202561217f565b73ffffffffffffffffffffffffffffffffffffffff16612043611651565b73ffffffffffffffffffffffffffffffffffffffff1614612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090613fda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090613e7a565b60405180910390fd5b6121128161293e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612251826127a4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661227861217f565b73ffffffffffffffffffffffffffffffffffffffff1614806122d4575061229d61217f565b73ffffffffffffffffffffffffffffffffffffffff166122bc84610c2e565b73ffffffffffffffffffffffffffffffffffffffff16145b806122f057506122ef82600001516122ea61217f565b611ee9565b5b905080612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123299061405a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b90613fba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240b90613efa565b60405180910390fd5b6124218585856001612e77565b6124316000848460000151612194565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127165761267581612187565b156127155782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461277f8585856001612e7d565b5050505050565b6127a0828260405180602001604052806000815250612e83565b5050565b6127ac61336d565b6127b582612187565b6127f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127eb90613e9a565b60405180910390fd5b60008290505b600081106128fd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128ee578092505050612939565b508080600190039150506127fa565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129309061415a565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a258473ffffffffffffffffffffffffffffffffffffffff16612e95565b15612b8e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4e61217f565b8786866040518563ffffffff1660e01b8152600401612a709493929190613dd1565b602060405180830381600087803b158015612a8a57600080fd5b505af1925050508015612abb57506040513d601f19601f82011682018060405250810190612ab891906137cd565b60015b612b3e573d8060008114612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b50600081511415612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d906140ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b93565b600190505b949350505050565b606060088054612baa9061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054612bd69061446a565b8015612c235780601f10612bf857610100808354040283529160200191612c23565b820191906000526020600020905b815481529060010190602001808311612c0657829003601f168201915b5050505050905090565b60606000821415612c75576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d89565b600082905060005b60008214612ca7578080612c90906144cd565b915050600a82612ca091906142f5565b9150612c7d565b60008167ffffffffffffffff811115612cc357612cc2614603565b5b6040519080825280601f01601f191660200182016040528015612cf55781602001600182028036833780820191505090505b5090505b60008514612d8257600182612d0e9190614380565b9150600a85612d1d9190614516565b6030612d29919061429f565b60f81b818381518110612d3f57612d3e6145d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d7b91906142f5565b9450612cf9565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df690613f1a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612e908383836001612ea8565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f15906140da565b60405180910390fd5b6000841415612f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f59906140fa565b60405180910390fd5b612f6f6000868387612e77565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561320957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156131f4576131b46000888488612a04565b6131f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ea906140ba565b60405180910390fd5b5b8180600101925050808060010191505061313d565b50806000819055505061321f6000868387612e7d565b5050505050565b8280546132329061446a565b90600052602060002090601f016020900481019282613254576000855561329b565b82601f1061326d57805160ff191683800117855561329b565b8280016001018555821561329b579182015b8281111561329a57825182559160200191906001019061327f565b5b5090506132a891906133a7565b5090565b50805460008255906000526020600020908101906132ca91906133a7565b50565b82805482825590600052602060002090810192821561335c579160200282015b8281111561335b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906132ed565b5b50905061336991906133a7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156133c05760008160009055506001016133a8565b5090565b60006133d76133d2846141da565b6141b5565b9050828152602081018484840111156133f3576133f2614641565b5b6133fe848285614428565b509392505050565b60006134196134148461420b565b6141b5565b90508281526020810184848401111561343557613434614641565b5b613440848285614428565b509392505050565b60008135905061345781614d60565b92915050565b60008083601f84011261347357613472614637565b5b8235905067ffffffffffffffff8111156134905761348f614632565b5b6020830191508360208202830111156134ac576134ab61463c565b5b9250929050565b6000813590506134c281614d77565b92915050565b6000813590506134d781614d8e565b92915050565b6000815190506134ec81614d8e565b92915050565b600082601f83011261350757613506614637565b5b81356135178482602086016133c4565b91505092915050565b600082601f83011261353557613534614637565b5b8135613545848260208601613406565b91505092915050565b60008135905061355d81614da5565b92915050565b6000602082840312156135795761357861464b565b5b600061358784828501613448565b91505092915050565b600080604083850312156135a7576135a661464b565b5b60006135b585828601613448565b92505060206135c685828601613448565b9150509250929050565b6000806000606084860312156135e9576135e861464b565b5b60006135f786828701613448565b935050602061360886828701613448565b92505060406136198682870161354e565b9150509250925092565b6000806000806080858703121561363d5761363c61464b565b5b600061364b87828801613448565b945050602061365c87828801613448565b935050604061366d8782880161354e565b925050606085013567ffffffffffffffff81111561368e5761368d614646565b5b61369a878288016134f2565b91505092959194509250565b600080604083850312156136bd576136bc61464b565b5b60006136cb85828601613448565b92505060206136dc858286016134b3565b9150509250929050565b600080604083850312156136fd576136fc61464b565b5b600061370b85828601613448565b925050602061371c8582860161354e565b9150509250929050565b6000806020838503121561373d5761373c61464b565b5b600083013567ffffffffffffffff81111561375b5761375a614646565b5b6137678582860161345d565b92509250509250929050565b6000602082840312156137895761378861464b565b5b6000613797848285016134b3565b91505092915050565b6000602082840312156137b6576137b561464b565b5b60006137c4848285016134c8565b91505092915050565b6000602082840312156137e3576137e261464b565b5b60006137f1848285016134dd565b91505092915050565b6000602082840312156138105761380f61464b565b5b600082013567ffffffffffffffff81111561382e5761382d614646565b5b61383a84828501613520565b91505092915050565b6000602082840312156138595761385861464b565b5b60006138678482850161354e565b91505092915050565b613879816143b4565b82525050565b613888816143c6565b82525050565b600061389982614251565b6138a38185614267565b93506138b3818560208601614437565b6138bc81614650565b840191505092915050565b60006138d28261425c565b6138dc8185614283565b93506138ec818560208601614437565b6138f581614650565b840191505092915050565b600061390b8261425c565b6139158185614294565b9350613925818560208601614437565b80840191505092915050565b6000815461393e8161446a565b6139488186614294565b945060018216600081146139635760018114613974576139a7565b60ff198316865281860193506139a7565b61397d8561423c565b60005b8381101561399f57815481890152600182019150602081019050613980565b838801955050505b50505092915050565b60006139bd602283614283565b91506139c882614661565b604082019050919050565b60006139e0602683614283565b91506139eb826146b0565b604082019050919050565b6000613a03602a83614283565b9150613a0e826146ff565b604082019050919050565b6000613a26601c83614283565b9150613a318261474e565b602082019050919050565b6000613a49602383614283565b9150613a5482614777565b604082019050919050565b6000613a6c602583614283565b9150613a77826147c6565b604082019050919050565b6000613a8f603183614283565b9150613a9a82614815565b604082019050919050565b6000613ab2603983614283565b9150613abd82614864565b604082019050919050565b6000613ad5601683614283565b9150613ae0826148b3565b602082019050919050565b6000613af8602483614283565b9150613b03826148dc565b604082019050919050565b6000613b1b602b83614283565b9150613b268261492b565b604082019050919050565b6000613b3e602683614283565b9150613b498261497a565b604082019050919050565b6000613b61602083614283565b9150613b6c826149c9565b602082019050919050565b6000613b84601683614283565b9150613b8f826149f2565b602082019050919050565b6000613ba7602f83614283565b9150613bb282614a1b565b604082019050919050565b6000613bca601a83614283565b9150613bd582614a6a565b602082019050919050565b6000613bed603283614283565b9150613bf882614a93565b604082019050919050565b6000613c10601683614283565b9150613c1b82614ae2565b602082019050919050565b6000613c33602283614283565b9150613c3e82614b0b565b604082019050919050565b6000613c56600083614278565b9150613c6182614b5a565b600082019050919050565b6000613c79603383614283565b9150613c8482614b5d565b604082019050919050565b6000613c9c602183614283565b9150613ca782614bac565b604082019050919050565b6000613cbf602883614283565b9150613cca82614bfb565b604082019050919050565b6000613ce2602e83614283565b9150613ced82614c4a565b604082019050919050565b6000613d05601783614283565b9150613d1082614c99565b602082019050919050565b6000613d28602f83614283565b9150613d3382614cc2565b604082019050919050565b6000613d4b602d83614283565b9150613d5682614d11565b604082019050919050565b613d6a8161441e565b82525050565b6000613d7c8286613900565b9150613d888285613900565b9150613d948284613931565b9150819050949350505050565b6000613dac82613c49565b9150819050919050565b6000602082019050613dcb6000830184613870565b92915050565b6000608082019050613de66000830187613870565b613df36020830186613870565b613e006040830185613d61565b8181036060830152613e12818461388e565b905095945050505050565b6000602082019050613e32600083018461387f565b92915050565b60006020820190508181036000830152613e5281846138c7565b905092915050565b60006020820190508181036000830152613e73816139b0565b9050919050565b60006020820190508181036000830152613e93816139d3565b9050919050565b60006020820190508181036000830152613eb3816139f6565b9050919050565b60006020820190508181036000830152613ed381613a19565b9050919050565b60006020820190508181036000830152613ef381613a3c565b9050919050565b60006020820190508181036000830152613f1381613a5f565b9050919050565b60006020820190508181036000830152613f3381613a82565b9050919050565b60006020820190508181036000830152613f5381613aa5565b9050919050565b60006020820190508181036000830152613f7381613ac8565b9050919050565b60006020820190508181036000830152613f9381613aeb565b9050919050565b60006020820190508181036000830152613fb381613b0e565b9050919050565b60006020820190508181036000830152613fd381613b31565b9050919050565b60006020820190508181036000830152613ff381613b54565b9050919050565b6000602082019050818103600083015261401381613b77565b9050919050565b6000602082019050818103600083015261403381613b9a565b9050919050565b6000602082019050818103600083015261405381613bbd565b9050919050565b6000602082019050818103600083015261407381613be0565b9050919050565b6000602082019050818103600083015261409381613c03565b9050919050565b600060208201905081810360008301526140b381613c26565b9050919050565b600060208201905081810360008301526140d381613c6c565b9050919050565b600060208201905081810360008301526140f381613c8f565b9050919050565b6000602082019050818103600083015261411381613cb2565b9050919050565b6000602082019050818103600083015261413381613cd5565b9050919050565b6000602082019050818103600083015261415381613cf8565b9050919050565b6000602082019050818103600083015261417381613d1b565b9050919050565b6000602082019050818103600083015261419381613d3e565b9050919050565b60006020820190506141af6000830184613d61565b92915050565b60006141bf6141d0565b90506141cb828261449c565b919050565b6000604051905090565b600067ffffffffffffffff8211156141f5576141f4614603565b5b6141fe82614650565b9050602081019050919050565b600067ffffffffffffffff82111561422657614225614603565b5b61422f82614650565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142aa8261441e565b91506142b58361441e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142ea576142e9614547565b5b828201905092915050565b60006143008261441e565b915061430b8361441e565b92508261431b5761431a614576565b5b828204905092915050565b60006143318261441e565b915061433c8361441e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437557614374614547565b5b828202905092915050565b600061438b8261441e565b91506143968361441e565b9250828210156143a9576143a8614547565b5b828203905092915050565b60006143bf826143fe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561445557808201518184015260208101905061443a565b83811115614464576000848401525b50505050565b6000600282049050600182168061448257607f821691505b60208210811415614496576144956145a5565b5b50919050565b6144a582614650565b810181811067ffffffffffffffff821117156144c4576144c3614603565b5b80604052505050565b60006144d88261441e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561450b5761450a614547565b5b600182019050919050565b60006145218261441e565b915061452c8361441e565b92508261453c5761453b614576565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614d69816143b4565b8114614d7457600080fd5b50565b614d80816143c6565b8114614d8b57600080fd5b50565b614d97816143d2565b8114614da257600080fd5b50565b614dae8161441e565b8114614db957600080fd5b5056fea2646970667358221220deaf70a624f75bd3af18dd6dcbb66f70d7eede672a2b30785a698547fe2ed85c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e54656464696573467269656e6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5445444449455320465249454e445300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525139466f5269546371646975664146526a79516a397237326a5569784e7a524d546363625754535869536e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063c6682862116100b6578063d5abeb011161007a578063d5abeb0114610899578063da3ef23f146108c4578063dc33e681146108ed578063e985e9c51461092a578063edec5f2714610967578063f2fde38b1461099057610251565b8063c6682862146107b6578063c87b56dd146107e1578063d0eb26b01461081e578063d223a63114610847578063d4fcb2ae1461087057610251565b806395d89b41116100fd57806395d89b41146106e0578063a0712d681461070b578063a22cb46514610727578063b88d4fde14610750578063ba4e5c491461077957610251565b8063715018a61461061f5780637c7c867f146106365780637f00c7a6146106615780638069876d1461068a5780638da5cb5b146106b557610251565b80633af32abf116101d25780634f6ccce7116101965780634f6ccce7146104e957806355f804b314610526578063586963d91461054f5780635c975abb1461057a5780636352211e146105a557806370a08231146105e257610251565b80633af32abf146104345780633c773c25146104715780633ccfd60b1461048d57806342842e0e1461049757806344a0d68a146104c057610251565b806313faede61161021957806313faede61461034d57806318160ddd14610378578063239c70ae146103a357806323b872dd146103ce5780632f745c59146103f757610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906137a0565b6109b9565b60405161028a9190613e1d565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613773565b610b03565b005b3480156102c857600080fd5b506102d1610b9c565b6040516102de9190613e38565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190613843565b610c2e565b60405161031b9190613db6565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906136e6565b610cb3565b005b34801561035957600080fd5b50610362610dcc565b60405161036f919061419a565b60405180910390f35b34801561038457600080fd5b5061038d610dd2565b60405161039a919061419a565b60405180910390f35b3480156103af57600080fd5b506103b8610ddb565b6040516103c5919061419a565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906135d0565b610de1565b005b34801561040357600080fd5b5061041e600480360381019061041991906136e6565b610df1565b60405161042b919061419a565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613563565b610fe3565b6040516104689190613e1d565b60405180910390f35b61048b60048036038101906104869190613843565b611092565b005b610495611194565b005b3480156104a357600080fd5b506104be60048036038101906104b991906135d0565b611290565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613843565b6112b0565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613843565b611336565b60405161051d919061419a565b60405180910390f35b34801561053257600080fd5b5061054d600480360381019061054891906137fa565b611389565b005b34801561055b57600080fd5b5061056461141f565b604051610571919061419a565b60405180910390f35b34801561058657600080fd5b5061058f611425565b60405161059c9190613e1d565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613843565b611438565b6040516105d99190613db6565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613563565b61144e565b604051610616919061419a565b60405180910390f35b34801561062b57600080fd5b50610634611537565b005b34801561064257600080fd5b5061064b6115bf565b604051610658919061419a565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613843565b6115c5565b005b34801561069657600080fd5b5061069f61164b565b6040516106ac919061419a565b60405180910390f35b3480156106c157600080fd5b506106ca611651565b6040516106d79190613db6565b60405180910390f35b3480156106ec57600080fd5b506106f561167b565b6040516107029190613e38565b60405180910390f35b61072560048036038101906107209190613843565b61170d565b005b34801561073357600080fd5b5061074e600480360381019061074991906136a6565b61194e565b005b34801561075c57600080fd5b5061077760048036038101906107729190613623565b611acf565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613843565b611b2b565b6040516107ad9190613db6565b60405180910390f35b3480156107c257600080fd5b506107cb611b6a565b6040516107d89190613e38565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190613843565b611bf8565b6040516108159190613e38565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190613843565b611ca2565b005b34801561085357600080fd5b5061086e60048036038101906108699190613843565b611d28565b005b34801561087c57600080fd5b5061089760048036038101906108929190613843565b611dae565b005b3480156108a557600080fd5b506108ae611e3b565b6040516108bb919061419a565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e691906137fa565b611e41565b005b3480156108f957600080fd5b50610914600480360381019061090f9190613563565b611ed7565b604051610921919061419a565b60405180910390f35b34801561093657600080fd5b50610951600480360381019061094c9190613590565b611ee9565b60405161095e9190613e1d565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613726565b611f7d565b005b34801561099c57600080fd5b506109b760048036038101906109b29190613563565b61201d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aec57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610afc5750610afb82612115565b5b9050919050565b610b0b61217f565b73ffffffffffffffffffffffffffffffffffffffff16610b29611651565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613fda565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060018054610bab9061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd79061446a565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b6000610c3982612187565b610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f9061417a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cbe82611438565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d269061409a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4e61217f565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d7c81610d7761217f565b611ee9565b5b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390613f3a565b60405180910390fd5b610dc7838383612194565b505050565b600a5481565b60008054905090565b600c5481565b610dec838383612246565b505050565b6000610dfc8361144e565b8210610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3490613e5a565b60405180910390fd5b6000610e47610dd2565b905060008060005b83811015610fa1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f935786841415610f8a578195505050505050610fdd565b83806001019450505b508080600101915050610e4f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd49061411a565b60405180910390fd5b92915050565b600080600090505b601080549050811015611087578273ffffffffffffffffffffffffffffffffffffffff1660108281548110611023576110226145d4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561107457600191505061108d565b808061107f906144cd565b915050610feb565b50600090505b919050565b601160009054906101000a900460ff16156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990613ffa565b60405180910390fd5b60006110ec610dd2565b9050600b5482826110fd919061429f565b111561113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590613f5a565b60405180910390fd5b61114733610fe3565b611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061413a565b60405180910390fd5b6111903383612786565b5050565b61119c61217f565b73ffffffffffffffffffffffffffffffffffffffff166111ba611651565b73ffffffffffffffffffffffffffffffffffffffff1614611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613fda565b60405180910390fd5b600061121a611651565b73ffffffffffffffffffffffffffffffffffffffff164760405161123d90613da1565b60006040518083038185875af1925050503d806000811461127a576040519150601f19603f3d011682016040523d82523d6000602084013e61127f565b606091505b505090508061128d57600080fd5b50565b6112ab83838360405180602001604052806000815250611acf565b505050565b6112b861217f565b73ffffffffffffffffffffffffffffffffffffffff166112d6611651565b73ffffffffffffffffffffffffffffffffffffffff161461132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613fda565b60405180910390fd5b80600a8190555050565b6000611340610dd2565b8210611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890613eda565b60405180910390fd5b819050919050565b61139161217f565b73ffffffffffffffffffffffffffffffffffffffff166113af611651565b73ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90613fda565b60405180910390fd5b806008908051906020019061141b929190613226565b5050565b600e5481565b601160009054906101000a900460ff1681565b6000611443826127a4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613f9a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61153f61217f565b73ffffffffffffffffffffffffffffffffffffffff1661155d611651565b73ffffffffffffffffffffffffffffffffffffffff16146115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613fda565b60405180910390fd5b6115bd600061293e565b565b600d5481565b6115cd61217f565b73ffffffffffffffffffffffffffffffffffffffff166115eb611651565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890613fda565b60405180910390fd5b80600c8190555050565b600f5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461168a9061446a565b80601f01602080910402602001604051908101604052809291908181526020018280546116b69061446a565b80156117035780601f106116d857610100808354040283529160200191611703565b820191906000526020600020905b8154815290600101906020018083116116e657829003601f168201915b5050505050905090565b601160009054906101000a900460ff161561175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613ffa565b60405180910390fd5b6000611767610dd2565b9050600b548282611778919061429f565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613f5a565b60405180910390fd5b6117c1611651565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119405781816117ff919061429f565b600f54106118a957600d5482111561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613f7a565b60405180910390fd5b600e548261185933611ed7565b611863919061429f565b11156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613eba565b60405180910390fd5b61193f565b600c548211156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590613f7a565b60405180910390fd5b600a54826118fc9190614326565b34101561193e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119359061407a565b60405180910390fd5b5b5b61194a3383612786565b5050565b61195661217f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061403a565b60405180910390fd5b80600660006119d161217f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a7e61217f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ac39190613e1d565b60405180910390a35050565b611ada848484612246565b611ae684848484612a04565b611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c906140ba565b60405180910390fd5b50505050565b60108181548110611b3b57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098054611b779061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ba39061446a565b8015611bf05780601f10611bc557610100808354040283529160200191611bf0565b820191906000526020600020905b815481529060010190602001808311611bd357829003601f168201915b505050505081565b6060611c0382612187565b611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c399061401a565b60405180910390fd5b6000611c4c612b9b565b90506000815111611c6c5760405180602001604052806000815250611c9a565b80611c7684612c2d565b6009604051602001611c8a93929190613d70565b6040516020818303038152906040525b915050919050565b611caa61217f565b73ffffffffffffffffffffffffffffffffffffffff16611cc8611651565b73ffffffffffffffffffffffffffffffffffffffff1614611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613fda565b60405180910390fd5b80600e8190555050565b611d3061217f565b73ffffffffffffffffffffffffffffffffffffffff16611d4e611651565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613fda565b60405180910390fd5b80600f8190555050565b611db661217f565b73ffffffffffffffffffffffffffffffffffffffff16611dd4611651565b73ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190613fda565b60405180910390fd5b80600d8190555080600e8190555050565b600b5481565b611e4961217f565b73ffffffffffffffffffffffffffffffffffffffff16611e67611651565b73ffffffffffffffffffffffffffffffffffffffff1614611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490613fda565b60405180910390fd5b8060099080519060200190611ed3929190613226565b5050565b6000611ee282612d8e565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f8561217f565b73ffffffffffffffffffffffffffffffffffffffff16611fa3611651565b73ffffffffffffffffffffffffffffffffffffffff1614611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613fda565b60405180910390fd5b6010600061200791906132ac565b8181601091906120189291906132cd565b505050565b61202561217f565b73ffffffffffffffffffffffffffffffffffffffff16612043611651565b73ffffffffffffffffffffffffffffffffffffffff1614612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090613fda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090613e7a565b60405180910390fd5b6121128161293e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612251826127a4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661227861217f565b73ffffffffffffffffffffffffffffffffffffffff1614806122d4575061229d61217f565b73ffffffffffffffffffffffffffffffffffffffff166122bc84610c2e565b73ffffffffffffffffffffffffffffffffffffffff16145b806122f057506122ef82600001516122ea61217f565b611ee9565b5b905080612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123299061405a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b90613fba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240b90613efa565b60405180910390fd5b6124218585856001612e77565b6124316000848460000151612194565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127165761267581612187565b156127155782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461277f8585856001612e7d565b5050505050565b6127a0828260405180602001604052806000815250612e83565b5050565b6127ac61336d565b6127b582612187565b6127f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127eb90613e9a565b60405180910390fd5b60008290505b600081106128fd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128ee578092505050612939565b508080600190039150506127fa565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129309061415a565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612a258473ffffffffffffffffffffffffffffffffffffffff16612e95565b15612b8e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4e61217f565b8786866040518563ffffffff1660e01b8152600401612a709493929190613dd1565b602060405180830381600087803b158015612a8a57600080fd5b505af1925050508015612abb57506040513d601f19601f82011682018060405250810190612ab891906137cd565b60015b612b3e573d8060008114612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b50600081511415612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d906140ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b93565b600190505b949350505050565b606060088054612baa9061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054612bd69061446a565b8015612c235780601f10612bf857610100808354040283529160200191612c23565b820191906000526020600020905b815481529060010190602001808311612c0657829003601f168201915b5050505050905090565b60606000821415612c75576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d89565b600082905060005b60008214612ca7578080612c90906144cd565b915050600a82612ca091906142f5565b9150612c7d565b60008167ffffffffffffffff811115612cc357612cc2614603565b5b6040519080825280601f01601f191660200182016040528015612cf55781602001600182028036833780820191505090505b5090505b60008514612d8257600182612d0e9190614380565b9150600a85612d1d9190614516565b6030612d29919061429f565b60f81b818381518110612d3f57612d3e6145d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d7b91906142f5565b9450612cf9565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df690613f1a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612e908383836001612ea8565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f15906140da565b60405180910390fd5b6000841415612f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f59906140fa565b60405180910390fd5b612f6f6000868387612e77565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561320957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156131f4576131b46000888488612a04565b6131f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ea906140ba565b60405180910390fd5b5b8180600101925050808060010191505061313d565b50806000819055505061321f6000868387612e7d565b5050505050565b8280546132329061446a565b90600052602060002090601f016020900481019282613254576000855561329b565b82601f1061326d57805160ff191683800117855561329b565b8280016001018555821561329b579182015b8281111561329a57825182559160200191906001019061327f565b5b5090506132a891906133a7565b5090565b50805460008255906000526020600020908101906132ca91906133a7565b50565b82805482825590600052602060002090810192821561335c579160200282015b8281111561335b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906132ed565b5b50905061336991906133a7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156133c05760008160009055506001016133a8565b5090565b60006133d76133d2846141da565b6141b5565b9050828152602081018484840111156133f3576133f2614641565b5b6133fe848285614428565b509392505050565b60006134196134148461420b565b6141b5565b90508281526020810184848401111561343557613434614641565b5b613440848285614428565b509392505050565b60008135905061345781614d60565b92915050565b60008083601f84011261347357613472614637565b5b8235905067ffffffffffffffff8111156134905761348f614632565b5b6020830191508360208202830111156134ac576134ab61463c565b5b9250929050565b6000813590506134c281614d77565b92915050565b6000813590506134d781614d8e565b92915050565b6000815190506134ec81614d8e565b92915050565b600082601f83011261350757613506614637565b5b81356135178482602086016133c4565b91505092915050565b600082601f83011261353557613534614637565b5b8135613545848260208601613406565b91505092915050565b60008135905061355d81614da5565b92915050565b6000602082840312156135795761357861464b565b5b600061358784828501613448565b91505092915050565b600080604083850312156135a7576135a661464b565b5b60006135b585828601613448565b92505060206135c685828601613448565b9150509250929050565b6000806000606084860312156135e9576135e861464b565b5b60006135f786828701613448565b935050602061360886828701613448565b92505060406136198682870161354e565b9150509250925092565b6000806000806080858703121561363d5761363c61464b565b5b600061364b87828801613448565b945050602061365c87828801613448565b935050604061366d8782880161354e565b925050606085013567ffffffffffffffff81111561368e5761368d614646565b5b61369a878288016134f2565b91505092959194509250565b600080604083850312156136bd576136bc61464b565b5b60006136cb85828601613448565b92505060206136dc858286016134b3565b9150509250929050565b600080604083850312156136fd576136fc61464b565b5b600061370b85828601613448565b925050602061371c8582860161354e565b9150509250929050565b6000806020838503121561373d5761373c61464b565b5b600083013567ffffffffffffffff81111561375b5761375a614646565b5b6137678582860161345d565b92509250509250929050565b6000602082840312156137895761378861464b565b5b6000613797848285016134b3565b91505092915050565b6000602082840312156137b6576137b561464b565b5b60006137c4848285016134c8565b91505092915050565b6000602082840312156137e3576137e261464b565b5b60006137f1848285016134dd565b91505092915050565b6000602082840312156138105761380f61464b565b5b600082013567ffffffffffffffff81111561382e5761382d614646565b5b61383a84828501613520565b91505092915050565b6000602082840312156138595761385861464b565b5b60006138678482850161354e565b91505092915050565b613879816143b4565b82525050565b613888816143c6565b82525050565b600061389982614251565b6138a38185614267565b93506138b3818560208601614437565b6138bc81614650565b840191505092915050565b60006138d28261425c565b6138dc8185614283565b93506138ec818560208601614437565b6138f581614650565b840191505092915050565b600061390b8261425c565b6139158185614294565b9350613925818560208601614437565b80840191505092915050565b6000815461393e8161446a565b6139488186614294565b945060018216600081146139635760018114613974576139a7565b60ff198316865281860193506139a7565b61397d8561423c565b60005b8381101561399f57815481890152600182019150602081019050613980565b838801955050505b50505092915050565b60006139bd602283614283565b91506139c882614661565b604082019050919050565b60006139e0602683614283565b91506139eb826146b0565b604082019050919050565b6000613a03602a83614283565b9150613a0e826146ff565b604082019050919050565b6000613a26601c83614283565b9150613a318261474e565b602082019050919050565b6000613a49602383614283565b9150613a5482614777565b604082019050919050565b6000613a6c602583614283565b9150613a77826147c6565b604082019050919050565b6000613a8f603183614283565b9150613a9a82614815565b604082019050919050565b6000613ab2603983614283565b9150613abd82614864565b604082019050919050565b6000613ad5601683614283565b9150613ae0826148b3565b602082019050919050565b6000613af8602483614283565b9150613b03826148dc565b604082019050919050565b6000613b1b602b83614283565b9150613b268261492b565b604082019050919050565b6000613b3e602683614283565b9150613b498261497a565b604082019050919050565b6000613b61602083614283565b9150613b6c826149c9565b602082019050919050565b6000613b84601683614283565b9150613b8f826149f2565b602082019050919050565b6000613ba7602f83614283565b9150613bb282614a1b565b604082019050919050565b6000613bca601a83614283565b9150613bd582614a6a565b602082019050919050565b6000613bed603283614283565b9150613bf882614a93565b604082019050919050565b6000613c10601683614283565b9150613c1b82614ae2565b602082019050919050565b6000613c33602283614283565b9150613c3e82614b0b565b604082019050919050565b6000613c56600083614278565b9150613c6182614b5a565b600082019050919050565b6000613c79603383614283565b9150613c8482614b5d565b604082019050919050565b6000613c9c602183614283565b9150613ca782614bac565b604082019050919050565b6000613cbf602883614283565b9150613cca82614bfb565b604082019050919050565b6000613ce2602e83614283565b9150613ced82614c4a565b604082019050919050565b6000613d05601783614283565b9150613d1082614c99565b602082019050919050565b6000613d28602f83614283565b9150613d3382614cc2565b604082019050919050565b6000613d4b602d83614283565b9150613d5682614d11565b604082019050919050565b613d6a8161441e565b82525050565b6000613d7c8286613900565b9150613d888285613900565b9150613d948284613931565b9150819050949350505050565b6000613dac82613c49565b9150819050919050565b6000602082019050613dcb6000830184613870565b92915050565b6000608082019050613de66000830187613870565b613df36020830186613870565b613e006040830185613d61565b8181036060830152613e12818461388e565b905095945050505050565b6000602082019050613e32600083018461387f565b92915050565b60006020820190508181036000830152613e5281846138c7565b905092915050565b60006020820190508181036000830152613e73816139b0565b9050919050565b60006020820190508181036000830152613e93816139d3565b9050919050565b60006020820190508181036000830152613eb3816139f6565b9050919050565b60006020820190508181036000830152613ed381613a19565b9050919050565b60006020820190508181036000830152613ef381613a3c565b9050919050565b60006020820190508181036000830152613f1381613a5f565b9050919050565b60006020820190508181036000830152613f3381613a82565b9050919050565b60006020820190508181036000830152613f5381613aa5565b9050919050565b60006020820190508181036000830152613f7381613ac8565b9050919050565b60006020820190508181036000830152613f9381613aeb565b9050919050565b60006020820190508181036000830152613fb381613b0e565b9050919050565b60006020820190508181036000830152613fd381613b31565b9050919050565b60006020820190508181036000830152613ff381613b54565b9050919050565b6000602082019050818103600083015261401381613b77565b9050919050565b6000602082019050818103600083015261403381613b9a565b9050919050565b6000602082019050818103600083015261405381613bbd565b9050919050565b6000602082019050818103600083015261407381613be0565b9050919050565b6000602082019050818103600083015261409381613c03565b9050919050565b600060208201905081810360008301526140b381613c26565b9050919050565b600060208201905081810360008301526140d381613c6c565b9050919050565b600060208201905081810360008301526140f381613c8f565b9050919050565b6000602082019050818103600083015261411381613cb2565b9050919050565b6000602082019050818103600083015261413381613cd5565b9050919050565b6000602082019050818103600083015261415381613cf8565b9050919050565b6000602082019050818103600083015261417381613d1b565b9050919050565b6000602082019050818103600083015261419381613d3e565b9050919050565b60006020820190506141af6000830184613d61565b92915050565b60006141bf6141d0565b90506141cb828261449c565b919050565b6000604051905090565b600067ffffffffffffffff8211156141f5576141f4614603565b5b6141fe82614650565b9050602081019050919050565b600067ffffffffffffffff82111561422657614225614603565b5b61422f82614650565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142aa8261441e565b91506142b58361441e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142ea576142e9614547565b5b828201905092915050565b60006143008261441e565b915061430b8361441e565b92508261431b5761431a614576565b5b828204905092915050565b60006143318261441e565b915061433c8361441e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437557614374614547565b5b828202905092915050565b600061438b8261441e565b91506143968361441e565b9250828210156143a9576143a8614547565b5b828203905092915050565b60006143bf826143fe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561445557808201518184015260208101905061443a565b83811115614464576000848401525b50505050565b6000600282049050600182168061448257607f821691505b60208210811415614496576144956145a5565b5b50919050565b6144a582614650565b810181811067ffffffffffffffff821117156144c4576144c3614603565b5b80604052505050565b60006144d88261441e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561450b5761450a614547565b5b600182019050919050565b60006145218261441e565b915061452c8361441e565b92508261453c5761453b614576565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614d69816143b4565b8114614d7457600080fd5b50565b614d80816143c6565b8114614d8b57600080fd5b50565b614d97816143d2565b8114614da257600080fd5b50565b614dae8161441e565b8114614db957600080fd5b5056fea2646970667358221220deaf70a624f75bd3af18dd6dcbb66f70d7eede672a2b30785a698547fe2ed85c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e54656464696573467269656e6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5445444449455320465249454e445300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525139466f5269546371646975664146526a79516a397237326a5569784e7a524d546363625754535869536e2f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TeddiesFriends
Arg [1] : _symbol (string): TEDDIES FRIENDS
Arg [2] : _initBaseURI (string): ipfs://QmRQ9FoRiTcqdiufAFRjyQj9r72jUixNzRMTccbWTSXiSn/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 54656464696573467269656e6473000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 5445444449455320465249454e44530000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d525139466f5269546371646975664146526a79516a3972
Arg [9] : 37326a5569784e7a524d546363625754535869536e2f00000000000000000000


Deployed Bytecode Sourcemap

39319:3945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23805:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43036:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25691:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27253:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26774:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39461:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22062:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39535:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28129:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22726:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41212:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40872:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43116:145;;;:::i;:::-;;28362:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42405:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22239:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42804:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39615:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39746:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25500:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24241:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38655:94;;;;;;;;;;;;;:::i;:::-;;39573:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42491:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39662:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38004:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25860:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40085:781;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27539:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28610:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39704:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39419;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41572:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42171:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42285:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42613:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39499:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42908:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41459:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27898:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42019:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38904:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23805:372;23907:4;23959:25;23944:40;;;:11;:40;;;;:105;;;;24016:33;24001:48;;;:11;:48;;;;23944:105;:172;;;;24081:35;24066:50;;;:11;:50;;;;23944:172;:225;;;;24133:36;24157:11;24133:23;:36::i;:::-;23944:225;23924:245;;23805:372;;;:::o;43036:73::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43097:6:::1;43088;;:15;;;;;;;;;;;;;;;;;;43036:73:::0;:::o;25691:100::-;25745:13;25778:5;25771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25691:100;:::o;27253:214::-;27321:7;27349:16;27357:7;27349;:16::i;:::-;27341:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27435:15;:24;27451:7;27435:24;;;;;;;;;;;;;;;;;;;;;27428:31;;27253:214;;;:::o;26774:413::-;26847:13;26863:24;26879:7;26863:15;:24::i;:::-;26847:40;;26912:5;26906:11;;:2;:11;;;;26898:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27007:5;26991:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27016:37;27033:5;27040:12;:10;:12::i;:::-;27016:16;:37::i;:::-;26991:62;26969:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;27151:28;27160:2;27164:7;27173:5;27151:8;:28::i;:::-;26836:351;26774:413;;:::o;39461:33::-;;;;:::o;22062:100::-;22115:7;22142:12;;22135:19;;22062:100;:::o;39535:33::-;;;;:::o;28129:162::-;28255:28;28265:4;28271:2;28275:7;28255:9;:28::i;:::-;28129:162;;;:::o;22726:1007::-;22815:7;22851:16;22861:5;22851:9;:16::i;:::-;22843:5;:24;22835:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22917:22;22942:13;:11;:13::i;:::-;22917:38;;22966:19;22996:25;23185:9;23180:466;23200:14;23196:1;:18;23180:466;;;23240:31;23274:11;:14;23286:1;23274:14;;;;;;;;;;;23240:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23337:1;23311:28;;:9;:14;;;:28;;;23307:111;;23384:9;:14;;;23364:34;;23307:111;23461:5;23440:26;;:17;:26;;;23436:195;;;23510:5;23495:11;:20;23491:85;;;23551:1;23544:8;;;;;;;;;23491:85;23598:13;;;;;;;23436:195;23221:425;23216:3;;;;;;;23180:466;;;;23669:56;;;;;;;;;;:::i;:::-;;;;;;;;22726:1007;;;;;:::o;41212:239::-;41271:4;41289:6;41298:1;41289:10;;41284:143;41305:20;:27;;;;41301:1;:31;41284:143;;;41379:5;41352:32;;:20;41373:1;41352:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;41348:72;;;41406:4;41399:11;;;;;41348:72;41334:3;;;;;:::i;:::-;;;;41284:143;;;;41440:5;41433:12;;41212:239;;;;:::o;40872:334::-;40940:6;;;;;;;;;;;40939:7;40931:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;40980:14;40997:13;:11;:13::i;:::-;40980:30;;41049:9;;41034:11;41025:6;:20;;;;:::i;:::-;:33;;41017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41100:25;41114:10;41100:13;:25::i;:::-;41092:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41160:34;41170:10;41182:11;41160:9;:34::i;:::-;40924:282;40872:334;:::o;43116:145::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43169:7:::1;43190;:5;:7::i;:::-;43182:21;;43211;43182:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43168:69;;;43252:2;43244:11;;;::::0;::::1;;43161:100;43116:145::o:0;28362:177::-;28492:39;28509:4;28515:2;28519:7;28492:39;;;;;;;;;;;;:16;:39::i;:::-;28362:177;;;:::o;42405:80::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42471:8:::1;42464:4;:15;;;;42405:80:::0;:::o;22239:187::-;22306:7;22342:13;:11;:13::i;:::-;22334:5;:21;22326:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;22413:5;22406:12;;22239:187;;;:::o;42804:98::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42885:11:::1;42875:7;:21;;;;;;;;;;;;:::i;:::-;;42804:98:::0;:::o;39615:42::-;;;;:::o;39746:25::-;;;;;;;;;;;;;:::o;25500:124::-;25564:7;25591:20;25603:7;25591:11;:20::i;:::-;:25;;;25584:32;;25500:124;;;:::o;24241:221::-;24305:7;24350:1;24333:19;;:5;:19;;;;24325:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;24426:12;:19;24439:5;24426:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24418:36;;24411:43;;24241:221;;;:::o;38655:94::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38720:21:::1;38738:1;38720:9;:21::i;:::-;38655:94::o:0;39573:37::-;;;;:::o;42491:116::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42584:17:::1;42568:13;:33;;;;42491:116:::0;:::o;39662:37::-;;;;:::o;38004:87::-;38050:7;38077:6;;;;;;;;;;;38070:13;;38004:87;:::o;25860:104::-;25916:13;25949:7;25942:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25860:104;:::o;40085:781::-;40151:6;;;;;;;;;;;40150:7;40142:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;40191:14;40208:13;:11;:13::i;:::-;40191:30;;40260:9;;40245:11;40236:6;:20;;;;:::i;:::-;:33;;40228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40323:7;:5;:7::i;:::-;40309:21;;:10;:21;;;40305:509;;40375:11;40366:6;:20;;;;:::i;:::-;40347:15;;:39;40343:464;;40426:17;;40411:11;:32;;40403:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;40549:22;;40534:11;40507:24;40520:10;40507:12;:24::i;:::-;:38;;;;:::i;:::-;:64;;40499:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;40343:464;;;40660:13;;40645:11;:28;;40637:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;40764:4;;40750:11;:18;;;;:::i;:::-;40737:9;:31;;40729:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;40343:464;40305:509;40820:34;40830:10;40842:11;40820:9;:34::i;:::-;40135:731;40085:781;:::o;27539:288::-;27646:12;:10;:12::i;:::-;27634:24;;:8;:24;;;;27626:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27747:8;27702:18;:32;27721:12;:10;:12::i;:::-;27702:32;;;;;;;;;;;;;;;:42;27735:8;27702:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27800:8;27771:48;;27786:12;:10;:12::i;:::-;27771:48;;;27810:8;27771:48;;;;;;:::i;:::-;;;;;;;;27539:288;;:::o;28610:355::-;28769:28;28779:4;28785:2;28789:7;28769:9;:28::i;:::-;28830:48;28853:4;28859:2;28863:7;28872:5;28830:22;:48::i;:::-;28808:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;28610:355;;;;:::o;39704:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39419:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41572:423::-;41670:13;41711:16;41719:7;41711;:16::i;:::-;41695:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;41801:28;41832:10;:8;:10::i;:::-;41801:41;;41887:1;41862:14;41856:28;:32;:133;;;;;;;;;;;;;;;;;41924:14;41940:18;:7;:16;:18::i;:::-;41960:13;41907:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41856:133;41849:140;;;41572:423;;;:::o;42171:108::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42267:6:::1;42242:22;:31;;;;42171:108:::0;:::o;42285:112::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42377:14:::1;42359:15;:32;;;;42285:112:::0;:::o;42613:185::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42718:21:::1;42698:17;:41;;;;42771:21;42746:22;:46;;;;42613:185:::0;:::o;39499:31::-;;;;:::o;42908:122::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43007:17:::1;42991:13;:33;;;;;;;;;;;;:::i;:::-;;42908:122:::0;:::o;41459:107::-;41517:7;41540:20;41554:5;41540:13;:20::i;:::-;41533:27;;41459:107;;;:::o;27898:164::-;27995:4;28019:18;:25;28038:5;28019:25;;;;;;;;;;;;;;;:35;28045:8;28019:35;;;;;;;;;;;;;;;;;;;;;;;;;28012:42;;27898:164;;;;:::o;42019:144::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42101:20:::1;;42094:27;;;;:::i;:::-;42151:6;;42128:20;:29;;;;;;;:::i;:::-;;42019:144:::0;;:::o;38904:192::-;38235:12;:10;:12::i;:::-;38224:23;;:7;:5;:7::i;:::-;:23;;;38216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39013:1:::1;38993:22;;:8;:22;;;;38985:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39069:19;39079:8;39069:9;:19::i;:::-;38904:192:::0;:::o;7440:157::-;7525:4;7564:25;7549:40;;;:11;:40;;;;7542:47;;7440:157;;;:::o;20083:98::-;20136:7;20163:10;20156:17;;20083:98;:::o;29220:111::-;29277:4;29311:12;;29301:7;:22;29294:29;;29220:111;;;:::o;34140:196::-;34282:2;34255:15;:24;34271:7;34255:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34320:7;34316:2;34300:28;;34309:5;34300:28;;;;;;;;;;;;34140:196;;;:::o;32020:2002::-;32135:35;32173:20;32185:7;32173:11;:20::i;:::-;32135:58;;32206:22;32248:13;:18;;;32232:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;32307:12;:10;:12::i;:::-;32283:36;;:20;32295:7;32283:11;:20::i;:::-;:36;;;32232:87;:154;;;;32336:50;32353:13;:18;;;32373:12;:10;:12::i;:::-;32336:16;:50::i;:::-;32232:154;32206:181;;32408:17;32400:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;32523:4;32501:26;;:13;:18;;;:26;;;32493:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;32603:1;32589:16;;:2;:16;;;;32581:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32660:43;32682:4;32688:2;32692:7;32701:1;32660:21;:43::i;:::-;32768:49;32785:1;32789:7;32798:13;:18;;;32768:8;:49::i;:::-;33143:1;33113:12;:18;33126:4;33113:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33187:1;33159:12;:16;33172:2;33159:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33233:2;33205:11;:20;33217:7;33205:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;33295:15;33250:11;:20;33262:7;33250:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;33563:19;33595:1;33585:7;:11;33563:33;;33656:1;33615:43;;:11;:24;33627:11;33615:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33611:295;;;33683:20;33691:11;33683:7;:20::i;:::-;33679:212;;;33760:13;:18;;;33728:11;:24;33740:11;33728:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;33843:13;:28;;;33801:11;:24;33813:11;33801:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;33679:212;33611:295;33088:829;33953:7;33949:2;33934:27;;33943:4;33934:27;;;;;;;;;;;;33972:42;33993:4;33999:2;34003:7;34012:1;33972:20;:42::i;:::-;32124:1898;;32020:2002;;;:::o;29339:104::-;29408:27;29418:2;29422:8;29408:27;;;;;;;;;;;;:9;:27::i;:::-;29339:104;;:::o;24901:537::-;24962:21;;:::i;:::-;25004:16;25012:7;25004;:16::i;:::-;24996:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25110:12;25125:7;25110:22;;25105:245;25142:1;25134:4;:9;25105:245;;25172:31;25206:11;:17;25218:4;25206:17;;;;;;;;;;;25172:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25272:1;25246:28;;:9;:14;;;:28;;;25242:93;;25306:9;25299:16;;;;;;25242:93;25153:197;25145:6;;;;;;;;25105:245;;;;25373:57;;;;;;;;;;:::i;:::-;;;;;;;;24901:537;;;;:::o;39104:173::-;39160:16;39179:6;;;;;;;;;;;39160:25;;39205:8;39196:6;;:17;;;;;;;;;;;;;;;;;;39260:8;39229:40;;39250:8;39229:40;;;;;;;;;;;;39149:128;39104:173;:::o;34901:804::-;35056:4;35077:15;:2;:13;;;:15::i;:::-;35073:625;;;35129:2;35113:36;;;35150:12;:10;:12::i;:::-;35164:4;35170:7;35179:5;35113:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35109:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35376:1;35359:6;:13;:18;35355:273;;;35402:61;;;;;;;;;;:::i;:::-;;;;;;;;35355:273;35578:6;35572:13;35563:6;35559:2;35555:15;35548:38;35109:534;35246:45;;;35236:55;;;:6;:55;;;;35229:62;;;;;35073:625;35682:4;35675:11;;34901:804;;;;;;;:::o;39964:102::-;40024:13;40053:7;40046:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39964:102;:::o;7915:723::-;7971:13;8201:1;8192:5;:10;8188:53;;;8219:10;;;;;;;;;;;;;;;;;;;;;8188:53;8251:12;8266:5;8251:20;;8282:14;8307:78;8322:1;8314:4;:9;8307:78;;8340:8;;;;;:::i;:::-;;;;8371:2;8363:10;;;;;:::i;:::-;;;8307:78;;;8395:19;8427:6;8417:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8395:39;;8445:154;8461:1;8452:5;:10;8445:154;;8489:1;8479:11;;;;;:::i;:::-;;;8556:2;8548:5;:10;;;;:::i;:::-;8535:2;:24;;;;:::i;:::-;8522:39;;8505:6;8512;8505:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8585:2;8576:11;;;;;:::i;:::-;;;8445:154;;;8623:6;8609:21;;;;;7915:723;;;;:::o;24470:229::-;24531:7;24576:1;24559:19;;:5;:19;;;;24551:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;24658:12;:19;24671:5;24658:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;24650:41;;24643:48;;24470:229;;;:::o;36193:159::-;;;;;:::o;36764:158::-;;;;;:::o;29806:163::-;29929:32;29935:2;29939:8;29949:5;29956:4;29929:5;:32::i;:::-;29806:163;;;:::o;10440:387::-;10500:4;10708:12;10775:7;10763:20;10755:28;;10818:1;10811:4;:8;10804:15;;;10440:387;;;:::o;30228:1538::-;30367:20;30390:12;;30367:35;;30435:1;30421:16;;:2;:16;;;;30413:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30506:1;30494:8;:13;;30486:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30565:61;30595:1;30599:2;30603:12;30617:8;30565:21;:61::i;:::-;30940:8;30904:12;:16;30917:2;30904:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31005:8;30964:12;:16;30977:2;30964:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31064:2;31031:11;:25;31043:12;31031:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31131:15;31081:11;:25;31093:12;31081:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;31164:20;31187:12;31164:35;;31221:9;31216:415;31236:8;31232:1;:12;31216:415;;;31300:12;31296:2;31275:38;;31292:1;31275:38;;;;;;;;;;;;31336:4;31332:249;;;31399:59;31430:1;31434:2;31438:12;31452:5;31399:22;:59::i;:::-;31365:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;31332:249;31601:14;;;;;;;31246:3;;;;;;;31216:415;;;;31662:12;31647;:27;;;;30879:807;31698:60;31727:1;31731:2;31735:12;31749:8;31698:20;:60::i;:::-;30356:1410;30228:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:118::-;8730:24;8748:5;8730:24;:::i;:::-;8725:3;8718:37;8643:118;;:::o;8767:109::-;8848:21;8863:5;8848:21;:::i;:::-;8843:3;8836:34;8767:109;;:::o;8882:360::-;8968:3;8996:38;9028:5;8996:38;:::i;:::-;9050:70;9113:6;9108:3;9050:70;:::i;:::-;9043:77;;9129:52;9174:6;9169:3;9162:4;9155:5;9151:16;9129:52;:::i;:::-;9206:29;9228:6;9206:29;:::i;:::-;9201:3;9197:39;9190:46;;8972:270;8882:360;;;;:::o;9248:364::-;9336:3;9364:39;9397:5;9364:39;:::i;:::-;9419:71;9483:6;9478:3;9419:71;:::i;:::-;9412:78;;9499:52;9544:6;9539:3;9532:4;9525:5;9521:16;9499:52;:::i;:::-;9576:29;9598:6;9576:29;:::i;:::-;9571:3;9567:39;9560:46;;9340:272;9248:364;;;;:::o;9618:377::-;9724:3;9752:39;9785:5;9752:39;:::i;:::-;9807:89;9889:6;9884:3;9807:89;:::i;:::-;9800:96;;9905:52;9950:6;9945:3;9938:4;9931:5;9927:16;9905:52;:::i;:::-;9982:6;9977:3;9973:16;9966:23;;9728:267;9618:377;;;;:::o;10025:845::-;10128:3;10165:5;10159:12;10194:36;10220:9;10194:36;:::i;:::-;10246:89;10328:6;10323:3;10246:89;:::i;:::-;10239:96;;10366:1;10355:9;10351:17;10382:1;10377:137;;;;10528:1;10523:341;;;;10344:520;;10377:137;10461:4;10457:9;10446;10442:25;10437:3;10430:38;10497:6;10492:3;10488:16;10481:23;;10377:137;;10523:341;10590:38;10622:5;10590:38;:::i;:::-;10650:1;10664:154;10678:6;10675:1;10672:13;10664:154;;;10752:7;10746:14;10742:1;10737:3;10733:11;10726:35;10802:1;10793:7;10789:15;10778:26;;10700:4;10697:1;10693:12;10688:17;;10664:154;;;10847:6;10842:3;10838:16;10831:23;;10530:334;;10344:520;;10132:738;;10025:845;;;;:::o;10876:366::-;11018:3;11039:67;11103:2;11098:3;11039:67;:::i;:::-;11032:74;;11115:93;11204:3;11115:93;:::i;:::-;11233:2;11228:3;11224:12;11217:19;;10876:366;;;:::o;11248:::-;11390:3;11411:67;11475:2;11470:3;11411:67;:::i;:::-;11404:74;;11487:93;11576:3;11487:93;:::i;:::-;11605:2;11600:3;11596:12;11589:19;;11248:366;;;:::o;11620:::-;11762:3;11783:67;11847:2;11842:3;11783:67;:::i;:::-;11776:74;;11859:93;11948:3;11859:93;:::i;:::-;11977:2;11972:3;11968:12;11961:19;;11620:366;;;:::o;11992:::-;12134:3;12155:67;12219:2;12214:3;12155:67;:::i;:::-;12148:74;;12231:93;12320:3;12231:93;:::i;:::-;12349:2;12344:3;12340:12;12333:19;;11992:366;;;:::o;12364:::-;12506:3;12527:67;12591:2;12586:3;12527:67;:::i;:::-;12520:74;;12603:93;12692:3;12603:93;:::i;:::-;12721:2;12716:3;12712:12;12705:19;;12364:366;;;:::o;12736:::-;12878:3;12899:67;12963:2;12958:3;12899:67;:::i;:::-;12892:74;;12975:93;13064:3;12975:93;:::i;:::-;13093:2;13088:3;13084:12;13077:19;;12736:366;;;:::o;13108:::-;13250:3;13271:67;13335:2;13330:3;13271:67;:::i;:::-;13264:74;;13347:93;13436:3;13347:93;:::i;:::-;13465:2;13460:3;13456:12;13449:19;;13108:366;;;:::o;13480:::-;13622:3;13643:67;13707:2;13702:3;13643:67;:::i;:::-;13636:74;;13719:93;13808:3;13719:93;:::i;:::-;13837:2;13832:3;13828:12;13821:19;;13480:366;;;:::o;13852:::-;13994:3;14015:67;14079:2;14074:3;14015:67;:::i;:::-;14008:74;;14091:93;14180:3;14091:93;:::i;:::-;14209:2;14204:3;14200:12;14193:19;;13852:366;;;:::o;14224:::-;14366:3;14387:67;14451:2;14446:3;14387:67;:::i;:::-;14380:74;;14463:93;14552:3;14463:93;:::i;:::-;14581:2;14576:3;14572:12;14565:19;;14224:366;;;:::o;14596:::-;14738:3;14759:67;14823:2;14818:3;14759:67;:::i;:::-;14752:74;;14835:93;14924:3;14835:93;:::i;:::-;14953:2;14948:3;14944:12;14937:19;;14596:366;;;:::o;14968:::-;15110:3;15131:67;15195:2;15190:3;15131:67;:::i;:::-;15124:74;;15207:93;15296:3;15207:93;:::i;:::-;15325:2;15320:3;15316:12;15309:19;;14968:366;;;:::o;15340:::-;15482:3;15503:67;15567:2;15562:3;15503:67;:::i;:::-;15496:74;;15579:93;15668:3;15579:93;:::i;:::-;15697:2;15692:3;15688:12;15681:19;;15340:366;;;:::o;15712:::-;15854:3;15875:67;15939:2;15934:3;15875:67;:::i;:::-;15868:74;;15951:93;16040:3;15951:93;:::i;:::-;16069:2;16064:3;16060:12;16053:19;;15712:366;;;:::o;16084:::-;16226:3;16247:67;16311:2;16306:3;16247:67;:::i;:::-;16240:74;;16323:93;16412:3;16323:93;:::i;:::-;16441:2;16436:3;16432:12;16425:19;;16084:366;;;:::o;16456:::-;16598:3;16619:67;16683:2;16678:3;16619:67;:::i;:::-;16612:74;;16695:93;16784:3;16695:93;:::i;:::-;16813:2;16808:3;16804:12;16797:19;;16456:366;;;:::o;16828:::-;16970:3;16991:67;17055:2;17050:3;16991:67;:::i;:::-;16984:74;;17067:93;17156:3;17067:93;:::i;:::-;17185:2;17180:3;17176:12;17169:19;;16828:366;;;:::o;17200:::-;17342:3;17363:67;17427:2;17422:3;17363:67;:::i;:::-;17356:74;;17439:93;17528:3;17439:93;:::i;:::-;17557:2;17552:3;17548:12;17541:19;;17200:366;;;:::o;17572:::-;17714:3;17735:67;17799:2;17794:3;17735:67;:::i;:::-;17728:74;;17811:93;17900:3;17811:93;:::i;:::-;17929:2;17924:3;17920:12;17913:19;;17572:366;;;:::o;17944:398::-;18103:3;18124:83;18205:1;18200:3;18124:83;:::i;:::-;18117:90;;18216:93;18305:3;18216:93;:::i;:::-;18334:1;18329:3;18325:11;18318:18;;17944:398;;;:::o;18348:366::-;18490:3;18511:67;18575:2;18570:3;18511:67;:::i;:::-;18504:74;;18587:93;18676:3;18587:93;:::i;:::-;18705:2;18700:3;18696:12;18689:19;;18348:366;;;:::o;18720:::-;18862:3;18883:67;18947:2;18942:3;18883:67;:::i;:::-;18876:74;;18959:93;19048:3;18959:93;:::i;:::-;19077:2;19072:3;19068:12;19061:19;;18720:366;;;:::o;19092:::-;19234:3;19255:67;19319:2;19314:3;19255:67;:::i;:::-;19248:74;;19331:93;19420:3;19331:93;:::i;:::-;19449:2;19444:3;19440:12;19433:19;;19092:366;;;:::o;19464:::-;19606:3;19627:67;19691:2;19686:3;19627:67;:::i;:::-;19620:74;;19703:93;19792:3;19703:93;:::i;:::-;19821:2;19816:3;19812:12;19805:19;;19464:366;;;:::o;19836:::-;19978:3;19999:67;20063:2;20058:3;19999:67;:::i;:::-;19992:74;;20075:93;20164:3;20075:93;:::i;:::-;20193:2;20188:3;20184:12;20177:19;;19836:366;;;:::o;20208:::-;20350:3;20371:67;20435:2;20430:3;20371:67;:::i;:::-;20364:74;;20447:93;20536:3;20447:93;:::i;:::-;20565:2;20560:3;20556:12;20549:19;;20208:366;;;:::o;20580:::-;20722:3;20743:67;20807:2;20802:3;20743:67;:::i;:::-;20736:74;;20819:93;20908:3;20819:93;:::i;:::-;20937:2;20932:3;20928:12;20921:19;;20580:366;;;:::o;20952:118::-;21039:24;21057:5;21039:24;:::i;:::-;21034:3;21027:37;20952:118;;:::o;21076:589::-;21301:3;21323:95;21414:3;21405:6;21323:95;:::i;:::-;21316:102;;21435:95;21526:3;21517:6;21435:95;:::i;:::-;21428:102;;21547:92;21635:3;21626:6;21547:92;:::i;:::-;21540:99;;21656:3;21649:10;;21076:589;;;;;;:::o;21671:379::-;21855:3;21877:147;22020:3;21877:147;:::i;:::-;21870:154;;22041:3;22034:10;;21671:379;;;:::o;22056:222::-;22149:4;22187:2;22176:9;22172:18;22164:26;;22200:71;22268:1;22257:9;22253:17;22244:6;22200:71;:::i;:::-;22056:222;;;;:::o;22284:640::-;22479:4;22517:3;22506:9;22502:19;22494:27;;22531:71;22599:1;22588:9;22584:17;22575:6;22531:71;:::i;:::-;22612:72;22680:2;22669:9;22665:18;22656:6;22612:72;:::i;:::-;22694;22762:2;22751:9;22747:18;22738:6;22694:72;:::i;:::-;22813:9;22807:4;22803:20;22798:2;22787:9;22783:18;22776:48;22841:76;22912:4;22903:6;22841:76;:::i;:::-;22833:84;;22284:640;;;;;;;:::o;22930:210::-;23017:4;23055:2;23044:9;23040:18;23032:26;;23068:65;23130:1;23119:9;23115:17;23106:6;23068:65;:::i;:::-;22930:210;;;;:::o;23146:313::-;23259:4;23297:2;23286:9;23282:18;23274:26;;23346:9;23340:4;23336:20;23332:1;23321:9;23317:17;23310:47;23374:78;23447:4;23438:6;23374:78;:::i;:::-;23366:86;;23146:313;;;;:::o;23465:419::-;23631:4;23669:2;23658:9;23654:18;23646:26;;23718:9;23712:4;23708:20;23704:1;23693:9;23689:17;23682:47;23746:131;23872:4;23746:131;:::i;:::-;23738:139;;23465:419;;;:::o;23890:::-;24056:4;24094:2;24083:9;24079:18;24071:26;;24143:9;24137:4;24133:20;24129:1;24118:9;24114:17;24107:47;24171:131;24297:4;24171:131;:::i;:::-;24163:139;;23890:419;;;:::o;24315:::-;24481:4;24519:2;24508:9;24504:18;24496:26;;24568:9;24562:4;24558:20;24554:1;24543:9;24539:17;24532:47;24596:131;24722:4;24596:131;:::i;:::-;24588:139;;24315:419;;;:::o;24740:::-;24906:4;24944:2;24933:9;24929:18;24921:26;;24993:9;24987:4;24983:20;24979:1;24968:9;24964:17;24957:47;25021:131;25147:4;25021:131;:::i;:::-;25013:139;;24740:419;;;:::o;25165:::-;25331:4;25369:2;25358:9;25354:18;25346:26;;25418:9;25412:4;25408:20;25404:1;25393:9;25389:17;25382:47;25446:131;25572:4;25446:131;:::i;:::-;25438:139;;25165:419;;;:::o;25590:::-;25756:4;25794:2;25783:9;25779:18;25771:26;;25843:9;25837:4;25833:20;25829:1;25818:9;25814:17;25807:47;25871:131;25997:4;25871:131;:::i;:::-;25863:139;;25590:419;;;:::o;26015:::-;26181:4;26219:2;26208:9;26204:18;26196:26;;26268:9;26262:4;26258:20;26254:1;26243:9;26239:17;26232:47;26296:131;26422:4;26296:131;:::i;:::-;26288:139;;26015:419;;;:::o;26440:::-;26606:4;26644:2;26633:9;26629:18;26621:26;;26693:9;26687:4;26683:20;26679:1;26668:9;26664:17;26657:47;26721:131;26847:4;26721:131;:::i;:::-;26713:139;;26440:419;;;:::o;26865:::-;27031:4;27069:2;27058:9;27054:18;27046:26;;27118:9;27112:4;27108:20;27104:1;27093:9;27089:17;27082:47;27146:131;27272:4;27146:131;:::i;:::-;27138:139;;26865:419;;;:::o;27290:::-;27456:4;27494:2;27483:9;27479:18;27471:26;;27543:9;27537:4;27533:20;27529:1;27518:9;27514:17;27507:47;27571:131;27697:4;27571:131;:::i;:::-;27563:139;;27290:419;;;:::o;27715:::-;27881:4;27919:2;27908:9;27904:18;27896:26;;27968:9;27962:4;27958:20;27954:1;27943:9;27939:17;27932:47;27996:131;28122:4;27996:131;:::i;:::-;27988:139;;27715:419;;;:::o;28140:::-;28306:4;28344:2;28333:9;28329:18;28321:26;;28393:9;28387:4;28383:20;28379:1;28368:9;28364:17;28357:47;28421:131;28547:4;28421:131;:::i;:::-;28413:139;;28140:419;;;:::o;28565:::-;28731:4;28769:2;28758:9;28754:18;28746:26;;28818:9;28812:4;28808:20;28804:1;28793:9;28789:17;28782:47;28846:131;28972:4;28846:131;:::i;:::-;28838:139;;28565:419;;;:::o;28990:::-;29156:4;29194:2;29183:9;29179:18;29171:26;;29243:9;29237:4;29233:20;29229:1;29218:9;29214:17;29207:47;29271:131;29397:4;29271:131;:::i;:::-;29263:139;;28990:419;;;:::o;29415:::-;29581:4;29619:2;29608:9;29604:18;29596:26;;29668:9;29662:4;29658:20;29654:1;29643:9;29639:17;29632:47;29696:131;29822:4;29696:131;:::i;:::-;29688:139;;29415:419;;;:::o;29840:::-;30006:4;30044:2;30033:9;30029:18;30021:26;;30093:9;30087:4;30083:20;30079:1;30068:9;30064:17;30057:47;30121:131;30247:4;30121:131;:::i;:::-;30113:139;;29840:419;;;:::o;30265:::-;30431:4;30469:2;30458:9;30454:18;30446:26;;30518:9;30512:4;30508:20;30504:1;30493:9;30489:17;30482:47;30546:131;30672:4;30546:131;:::i;:::-;30538:139;;30265:419;;;:::o;30690:::-;30856:4;30894:2;30883:9;30879:18;30871:26;;30943:9;30937:4;30933:20;30929:1;30918:9;30914:17;30907:47;30971:131;31097:4;30971:131;:::i;:::-;30963:139;;30690:419;;;:::o;31115:::-;31281:4;31319:2;31308:9;31304:18;31296:26;;31368:9;31362:4;31358:20;31354:1;31343:9;31339:17;31332:47;31396:131;31522:4;31396:131;:::i;:::-;31388:139;;31115:419;;;:::o;31540:::-;31706:4;31744:2;31733:9;31729:18;31721:26;;31793:9;31787:4;31783:20;31779:1;31768:9;31764:17;31757:47;31821:131;31947:4;31821:131;:::i;:::-;31813:139;;31540:419;;;:::o;31965:::-;32131:4;32169:2;32158:9;32154:18;32146:26;;32218:9;32212:4;32208:20;32204:1;32193:9;32189:17;32182:47;32246:131;32372:4;32246:131;:::i;:::-;32238:139;;31965:419;;;:::o;32390:::-;32556:4;32594:2;32583:9;32579:18;32571:26;;32643:9;32637:4;32633:20;32629:1;32618:9;32614:17;32607:47;32671:131;32797:4;32671:131;:::i;:::-;32663:139;;32390:419;;;:::o;32815:::-;32981:4;33019:2;33008:9;33004:18;32996:26;;33068:9;33062:4;33058:20;33054:1;33043:9;33039:17;33032:47;33096:131;33222:4;33096:131;:::i;:::-;33088:139;;32815:419;;;:::o;33240:::-;33406:4;33444:2;33433:9;33429:18;33421:26;;33493:9;33487:4;33483:20;33479:1;33468:9;33464:17;33457:47;33521:131;33647:4;33521:131;:::i;:::-;33513:139;;33240:419;;;:::o;33665:::-;33831:4;33869:2;33858:9;33854:18;33846:26;;33918:9;33912:4;33908:20;33904:1;33893:9;33889:17;33882:47;33946:131;34072:4;33946:131;:::i;:::-;33938:139;;33665:419;;;:::o;34090:::-;34256:4;34294:2;34283:9;34279:18;34271:26;;34343:9;34337:4;34333:20;34329:1;34318:9;34314:17;34307:47;34371:131;34497:4;34371:131;:::i;:::-;34363:139;;34090:419;;;:::o;34515:222::-;34608:4;34646:2;34635:9;34631:18;34623:26;;34659:71;34727:1;34716:9;34712:17;34703:6;34659:71;:::i;:::-;34515:222;;;;:::o;34743:129::-;34777:6;34804:20;;:::i;:::-;34794:30;;34833:33;34861:4;34853:6;34833:33;:::i;:::-;34743:129;;;:::o;34878:75::-;34911:6;34944:2;34938:9;34928:19;;34878:75;:::o;34959:307::-;35020:4;35110:18;35102:6;35099:30;35096:56;;;35132:18;;:::i;:::-;35096:56;35170:29;35192:6;35170:29;:::i;:::-;35162:37;;35254:4;35248;35244:15;35236:23;;34959:307;;;:::o;35272:308::-;35334:4;35424:18;35416:6;35413:30;35410:56;;;35446:18;;:::i;:::-;35410:56;35484:29;35506:6;35484:29;:::i;:::-;35476:37;;35568:4;35562;35558:15;35550:23;;35272:308;;;:::o;35586:141::-;35635:4;35658:3;35650:11;;35681:3;35678:1;35671:14;35715:4;35712:1;35702:18;35694:26;;35586:141;;;:::o;35733:98::-;35784:6;35818:5;35812:12;35802:22;;35733:98;;;:::o;35837:99::-;35889:6;35923:5;35917:12;35907:22;;35837:99;;;:::o;35942:168::-;36025:11;36059:6;36054:3;36047:19;36099:4;36094:3;36090:14;36075:29;;35942:168;;;;:::o;36116:147::-;36217:11;36254:3;36239:18;;36116:147;;;;:::o;36269:169::-;36353:11;36387:6;36382:3;36375:19;36427:4;36422:3;36418:14;36403:29;;36269:169;;;;:::o;36444:148::-;36546:11;36583:3;36568:18;;36444:148;;;;:::o;36598:305::-;36638:3;36657:20;36675:1;36657:20;:::i;:::-;36652:25;;36691:20;36709:1;36691:20;:::i;:::-;36686:25;;36845:1;36777:66;36773:74;36770:1;36767:81;36764:107;;;36851:18;;:::i;:::-;36764:107;36895:1;36892;36888:9;36881:16;;36598:305;;;;:::o;36909:185::-;36949:1;36966:20;36984:1;36966:20;:::i;:::-;36961:25;;37000:20;37018:1;37000:20;:::i;:::-;36995:25;;37039:1;37029:35;;37044:18;;:::i;:::-;37029:35;37086:1;37083;37079:9;37074:14;;36909:185;;;;:::o;37100:348::-;37140:7;37163:20;37181:1;37163:20;:::i;:::-;37158:25;;37197:20;37215:1;37197:20;:::i;:::-;37192:25;;37385:1;37317:66;37313:74;37310:1;37307:81;37302:1;37295:9;37288:17;37284:105;37281:131;;;37392:18;;:::i;:::-;37281:131;37440:1;37437;37433:9;37422:20;;37100:348;;;;:::o;37454:191::-;37494:4;37514:20;37532:1;37514:20;:::i;:::-;37509:25;;37548:20;37566:1;37548:20;:::i;:::-;37543:25;;37587:1;37584;37581:8;37578:34;;;37592:18;;:::i;:::-;37578:34;37637:1;37634;37630:9;37622:17;;37454:191;;;;:::o;37651:96::-;37688:7;37717:24;37735:5;37717:24;:::i;:::-;37706:35;;37651:96;;;:::o;37753:90::-;37787:7;37830:5;37823:13;37816:21;37805:32;;37753:90;;;:::o;37849:149::-;37885:7;37925:66;37918:5;37914:78;37903:89;;37849:149;;;:::o;38004:126::-;38041:7;38081:42;38074:5;38070:54;38059:65;;38004:126;;;:::o;38136:77::-;38173:7;38202:5;38191:16;;38136:77;;;:::o;38219:154::-;38303:6;38298:3;38293;38280:30;38365:1;38356:6;38351:3;38347:16;38340:27;38219:154;;;:::o;38379:307::-;38447:1;38457:113;38471:6;38468:1;38465:13;38457:113;;;38556:1;38551:3;38547:11;38541:18;38537:1;38532:3;38528:11;38521:39;38493:2;38490:1;38486:10;38481:15;;38457:113;;;38588:6;38585:1;38582:13;38579:101;;;38668:1;38659:6;38654:3;38650:16;38643:27;38579:101;38428:258;38379:307;;;:::o;38692:320::-;38736:6;38773:1;38767:4;38763:12;38753:22;;38820:1;38814:4;38810:12;38841:18;38831:81;;38897:4;38889:6;38885:17;38875:27;;38831:81;38959:2;38951:6;38948:14;38928:18;38925:38;38922:84;;;38978:18;;:::i;:::-;38922:84;38743:269;38692:320;;;:::o;39018:281::-;39101:27;39123:4;39101:27;:::i;:::-;39093:6;39089:40;39231:6;39219:10;39216:22;39195:18;39183:10;39180:34;39177:62;39174:88;;;39242:18;;:::i;:::-;39174:88;39282:10;39278:2;39271:22;39061:238;39018:281;;:::o;39305:233::-;39344:3;39367:24;39385:5;39367:24;:::i;:::-;39358:33;;39413:66;39406:5;39403:77;39400:103;;;39483:18;;:::i;:::-;39400:103;39530:1;39523:5;39519:13;39512:20;;39305:233;;;:::o;39544:176::-;39576:1;39593:20;39611:1;39593:20;:::i;:::-;39588:25;;39627:20;39645:1;39627:20;:::i;:::-;39622:25;;39666:1;39656:35;;39671:18;;:::i;:::-;39656:35;39712:1;39709;39705:9;39700:14;;39544:176;;;;:::o;39726:180::-;39774:77;39771:1;39764:88;39871:4;39868:1;39861:15;39895:4;39892:1;39885:15;39912:180;39960:77;39957:1;39950:88;40057:4;40054:1;40047:15;40081:4;40078:1;40071:15;40098:180;40146:77;40143:1;40136:88;40243:4;40240:1;40233:15;40267:4;40264:1;40257:15;40284:180;40332:77;40329:1;40322:88;40429:4;40426:1;40419:15;40453:4;40450:1;40443:15;40470:180;40518:77;40515:1;40508:88;40615:4;40612:1;40605:15;40639:4;40636:1;40629:15;40656:117;40765:1;40762;40755:12;40779:117;40888:1;40885;40878:12;40902:117;41011:1;41008;41001:12;41025:117;41134:1;41131;41124:12;41148:117;41257:1;41254;41247:12;41271:117;41380:1;41377;41370:12;41394:102;41435:6;41486:2;41482:7;41477:2;41470:5;41466:14;41462:28;41452:38;;41394:102;;;:::o;41502:221::-;41642:34;41638:1;41630:6;41626:14;41619:58;41711:4;41706:2;41698:6;41694:15;41687:29;41502:221;:::o;41729:225::-;41869:34;41865:1;41857:6;41853:14;41846:58;41938:8;41933:2;41925:6;41921:15;41914:33;41729:225;:::o;41960:229::-;42100:34;42096:1;42088:6;42084:14;42077:58;42169:12;42164:2;42156:6;42152:15;42145:37;41960:229;:::o;42195:178::-;42335:30;42331:1;42323:6;42319:14;42312:54;42195:178;:::o;42379:222::-;42519:34;42515:1;42507:6;42503:14;42496:58;42588:5;42583:2;42575:6;42571:15;42564:30;42379:222;:::o;42607:224::-;42747:34;42743:1;42735:6;42731:14;42724:58;42816:7;42811:2;42803:6;42799:15;42792:32;42607:224;:::o;42837:236::-;42977:34;42973:1;42965:6;42961:14;42954:58;43046:19;43041:2;43033:6;43029:15;43022:44;42837:236;:::o;43079:244::-;43219:34;43215:1;43207:6;43203:14;43196:58;43288:27;43283:2;43275:6;43271:15;43264:52;43079:244;:::o;43329:172::-;43469:24;43465:1;43457:6;43453:14;43446:48;43329:172;:::o;43507:223::-;43647:34;43643:1;43635:6;43631:14;43624:58;43716:6;43711:2;43703:6;43699:15;43692:31;43507:223;:::o;43736:230::-;43876:34;43872:1;43864:6;43860:14;43853:58;43945:13;43940:2;43932:6;43928:15;43921:38;43736:230;:::o;43972:225::-;44112:34;44108:1;44100:6;44096:14;44089:58;44181:8;44176:2;44168:6;44164:15;44157:33;43972:225;:::o;44203:182::-;44343:34;44339:1;44331:6;44327:14;44320:58;44203:182;:::o;44391:172::-;44531:24;44527:1;44519:6;44515:14;44508:48;44391:172;:::o;44569:234::-;44709:34;44705:1;44697:6;44693:14;44686:58;44778:17;44773:2;44765:6;44761:15;44754:42;44569:234;:::o;44809:176::-;44949:28;44945:1;44937:6;44933:14;44926:52;44809:176;:::o;44991:237::-;45131:34;45127:1;45119:6;45115:14;45108:58;45200:20;45195:2;45187:6;45183:15;45176:45;44991:237;:::o;45234:172::-;45374:24;45370:1;45362:6;45358:14;45351:48;45234:172;:::o;45412:221::-;45552:34;45548:1;45540:6;45536:14;45529:58;45621:4;45616:2;45608:6;45604:15;45597:29;45412:221;:::o;45639:114::-;;:::o;45759:238::-;45899:34;45895:1;45887:6;45883:14;45876:58;45968:21;45963:2;45955:6;45951:15;45944:46;45759:238;:::o;46003:220::-;46143:34;46139:1;46131:6;46127:14;46120:58;46212:3;46207:2;46199:6;46195:15;46188:28;46003:220;:::o;46229:227::-;46369:34;46365:1;46357:6;46353:14;46346:58;46438:10;46433:2;46425:6;46421:15;46414:35;46229:227;:::o;46462:233::-;46602:34;46598:1;46590:6;46586:14;46579:58;46671:16;46666:2;46658:6;46654:15;46647:41;46462:233;:::o;46701:173::-;46841:25;46837:1;46829:6;46825:14;46818:49;46701:173;:::o;46880:234::-;47020:34;47016:1;47008:6;47004:14;46997:58;47089:17;47084:2;47076:6;47072:15;47065:42;46880:234;:::o;47120:232::-;47260:34;47256:1;47248:6;47244:14;47237:58;47329:15;47324:2;47316:6;47312:15;47305:40;47120:232;:::o;47358:122::-;47431:24;47449:5;47431:24;:::i;:::-;47424:5;47421:35;47411:63;;47470:1;47467;47460:12;47411:63;47358:122;:::o;47486:116::-;47556:21;47571:5;47556:21;:::i;:::-;47549:5;47546:32;47536:60;;47592:1;47589;47582:12;47536:60;47486:116;:::o;47608:120::-;47680:23;47697:5;47680:23;:::i;:::-;47673:5;47670:34;47660:62;;47718:1;47715;47708:12;47660:62;47608:120;:::o;47734:122::-;47807:24;47825:5;47807:24;:::i;:::-;47800:5;47797:35;47787:63;;47846:1;47843;47836:12;47787:63;47734:122;:::o

Swarm Source

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