ETH Price: $2,274.13 (+0.07%)

Token

SkidCars (SKIDCAR)
 

Overview

Max Total Supply

227 SKIDCAR

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SKIDCAR
0x27066d336c9f25c2477cc5a319ab37ba5f5ca508
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:
SkidCars

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 2021-10-18
*/

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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

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

    bool private _paused;

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

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

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

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

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

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

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 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);
    }
}



/* 
                                                                         
                                                        dddddddd                 
                 kkkkkkkk             iiii              d::::::d                 
                 k::::::k            i::::i             d::::::d                 
                 k::::::k             iiii              d::::::d                 
                 k::::::k                               d:::::d                  
    ssssssssss    k:::::k    kkkkkkkiiiiiii     ddddddddd:::::d     ssssssssss   
  ss::::::::::s   k:::::k   k:::::k i:::::i   dd::::::::::::::d   ss::::::::::s  
ss:::::::::::::s  k:::::k  k:::::k   i::::i  d::::::::::::::::d ss:::::::::::::s 
s::::::ssss:::::s k:::::k k:::::k    i::::i d:::::::ddddd:::::d s::::::ssss:::::s
 s:::::s  ssssss  k::::::k:::::k     i::::i d::::::d    d:::::d  s:::::s  ssssss 
   s::::::s       k:::::::::::k      i::::i d:::::d     d:::::d    s::::::s      
      s::::::s    k:::::::::::k      i::::i d:::::d     d:::::d       s::::::s   
ssssss   s:::::s  k::::::k:::::k     i::::i d:::::d     d:::::d ssssss   s:::::s 
s:::::ssss::::::sk::::::k k:::::k   i::::::id::::::ddddd::::::dds:::::ssss::::::s
s::::::::::::::s k::::::k  k:::::k  i::::::i d:::::::::::::::::ds::::::::::::::s 
 s:::::::::::ss  k::::::k   k:::::k i::::::i  d:::::::::ddd::::d s:::::::::::ss  
  sssssssssss    kkkkkkkk    kkkkkkkiiiiiiii   ddddddddd   ddddd  sssssssssss    


░█████╗░░█████╗░██████╗░░██████╗
██╔══██╗██╔══██╗██╔══██╗██╔════╝
██║░░╚═╝███████║██████╔╝╚█████╗░
██║░░██╗██╔══██║██╔══██╗░╚═══██╗
╚█████╔╝██║░░██║██║░░██║██████╔╝
░╚════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░

13% drop (exclusive to current holders)

Website: https://skids.io
Discord: https://discord.gg/skidsNFT 
Twitter: https://twitter.com/SkidsNFT

*/


contract SkidCars is ERC721Pausable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint256 private constant _maxTokens = 604;
    uint256 private constant _maxMint = 1;
    
    address public _skidsContract = 0xCC4916b9a04D0AeC7A54279fce6A72251B3083e7; 

    uint256 public constant _price = 0; // FREE

    mapping (address => uint256) private _saleMints;

    bool private _saleActive = false;
    
    string public _prefixURI;

    constructor() public ERC721("SkidCars", "SKIDCAR") {
        _pause();
    }

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

    function setBaseURI(string memory _uri) public onlyOwner {
        _prefixURI = _uri;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function saleActive() public view returns (bool) {
        return _saleActive; 
    }

    function saleMinted(address addr) public view returns (uint256) {
        return _saleMints[addr]; 
    }

    function mintItems(uint256 amount, uint256 skidTokenID) public payable {
        // require that you own atleast one skid by checking the submitted token (this will be handled automatically in the web application) 
        IERC721 instance = IERC721(_skidsContract); 
        require(instance.ownerOf(skidTokenID) == msg.sender); 
        require(amount <= _maxMint);
        require(_saleActive);
        require(amount <= _maxMint); 
        uint256 totalMinted = _tokenIds.current();
        require(totalMinted + amount <= _maxTokens);
        require(_saleMints[msg.sender] + amount <= _maxMint); 
        for (uint256 i = 0; i < amount; i++) {
            _saleMints[msg.sender] += 1; 
            _mintItem(msg.sender);
        }
    }

    function _mintItem(address to) internal returns (uint256) {
        _tokenIds.increment();
        uint256 id = _tokenIds.current();
        _safeMint(to, id);
        return id;
    }


    function toggleSale() public onlyOwner {
        _saleActive = !_saleActive;
    }

    function toggleTransferPause() public onlyOwner {
        paused() ? _unpause() : _pause();
    }

    function reserve(uint256 quantity) public onlyOwner {
        for(uint i = _tokenIds.current(); i < quantity; i++) {
            if (i < _maxTokens) {
                _tokenIds.increment();
                _safeMint(msg.sender, i + 1);
            }
        }
    }


    // Allows minting(transfer from 0 address), but not transferring while paused() except from owner
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        if (!(from == address(0)) && !(from == owner())) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_prefixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_skidsContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"skidTokenID","type":"uint256"}],"name":"mintItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"saleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTransferPause","outputs":[],"stateMutability":"nonpayable","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"}]

608060405273cc4916b9a04d0aec7a54279fce6a72251b3083e7600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60006101000a81548160ff0219169083151502179055503480156200008157600080fd5b506040518060400160405280600881526020017f536b6964436172730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f534b49444341520000000000000000000000000000000000000000000000000081525081600090805190602001906200010692919062000310565b5080600190805190602001906200011f92919062000310565b5050506000600660006101000a81548160ff0219169083151502179055506200015d620001516200017360201b60201c565b6200017b60201b60201c565b6200016d6200024160201b60201c565b6200050a565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000251620002f960201b60201c565b1562000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b9062000415565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002e06200017360201b60201c565b604051620002ef9190620003f8565b60405180910390a1565b6000600660009054906101000a900460ff16905090565b8280546200031e906200047c565b90600052602060002090601f0160209004810192826200034257600085556200038e565b82601f106200035d57805160ff19168380011785556200038e565b828001600101855582156200038e579182015b828111156200038d57825182559160200191906001019062000370565b5b5090506200039d9190620003a1565b5090565b5b80821115620003bc576000816000905550600101620003a2565b5090565b620003cb8162000448565b82525050565b6000620003e060108362000437565b9150620003ed82620004e1565b602082019050919050565b60006020820190506200040f6000830184620003c0565b92915050565b600060208201905081810360008301526200043081620003d1565b9050919050565b600082825260208201905092915050565b600062000455826200045c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200049557607f821691505b60208210811415620004ac57620004ab620004b2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b613a8e806200051a6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec5780639752a0171161008a578063c87b56dd11610064578063c87b56dd146105b3578063e985e9c5146105f0578063ebf0ab801461062d578063f2fde38b1461066a576101b7565b80639752a0171461054a578063a22cb46514610561578063b88d4fde1461058a576101b7565b8063819b25ba116100c6578063819b25ba146104a05780638da5cb5b146104c957806391860f78146104f457806395d89b411461051f576101b7565b806370a0823114610435578063715018a6146104725780637d8966e414610489576101b7565b806323b872dd116101595780635c975abb116101335780635c975abb1461037757806362c8cc65146103a25780636352211e146103cd57806368428a1b1461040a576101b7565b806323b872dd146102fc57806342842e0e1461032557806355f804b31461034e576101b7565b8063095ea7b311610195578063095ea7b3146102615780630ca554791461028a57806318160ddd146102a6578063235b6ea1146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061291f565b610693565b6040516101f09190612e23565b60405180910390f35b34801561020557600080fd5b5061020e610775565b60405161021b9190612e3e565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906129c2565b610807565b6040516102589190612dbc565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906128df565b61088c565b005b6102a4600480360381019061029f91906129ef565b6109a4565b005b3480156102b257600080fd5b506102bb610bc6565b6040516102c891906130c0565b60405180910390f35b3480156102dd57600080fd5b506102e6610bd7565b6040516102f391906130c0565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e91906127c9565b610bdc565b005b34801561033157600080fd5b5061034c600480360381019061034791906127c9565b610c3c565b005b34801561035a57600080fd5b5061037560048036038101906103709190612979565b610c5c565b005b34801561038357600080fd5b5061038c610cf2565b6040516103999190612e23565b60405180910390f35b3480156103ae57600080fd5b506103b7610d09565b6040516103c49190612dbc565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef91906129c2565b610d2f565b6040516104019190612dbc565b60405180910390f35b34801561041657600080fd5b5061041f610de1565b60405161042c9190612e23565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061272f565b610df8565b60405161046991906130c0565b60405180910390f35b34801561047e57600080fd5b50610487610eb0565b005b34801561049557600080fd5b5061049e610f38565b005b3480156104ac57600080fd5b506104c760048036038101906104c291906129c2565b610fe0565b005b3480156104d557600080fd5b506104de6110b5565b6040516104eb9190612dbc565b60405180910390f35b34801561050057600080fd5b506105096110df565b6040516105169190612e3e565b60405180910390f35b34801561052b57600080fd5b5061053461116d565b6040516105419190612e3e565b60405180910390f35b34801561055657600080fd5b5061055f6111ff565b005b34801561056d57600080fd5b506105886004803603810190610583919061289f565b61129f565b005b34801561059657600080fd5b506105b160048036038101906105ac919061281c565b611420565b005b3480156105bf57600080fd5b506105da60048036038101906105d591906129c2565b611482565b6040516105e79190612e3e565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612789565b611529565b6040516106249190612e23565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f919061272f565b6115bd565b60405161066191906130c0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061272f565b611606565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076e575061076d826116fe565b5b9050919050565b60606000805461078490613316565b80601f01602080910402602001604051908101604052809291908181526020018280546107b090613316565b80156107fd5780601f106107d2576101008083540402835291602001916107fd565b820191906000526020600020905b8154815290600101906020018083116107e057829003601f168201915b5050505050905090565b600061081282611768565b610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890613000565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610d2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff90613080565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109276117d4565b73ffffffffffffffffffffffffffffffffffffffff1614806109565750610955816109506117d4565b611529565b5b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c90612f80565b60405180910390fd5b61099f83836117dc565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610a1b91906130c0565b60206040518083038186803b158015610a3357600080fd5b505afa158015610a47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6b919061275c565b73ffffffffffffffffffffffffffffffffffffffff1614610a8b57600080fd5b6001831115610a9957600080fd5b600a60009054906101000a900460ff16610ab257600080fd5b6001831115610ac057600080fd5b6000610acc6007611895565b905061025c8482610add91906131a5565b1115610ae857600080fd5b600184600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3591906131a5565b1115610b4057600080fd5b60005b84811015610bbf576001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b9b91906131a5565b92505081905550610bab336118a3565b508080610bb790613379565b915050610b43565b5050505050565b6000610bd26007611895565b905090565b600081565b610bed610be76117d4565b826118d0565b610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c23906130a0565b60405180910390fd5b610c378383836119ae565b505050565b610c5783838360405180602001604052806000815250611420565b505050565b610c646117d4565b73ffffffffffffffffffffffffffffffffffffffff16610c826110b5565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613020565b60405180910390fd5b80600b9080519060200190610cee92919061252e565b5050565b6000600660009054906101000a900460ff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90612fc0565b60405180910390fd5b80915050919050565b6000600a60009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612fa0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eb86117d4565b73ffffffffffffffffffffffffffffffffffffffff16610ed66110b5565b73ffffffffffffffffffffffffffffffffffffffff1614610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390613020565b60405180910390fd5b610f366000611c0a565b565b610f406117d4565b73ffffffffffffffffffffffffffffffffffffffff16610f5e6110b5565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90613020565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610fe86117d4565b73ffffffffffffffffffffffffffffffffffffffff166110066110b5565b73ffffffffffffffffffffffffffffffffffffffff161461105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390613020565b60405180910390fd5b60006110686007611895565b90505b818110156110b15761025c81101561109e576110876007611cd0565b61109d3360018361109891906131a5565b611ce6565b5b80806110a990613379565b91505061106b565b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b80546110ec90613316565b80601f016020809104026020016040519081016040528092919081815260200182805461111890613316565b80156111655780601f1061113a57610100808354040283529160200191611165565b820191906000526020600020905b81548152906001019060200180831161114857829003601f168201915b505050505081565b60606001805461117c90613316565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890613316565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b5050505050905090565b6112076117d4565b73ffffffffffffffffffffffffffffffffffffffff166112256110b5565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613020565b60405180910390fd5b611283610cf2565b6112945761128f611d04565b61129d565b61129c611da7565b5b565b6112a76117d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90612f20565b60405180910390fd5b80600560006113226117d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113cf6117d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114149190612e23565b60405180910390a35050565b61143161142b6117d4565b836118d0565b611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906130a0565b60405180910390fd5b61147c84848484611e49565b50505050565b606061148d82611768565b6114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613060565b60405180910390fd5b60006114d6611ea5565b905060008151116114f65760405180602001604052806000815250611521565b8061150084611f37565b604051602001611511929190612d98565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61160e6117d4565b73ffffffffffffffffffffffffffffffffffffffff1661162c6110b5565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613020565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612ec0565b60405180910390fd5b6116fb81611c0a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184f83610d2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006118af6007611cd0565b60006118bb6007611895565b90506118c78382611ce6565b80915050919050565b60006118db82611768565b61191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190612f40565b60405180910390fd5b600061192583610d2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061199457508373ffffffffffffffffffffffffffffffffffffffff1661197c84610807565b73ffffffffffffffffffffffffffffffffffffffff16145b806119a557506119a48185611529565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119ce82610d2f565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613040565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90612f00565b60405180910390fd5b611a9f838383612098565b611aaa6000826117dc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611afa919061322c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5191906131a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b611d0082826040518060200160405280600081525061215b565b5050565b611d0c610cf2565b15611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390612f60565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d906117d4565b604051611d9d9190612dbc565b60405180910390a1565b611daf610cf2565b611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590612e80565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611e326117d4565b604051611e3f9190612dbc565b60405180910390a1565b611e548484846119ae565b611e60848484846121b6565b611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690612ea0565b60405180910390fd5b50505050565b6060600b8054611eb490613316565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee090613316565b8015611f2d5780601f10611f0257610100808354040283529160200191611f2d565b820191906000526020600020905b815481529060010190602001808311611f1057829003601f168201915b5050505050905090565b60606000821415611f7f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612093565b600082905060005b60008214611fb1578080611f9a90613379565b915050600a82611faa91906131fb565b9150611f87565b60008167ffffffffffffffff811115611fcd57611fcc6134af565b5b6040519080825280601f01601f191660200182016040528015611fff5781602001600182028036833780820191505090505b5090505b6000851461208c57600182612018919061322c565b9150600a8561202791906133c2565b603061203391906131a5565b60f81b81838151811061204957612048613480565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208591906131fb565b9450612003565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561210857506120d86110b5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561215657612115610cf2565b15612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90612e60565b60405180910390fd5b5b505050565b612165838361234d565b61217260008484846121b6565b6121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a890612ea0565b60405180910390fd5b505050565b60006121d78473ffffffffffffffffffffffffffffffffffffffff1661251b565b15612340578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122006117d4565b8786866040518563ffffffff1660e01b81526004016122229493929190612dd7565b602060405180830381600087803b15801561223c57600080fd5b505af192505050801561226d57506040513d601f19601f8201168201806040525081019061226a919061294c565b60015b6122f0573d806000811461229d576040519150601f19603f3d011682016040523d82523d6000602084013e6122a2565b606091505b506000815114156122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90612ea0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612345565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b490612fe0565b60405180910390fd5b6123c681611768565b15612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd90612ee0565b60405180910390fd5b61241260008383612098565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246291906131a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461253a90613316565b90600052602060002090601f01602090048101928261255c57600085556125a3565b82601f1061257557805160ff19168380011785556125a3565b828001600101855582156125a3579182015b828111156125a2578251825591602001919060010190612587565b5b5090506125b091906125b4565b5090565b5b808211156125cd5760008160009055506001016125b5565b5090565b60006125e46125df84613100565b6130db565b905082815260208101848484011115612600576125ff6134e3565b5b61260b8482856132d4565b509392505050565b600061262661262184613131565b6130db565b905082815260208101848484011115612642576126416134e3565b5b61264d8482856132d4565b509392505050565b600081359050612664816139fc565b92915050565b600081519050612679816139fc565b92915050565b60008135905061268e81613a13565b92915050565b6000813590506126a381613a2a565b92915050565b6000815190506126b881613a2a565b92915050565b600082601f8301126126d3576126d26134de565b5b81356126e38482602086016125d1565b91505092915050565b600082601f830112612701576127006134de565b5b8135612711848260208601612613565b91505092915050565b60008135905061272981613a41565b92915050565b600060208284031215612745576127446134ed565b5b600061275384828501612655565b91505092915050565b600060208284031215612772576127716134ed565b5b60006127808482850161266a565b91505092915050565b600080604083850312156127a05761279f6134ed565b5b60006127ae85828601612655565b92505060206127bf85828601612655565b9150509250929050565b6000806000606084860312156127e2576127e16134ed565b5b60006127f086828701612655565b935050602061280186828701612655565b92505060406128128682870161271a565b9150509250925092565b60008060008060808587031215612836576128356134ed565b5b600061284487828801612655565b945050602061285587828801612655565b93505060406128668782880161271a565b925050606085013567ffffffffffffffff811115612887576128866134e8565b5b612893878288016126be565b91505092959194509250565b600080604083850312156128b6576128b56134ed565b5b60006128c485828601612655565b92505060206128d58582860161267f565b9150509250929050565b600080604083850312156128f6576128f56134ed565b5b600061290485828601612655565b92505060206129158582860161271a565b9150509250929050565b600060208284031215612935576129346134ed565b5b600061294384828501612694565b91505092915050565b600060208284031215612962576129616134ed565b5b6000612970848285016126a9565b91505092915050565b60006020828403121561298f5761298e6134ed565b5b600082013567ffffffffffffffff8111156129ad576129ac6134e8565b5b6129b9848285016126ec565b91505092915050565b6000602082840312156129d8576129d76134ed565b5b60006129e68482850161271a565b91505092915050565b60008060408385031215612a0657612a056134ed565b5b6000612a148582860161271a565b9250506020612a258582860161271a565b9150509250929050565b612a3881613260565b82525050565b612a4781613272565b82525050565b6000612a5882613162565b612a628185613178565b9350612a728185602086016132e3565b612a7b816134f2565b840191505092915050565b6000612a918261316d565b612a9b8185613189565b9350612aab8185602086016132e3565b612ab4816134f2565b840191505092915050565b6000612aca8261316d565b612ad4818561319a565b9350612ae48185602086016132e3565b80840191505092915050565b6000612afd602b83613189565b9150612b0882613503565b604082019050919050565b6000612b20601483613189565b9150612b2b82613552565b602082019050919050565b6000612b43603283613189565b9150612b4e8261357b565b604082019050919050565b6000612b66602683613189565b9150612b71826135ca565b604082019050919050565b6000612b89601c83613189565b9150612b9482613619565b602082019050919050565b6000612bac602483613189565b9150612bb782613642565b604082019050919050565b6000612bcf601983613189565b9150612bda82613691565b602082019050919050565b6000612bf2602c83613189565b9150612bfd826136ba565b604082019050919050565b6000612c15601083613189565b9150612c2082613709565b602082019050919050565b6000612c38603883613189565b9150612c4382613732565b604082019050919050565b6000612c5b602a83613189565b9150612c6682613781565b604082019050919050565b6000612c7e602983613189565b9150612c89826137d0565b604082019050919050565b6000612ca1602083613189565b9150612cac8261381f565b602082019050919050565b6000612cc4602c83613189565b9150612ccf82613848565b604082019050919050565b6000612ce7602083613189565b9150612cf282613897565b602082019050919050565b6000612d0a602983613189565b9150612d15826138c0565b604082019050919050565b6000612d2d602f83613189565b9150612d388261390f565b604082019050919050565b6000612d50602183613189565b9150612d5b8261395e565b604082019050919050565b6000612d73603183613189565b9150612d7e826139ad565b604082019050919050565b612d92816132ca565b82525050565b6000612da48285612abf565b9150612db08284612abf565b91508190509392505050565b6000602082019050612dd16000830184612a2f565b92915050565b6000608082019050612dec6000830187612a2f565b612df96020830186612a2f565b612e066040830185612d89565b8181036060830152612e188184612a4d565b905095945050505050565b6000602082019050612e386000830184612a3e565b92915050565b60006020820190508181036000830152612e588184612a86565b905092915050565b60006020820190508181036000830152612e7981612af0565b9050919050565b60006020820190508181036000830152612e9981612b13565b9050919050565b60006020820190508181036000830152612eb981612b36565b9050919050565b60006020820190508181036000830152612ed981612b59565b9050919050565b60006020820190508181036000830152612ef981612b7c565b9050919050565b60006020820190508181036000830152612f1981612b9f565b9050919050565b60006020820190508181036000830152612f3981612bc2565b9050919050565b60006020820190508181036000830152612f5981612be5565b9050919050565b60006020820190508181036000830152612f7981612c08565b9050919050565b60006020820190508181036000830152612f9981612c2b565b9050919050565b60006020820190508181036000830152612fb981612c4e565b9050919050565b60006020820190508181036000830152612fd981612c71565b9050919050565b60006020820190508181036000830152612ff981612c94565b9050919050565b6000602082019050818103600083015261301981612cb7565b9050919050565b6000602082019050818103600083015261303981612cda565b9050919050565b6000602082019050818103600083015261305981612cfd565b9050919050565b6000602082019050818103600083015261307981612d20565b9050919050565b6000602082019050818103600083015261309981612d43565b9050919050565b600060208201905081810360008301526130b981612d66565b9050919050565b60006020820190506130d56000830184612d89565b92915050565b60006130e56130f6565b90506130f18282613348565b919050565b6000604051905090565b600067ffffffffffffffff82111561311b5761311a6134af565b5b613124826134f2565b9050602081019050919050565b600067ffffffffffffffff82111561314c5761314b6134af565b5b613155826134f2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131b0826132ca565b91506131bb836132ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131f0576131ef6133f3565b5b828201905092915050565b6000613206826132ca565b9150613211836132ca565b92508261322157613220613422565b5b828204905092915050565b6000613237826132ca565b9150613242836132ca565b925082821015613255576132546133f3565b5b828203905092915050565b600061326b826132aa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133015780820151818401526020810190506132e6565b83811115613310576000848401525b50505050565b6000600282049050600182168061332e57607f821691505b6020821081141561334257613341613451565b5b50919050565b613351826134f2565b810181811067ffffffffffffffff821117156133705761336f6134af565b5b80604052505050565b6000613384826132ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133b7576133b66133f3565b5b600182019050919050565b60006133cd826132ca565b91506133d8836132ca565b9250826133e8576133e7613422565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613a0581613260565b8114613a1057600080fd5b50565b613a1c81613272565b8114613a2757600080fd5b50565b613a338161327e565b8114613a3e57600080fd5b50565b613a4a816132ca565b8114613a5557600080fd5b5056fea2646970667358221220e6119281d1ceb972a07382afef77593ddf971189cb3a69bd2c8a00c60d4f783864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec5780639752a0171161008a578063c87b56dd11610064578063c87b56dd146105b3578063e985e9c5146105f0578063ebf0ab801461062d578063f2fde38b1461066a576101b7565b80639752a0171461054a578063a22cb46514610561578063b88d4fde1461058a576101b7565b8063819b25ba116100c6578063819b25ba146104a05780638da5cb5b146104c957806391860f78146104f457806395d89b411461051f576101b7565b806370a0823114610435578063715018a6146104725780637d8966e414610489576101b7565b806323b872dd116101595780635c975abb116101335780635c975abb1461037757806362c8cc65146103a25780636352211e146103cd57806368428a1b1461040a576101b7565b806323b872dd146102fc57806342842e0e1461032557806355f804b31461034e576101b7565b8063095ea7b311610195578063095ea7b3146102615780630ca554791461028a57806318160ddd146102a6578063235b6ea1146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061291f565b610693565b6040516101f09190612e23565b60405180910390f35b34801561020557600080fd5b5061020e610775565b60405161021b9190612e3e565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906129c2565b610807565b6040516102589190612dbc565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906128df565b61088c565b005b6102a4600480360381019061029f91906129ef565b6109a4565b005b3480156102b257600080fd5b506102bb610bc6565b6040516102c891906130c0565b60405180910390f35b3480156102dd57600080fd5b506102e6610bd7565b6040516102f391906130c0565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e91906127c9565b610bdc565b005b34801561033157600080fd5b5061034c600480360381019061034791906127c9565b610c3c565b005b34801561035a57600080fd5b5061037560048036038101906103709190612979565b610c5c565b005b34801561038357600080fd5b5061038c610cf2565b6040516103999190612e23565b60405180910390f35b3480156103ae57600080fd5b506103b7610d09565b6040516103c49190612dbc565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef91906129c2565b610d2f565b6040516104019190612dbc565b60405180910390f35b34801561041657600080fd5b5061041f610de1565b60405161042c9190612e23565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061272f565b610df8565b60405161046991906130c0565b60405180910390f35b34801561047e57600080fd5b50610487610eb0565b005b34801561049557600080fd5b5061049e610f38565b005b3480156104ac57600080fd5b506104c760048036038101906104c291906129c2565b610fe0565b005b3480156104d557600080fd5b506104de6110b5565b6040516104eb9190612dbc565b60405180910390f35b34801561050057600080fd5b506105096110df565b6040516105169190612e3e565b60405180910390f35b34801561052b57600080fd5b5061053461116d565b6040516105419190612e3e565b60405180910390f35b34801561055657600080fd5b5061055f6111ff565b005b34801561056d57600080fd5b506105886004803603810190610583919061289f565b61129f565b005b34801561059657600080fd5b506105b160048036038101906105ac919061281c565b611420565b005b3480156105bf57600080fd5b506105da60048036038101906105d591906129c2565b611482565b6040516105e79190612e3e565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612789565b611529565b6040516106249190612e23565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f919061272f565b6115bd565b60405161066191906130c0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061272f565b611606565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076e575061076d826116fe565b5b9050919050565b60606000805461078490613316565b80601f01602080910402602001604051908101604052809291908181526020018280546107b090613316565b80156107fd5780601f106107d2576101008083540402835291602001916107fd565b820191906000526020600020905b8154815290600101906020018083116107e057829003601f168201915b5050505050905090565b600061081282611768565b610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890613000565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610d2f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ff90613080565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109276117d4565b73ffffffffffffffffffffffffffffffffffffffff1614806109565750610955816109506117d4565b611529565b5b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c90612f80565b60405180910390fd5b61099f83836117dc565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610a1b91906130c0565b60206040518083038186803b158015610a3357600080fd5b505afa158015610a47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6b919061275c565b73ffffffffffffffffffffffffffffffffffffffff1614610a8b57600080fd5b6001831115610a9957600080fd5b600a60009054906101000a900460ff16610ab257600080fd5b6001831115610ac057600080fd5b6000610acc6007611895565b905061025c8482610add91906131a5565b1115610ae857600080fd5b600184600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b3591906131a5565b1115610b4057600080fd5b60005b84811015610bbf576001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b9b91906131a5565b92505081905550610bab336118a3565b508080610bb790613379565b915050610b43565b5050505050565b6000610bd26007611895565b905090565b600081565b610bed610be76117d4565b826118d0565b610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c23906130a0565b60405180910390fd5b610c378383836119ae565b505050565b610c5783838360405180602001604052806000815250611420565b505050565b610c646117d4565b73ffffffffffffffffffffffffffffffffffffffff16610c826110b5565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613020565b60405180910390fd5b80600b9080519060200190610cee92919061252e565b5050565b6000600660009054906101000a900460ff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90612fc0565b60405180910390fd5b80915050919050565b6000600a60009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612fa0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eb86117d4565b73ffffffffffffffffffffffffffffffffffffffff16610ed66110b5565b73ffffffffffffffffffffffffffffffffffffffff1614610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390613020565b60405180910390fd5b610f366000611c0a565b565b610f406117d4565b73ffffffffffffffffffffffffffffffffffffffff16610f5e6110b5565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90613020565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b610fe86117d4565b73ffffffffffffffffffffffffffffffffffffffff166110066110b5565b73ffffffffffffffffffffffffffffffffffffffff161461105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390613020565b60405180910390fd5b60006110686007611895565b90505b818110156110b15761025c81101561109e576110876007611cd0565b61109d3360018361109891906131a5565b611ce6565b5b80806110a990613379565b91505061106b565b5050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b80546110ec90613316565b80601f016020809104026020016040519081016040528092919081815260200182805461111890613316565b80156111655780601f1061113a57610100808354040283529160200191611165565b820191906000526020600020905b81548152906001019060200180831161114857829003601f168201915b505050505081565b60606001805461117c90613316565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890613316565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b5050505050905090565b6112076117d4565b73ffffffffffffffffffffffffffffffffffffffff166112256110b5565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613020565b60405180910390fd5b611283610cf2565b6112945761128f611d04565b61129d565b61129c611da7565b5b565b6112a76117d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90612f20565b60405180910390fd5b80600560006113226117d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113cf6117d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114149190612e23565b60405180910390a35050565b61143161142b6117d4565b836118d0565b611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906130a0565b60405180910390fd5b61147c84848484611e49565b50505050565b606061148d82611768565b6114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613060565b60405180910390fd5b60006114d6611ea5565b905060008151116114f65760405180602001604052806000815250611521565b8061150084611f37565b604051602001611511929190612d98565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61160e6117d4565b73ffffffffffffffffffffffffffffffffffffffff1661162c6110b5565b73ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990613020565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612ec0565b60405180910390fd5b6116fb81611c0a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184f83610d2f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006118af6007611cd0565b60006118bb6007611895565b90506118c78382611ce6565b80915050919050565b60006118db82611768565b61191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190612f40565b60405180910390fd5b600061192583610d2f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061199457508373ffffffffffffffffffffffffffffffffffffffff1661197c84610807565b73ffffffffffffffffffffffffffffffffffffffff16145b806119a557506119a48185611529565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119ce82610d2f565b73ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90613040565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90612f00565b60405180910390fd5b611a9f838383612098565b611aaa6000826117dc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611afa919061322c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5191906131a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b611d0082826040518060200160405280600081525061215b565b5050565b611d0c610cf2565b15611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390612f60565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d906117d4565b604051611d9d9190612dbc565b60405180910390a1565b611daf610cf2565b611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590612e80565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611e326117d4565b604051611e3f9190612dbc565b60405180910390a1565b611e548484846119ae565b611e60848484846121b6565b611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9690612ea0565b60405180910390fd5b50505050565b6060600b8054611eb490613316565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee090613316565b8015611f2d5780601f10611f0257610100808354040283529160200191611f2d565b820191906000526020600020905b815481529060010190602001808311611f1057829003601f168201915b5050505050905090565b60606000821415611f7f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612093565b600082905060005b60008214611fb1578080611f9a90613379565b915050600a82611faa91906131fb565b9150611f87565b60008167ffffffffffffffff811115611fcd57611fcc6134af565b5b6040519080825280601f01601f191660200182016040528015611fff5781602001600182028036833780820191505090505b5090505b6000851461208c57600182612018919061322c565b9150600a8561202791906133c2565b603061203391906131a5565b60f81b81838151811061204957612048613480565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208591906131fb565b9450612003565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561210857506120d86110b5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561215657612115610cf2565b15612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90612e60565b60405180910390fd5b5b505050565b612165838361234d565b61217260008484846121b6565b6121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a890612ea0565b60405180910390fd5b505050565b60006121d78473ffffffffffffffffffffffffffffffffffffffff1661251b565b15612340578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122006117d4565b8786866040518563ffffffff1660e01b81526004016122229493929190612dd7565b602060405180830381600087803b15801561223c57600080fd5b505af192505050801561226d57506040513d601f19601f8201168201806040525081019061226a919061294c565b60015b6122f0573d806000811461229d576040519150601f19603f3d011682016040523d82523d6000602084013e6122a2565b606091505b506000815114156122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df90612ea0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612345565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b490612fe0565b60405180910390fd5b6123c681611768565b15612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd90612ee0565b60405180910390fd5b61241260008383612098565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461246291906131a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461253a90613316565b90600052602060002090601f01602090048101928261255c57600085556125a3565b82601f1061257557805160ff19168380011785556125a3565b828001600101855582156125a3579182015b828111156125a2578251825591602001919060010190612587565b5b5090506125b091906125b4565b5090565b5b808211156125cd5760008160009055506001016125b5565b5090565b60006125e46125df84613100565b6130db565b905082815260208101848484011115612600576125ff6134e3565b5b61260b8482856132d4565b509392505050565b600061262661262184613131565b6130db565b905082815260208101848484011115612642576126416134e3565b5b61264d8482856132d4565b509392505050565b600081359050612664816139fc565b92915050565b600081519050612679816139fc565b92915050565b60008135905061268e81613a13565b92915050565b6000813590506126a381613a2a565b92915050565b6000815190506126b881613a2a565b92915050565b600082601f8301126126d3576126d26134de565b5b81356126e38482602086016125d1565b91505092915050565b600082601f830112612701576127006134de565b5b8135612711848260208601612613565b91505092915050565b60008135905061272981613a41565b92915050565b600060208284031215612745576127446134ed565b5b600061275384828501612655565b91505092915050565b600060208284031215612772576127716134ed565b5b60006127808482850161266a565b91505092915050565b600080604083850312156127a05761279f6134ed565b5b60006127ae85828601612655565b92505060206127bf85828601612655565b9150509250929050565b6000806000606084860312156127e2576127e16134ed565b5b60006127f086828701612655565b935050602061280186828701612655565b92505060406128128682870161271a565b9150509250925092565b60008060008060808587031215612836576128356134ed565b5b600061284487828801612655565b945050602061285587828801612655565b93505060406128668782880161271a565b925050606085013567ffffffffffffffff811115612887576128866134e8565b5b612893878288016126be565b91505092959194509250565b600080604083850312156128b6576128b56134ed565b5b60006128c485828601612655565b92505060206128d58582860161267f565b9150509250929050565b600080604083850312156128f6576128f56134ed565b5b600061290485828601612655565b92505060206129158582860161271a565b9150509250929050565b600060208284031215612935576129346134ed565b5b600061294384828501612694565b91505092915050565b600060208284031215612962576129616134ed565b5b6000612970848285016126a9565b91505092915050565b60006020828403121561298f5761298e6134ed565b5b600082013567ffffffffffffffff8111156129ad576129ac6134e8565b5b6129b9848285016126ec565b91505092915050565b6000602082840312156129d8576129d76134ed565b5b60006129e68482850161271a565b91505092915050565b60008060408385031215612a0657612a056134ed565b5b6000612a148582860161271a565b9250506020612a258582860161271a565b9150509250929050565b612a3881613260565b82525050565b612a4781613272565b82525050565b6000612a5882613162565b612a628185613178565b9350612a728185602086016132e3565b612a7b816134f2565b840191505092915050565b6000612a918261316d565b612a9b8185613189565b9350612aab8185602086016132e3565b612ab4816134f2565b840191505092915050565b6000612aca8261316d565b612ad4818561319a565b9350612ae48185602086016132e3565b80840191505092915050565b6000612afd602b83613189565b9150612b0882613503565b604082019050919050565b6000612b20601483613189565b9150612b2b82613552565b602082019050919050565b6000612b43603283613189565b9150612b4e8261357b565b604082019050919050565b6000612b66602683613189565b9150612b71826135ca565b604082019050919050565b6000612b89601c83613189565b9150612b9482613619565b602082019050919050565b6000612bac602483613189565b9150612bb782613642565b604082019050919050565b6000612bcf601983613189565b9150612bda82613691565b602082019050919050565b6000612bf2602c83613189565b9150612bfd826136ba565b604082019050919050565b6000612c15601083613189565b9150612c2082613709565b602082019050919050565b6000612c38603883613189565b9150612c4382613732565b604082019050919050565b6000612c5b602a83613189565b9150612c6682613781565b604082019050919050565b6000612c7e602983613189565b9150612c89826137d0565b604082019050919050565b6000612ca1602083613189565b9150612cac8261381f565b602082019050919050565b6000612cc4602c83613189565b9150612ccf82613848565b604082019050919050565b6000612ce7602083613189565b9150612cf282613897565b602082019050919050565b6000612d0a602983613189565b9150612d15826138c0565b604082019050919050565b6000612d2d602f83613189565b9150612d388261390f565b604082019050919050565b6000612d50602183613189565b9150612d5b8261395e565b604082019050919050565b6000612d73603183613189565b9150612d7e826139ad565b604082019050919050565b612d92816132ca565b82525050565b6000612da48285612abf565b9150612db08284612abf565b91508190509392505050565b6000602082019050612dd16000830184612a2f565b92915050565b6000608082019050612dec6000830187612a2f565b612df96020830186612a2f565b612e066040830185612d89565b8181036060830152612e188184612a4d565b905095945050505050565b6000602082019050612e386000830184612a3e565b92915050565b60006020820190508181036000830152612e588184612a86565b905092915050565b60006020820190508181036000830152612e7981612af0565b9050919050565b60006020820190508181036000830152612e9981612b13565b9050919050565b60006020820190508181036000830152612eb981612b36565b9050919050565b60006020820190508181036000830152612ed981612b59565b9050919050565b60006020820190508181036000830152612ef981612b7c565b9050919050565b60006020820190508181036000830152612f1981612b9f565b9050919050565b60006020820190508181036000830152612f3981612bc2565b9050919050565b60006020820190508181036000830152612f5981612be5565b9050919050565b60006020820190508181036000830152612f7981612c08565b9050919050565b60006020820190508181036000830152612f9981612c2b565b9050919050565b60006020820190508181036000830152612fb981612c4e565b9050919050565b60006020820190508181036000830152612fd981612c71565b9050919050565b60006020820190508181036000830152612ff981612c94565b9050919050565b6000602082019050818103600083015261301981612cb7565b9050919050565b6000602082019050818103600083015261303981612cda565b9050919050565b6000602082019050818103600083015261305981612cfd565b9050919050565b6000602082019050818103600083015261307981612d20565b9050919050565b6000602082019050818103600083015261309981612d43565b9050919050565b600060208201905081810360008301526130b981612d66565b9050919050565b60006020820190506130d56000830184612d89565b92915050565b60006130e56130f6565b90506130f18282613348565b919050565b6000604051905090565b600067ffffffffffffffff82111561311b5761311a6134af565b5b613124826134f2565b9050602081019050919050565b600067ffffffffffffffff82111561314c5761314b6134af565b5b613155826134f2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131b0826132ca565b91506131bb836132ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131f0576131ef6133f3565b5b828201905092915050565b6000613206826132ca565b9150613211836132ca565b92508261322157613220613422565b5b828204905092915050565b6000613237826132ca565b9150613242836132ca565b925082821015613255576132546133f3565b5b828203905092915050565b600061326b826132aa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133015780820151818401526020810190506132e6565b83811115613310576000848401525b50505050565b6000600282049050600182168061332e57607f821691505b6020821081141561334257613341613451565b5b50919050565b613351826134f2565b810181811067ffffffffffffffff821117156133705761336f6134af565b5b80604052505050565b6000613384826132ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133b7576133b66133f3565b5b600182019050919050565b60006133cd826132ca565b91506133d8836132ca565b9250826133e8576133e7613422565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613a0581613260565b8114613a1057600080fd5b50565b613a1c81613272565b8114613a2757600080fd5b50565b613a338161327e565b8114613a3e57600080fd5b50565b613a4a816132ca565b8114613a5557600080fd5b5056fea2646970667358221220e6119281d1ceb972a07382afef77593ddf971189cb3a69bd2c8a00c60d4f783864736f6c63430008070033

Deployed Bytecode Sourcemap

40443:2958:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19619:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20564:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22123:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21646:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41559:756;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41243:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40760:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23013:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23423:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41142:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32729:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40676:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20258:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41349:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19988:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37567:94;;;;;;;;;;;;;:::i;:::-;;42522:84;;;;;;;;;;;;;:::i;:::-;;42721:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36916:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40912:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20733:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42614:99;;;;;;;;;;;;;:::i;:::-;;22416:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23679:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20908:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22782:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41444:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37816:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19619:305;19721:4;19773:25;19758:40;;;:11;:40;;;;:105;;;;19830:33;19815:48;;;:11;:48;;;;19758:105;:158;;;;19880:36;19904:11;19880:23;:36::i;:::-;19758:158;19738:178;;19619:305;;;:::o;20564:100::-;20618:13;20651:5;20644:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20564:100;:::o;22123:221::-;22199:7;22227:16;22235:7;22227;:16::i;:::-;22219:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22312:15;:24;22328:7;22312:24;;;;;;;;;;;;;;;;;;;;;22305:31;;22123:221;;;:::o;21646:411::-;21727:13;21743:23;21758:7;21743:14;:23::i;:::-;21727:39;;21791:5;21785:11;;:2;:11;;;;21777:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21885:5;21869:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21894:37;21911:5;21918:12;:10;:12::i;:::-;21894:16;:37::i;:::-;21869:62;21847:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22028:21;22037:2;22041:7;22028:8;:21::i;:::-;21716:341;21646:411;;:::o;41559:756::-;41784:16;41811:14;;;;;;;;;;;41784:42;;41879:10;41846:43;;:8;:16;;;41863:11;41846:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;;;41838:52;;;;;;40662:1;41910:6;:18;;41902:27;;;;;;41948:11;;;;;;;;;;;41940:20;;;;;;40662:1;41979:6;:18;;41971:27;;;;;;42010:19;42032;:9;:17;:19::i;:::-;42010:41;;40616:3;42084:6;42070:11;:20;;;;:::i;:::-;:34;;42062:43;;;;;;40662:1;42149:6;42124:10;:22;42135:10;42124:22;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:43;;42116:52;;;;;;42185:9;42180:128;42204:6;42200:1;:10;42180:128;;;42258:1;42232:10;:22;42243:10;42232:22;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;42275:21;42285:10;42275:9;:21::i;:::-;;42212:3;;;;;:::i;:::-;;;;42180:128;;;;41630:685;;41559:756;;:::o;41243:98::-;41287:7;41314:19;:9;:17;:19::i;:::-;41307:26;;41243:98;:::o;40760:34::-;40793:1;40760:34;:::o;23013:339::-;23208:41;23227:12;:10;:12::i;:::-;23241:7;23208:18;:41::i;:::-;23200:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23316:28;23326:4;23332:2;23336:7;23316:9;:28::i;:::-;23013:339;;;:::o;23423:185::-;23561:39;23578:4;23584:2;23588:7;23561:39;;;;;;;;;;;;:16;:39::i;:::-;23423:185;;;:::o;41142:93::-;37147:12;:10;:12::i;:::-;37136:23;;:7;:5;:7::i;:::-;:23;;;37128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41223:4:::1;41210:10;:17;;;;;;;;;;;;:::i;:::-;;41142:93:::0;:::o;32729:86::-;32776:4;32800:7;;;;;;;;;;;32793:14;;32729:86;:::o;40676:74::-;;;;;;;;;;;;;:::o;20258:239::-;20330:7;20350:13;20366:7;:16;20374:7;20366:16;;;;;;;;;;;;;;;;;;;;;20350:32;;20418:1;20401:19;;:5;:19;;;;20393:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20484:5;20477:12;;;20258:239;;;:::o;41349:87::-;41392:4;41416:11;;;;;;;;;;;41409:18;;41349:87;:::o;19988:208::-;20060:7;20105:1;20088:19;;:5;:19;;;;20080:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20172:9;:16;20182:5;20172:16;;;;;;;;;;;;;;;;20165:23;;19988:208;;;:::o;37567:94::-;37147:12;:10;:12::i;:::-;37136:23;;:7;:5;:7::i;:::-;:23;;;37128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37632:21:::1;37650:1;37632:9;:21::i;:::-;37567:94::o:0;42522:84::-;37147:12;:10;:12::i;:::-;37136:23;;:7;:5;:7::i;:::-;:23;;;37128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42587:11:::1;;;;;;;;;;;42586:12;42572:11;;:26;;;;;;;;;;;;;;;;;;42522:84::o:0;42721:272::-;37147:12;:10;:12::i;:::-;37136:23;;:7;:5;:7::i;:::-;:23;;;37128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42788:6:::1;42797:19;:9;:17;:19::i;:::-;42788:28;;42784:202;42822:8;42818:1;:12;42784:202;;;40616:3;42856:1;:14;42852:123;;;42891:21;:9;:19;:21::i;:::-;42931:28;42941:10;42957:1;42953;:5;;;;:::i;:::-;42931:9;:28::i;:::-;42852:123;42832:3;;;;;:::i;:::-;;;;42784:202;;;;42721:272:::0;:::o;36916:87::-;36962:7;36989:6;;;;;;;;;;;36982:13;;36916:87;:::o;40912:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20733:104::-;20789:13;20822:7;20815:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20733:104;:::o;42614:99::-;37147:12;:10;:12::i;:::-;37136:23;;:7;:5;:7::i;:::-;:23;;;37128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42673:8:::1;:6;:8::i;:::-;:32;;42697:8;:6;:8::i;:::-;42673:32;;;42684:10;:8;:10::i;:::-;42673:32;42614:99::o:0;22416:295::-;22531:12;:10;:12::i;:::-;22519:24;;:8;:24;;;;22511:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22631:8;22586:18;:32;22605:12;:10;:12::i;:::-;22586:32;;;;;;;;;;;;;;;:42;22619:8;22586:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22684:8;22655:48;;22670:12;:10;:12::i;:::-;22655:48;;;22694:8;22655:48;;;;;;:::i;:::-;;;;;;;;22416:295;;:::o;23679:328::-;23854:41;23873:12;:10;:12::i;:::-;23887:7;23854:18;:41::i;:::-;23846:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23960:39;23974:4;23980:2;23984:7;23993:5;23960:13;:39::i;:::-;23679:328;;;;:::o;20908:334::-;20981:13;21015:16;21023:7;21015;:16::i;:::-;21007:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21096:21;21120:10;:8;:10::i;:::-;21096:34;;21172:1;21154:7;21148:21;:25;:86;;;;;;;;;;;;;;;;;21200:7;21209:18;:7;:16;:18::i;:::-;21183:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21148:86;21141:93;;;20908:334;;;:::o;22782:164::-;22879:4;22903:18;:25;22922:5;22903:25;;;;;;;;;;;;;;;:35;22929:8;22903:35;;;;;;;;;;;;;;;;;;;;;;;;;22896:42;;22782:164;;;;:::o;41444:107::-;41499:7;41526:10;:16;41537:4;41526:16;;;;;;;;;;;;;;;;41519:23;;41444:107;;;:::o;37816:192::-;37147:12;:10;:12::i;:::-;37136:23;;:7;:5;:7::i;:::-;:23;;;37128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37925:1:::1;37905:22;;:8;:22;;;;37897:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37981:19;37991:8;37981:9;:19::i;:::-;37816:192:::0;:::o;18228:157::-;18313:4;18352:25;18337:40;;;:11;:40;;;;18330:47;;18228:157;;;:::o;25517:127::-;25582:4;25634:1;25606:30;;:7;:16;25614:7;25606:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25599:37;;25517:127;;;:::o;15331:98::-;15384:7;15411:10;15404:17;;15331:98;:::o;29499:174::-;29601:2;29574:15;:24;29590:7;29574:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29657:7;29653:2;29619:46;;29628:23;29643:7;29628:14;:23::i;:::-;29619:46;;;;;;;;;;;;29499:174;;:::o;35413:114::-;35478:7;35505;:14;;;35498:21;;35413:114;;;:::o;42323:189::-;42372:7;42392:21;:9;:19;:21::i;:::-;42424:10;42437:19;:9;:17;:19::i;:::-;42424:32;;42467:17;42477:2;42481;42467:9;:17::i;:::-;42502:2;42495:9;;;42323:189;;;:::o;25811:348::-;25904:4;25929:16;25937:7;25929;:16::i;:::-;25921:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26005:13;26021:23;26036:7;26021:14;:23::i;:::-;26005:39;;26074:5;26063:16;;:7;:16;;;:51;;;;26107:7;26083:31;;:20;26095:7;26083:11;:20::i;:::-;:31;;;26063:51;:87;;;;26118:32;26135:5;26142:7;26118:16;:32::i;:::-;26063:87;26055:96;;;25811:348;;;;:::o;28803:578::-;28962:4;28935:31;;:23;28950:7;28935:14;:23::i;:::-;:31;;;28927:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29045:1;29031:16;;:2;:16;;;;29023:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29101:39;29122:4;29128:2;29132:7;29101:20;:39::i;:::-;29205:29;29222:1;29226:7;29205:8;:29::i;:::-;29266:1;29247:9;:15;29257:4;29247:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29295:1;29278:9;:13;29288:2;29278:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29326:2;29307:7;:16;29315:7;29307:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29365:7;29361:2;29346:27;;29355:4;29346:27;;;;;;;;;;;;28803:578;;;:::o;38016:173::-;38072:16;38091:6;;;;;;;;;;;38072:25;;38117:8;38108:6;;:17;;;;;;;;;;;;;;;;;;38172:8;38141:40;;38162:8;38141:40;;;;;;;;;;;;38061:128;38016:173;:::o;35535:127::-;35642:1;35624:7;:14;;;:19;;;;;;;;;;;35535:127;:::o;26501:110::-;26577:26;26587:2;26591:7;26577:26;;;;;;;;;;;;:9;:26::i;:::-;26501:110;;:::o;33529:118::-;33055:8;:6;:8::i;:::-;33054:9;33046:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;33599:4:::1;33589:7;;:14;;;;;;;;;;;;;;;;;;33619:20;33626:12;:10;:12::i;:::-;33619:20;;;;;;:::i;:::-;;;;;;;;33529:118::o:0;33788:120::-;33332:8;:6;:8::i;:::-;33324:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;33857:5:::1;33847:7;;:15;;;;;;;;;;;;;;;;;;33878:22;33887:12;:10;:12::i;:::-;33878:22;;;;;;:::i;:::-;;;;;;;;33788:120::o:0;24889:315::-;25046:28;25056:4;25062:2;25066:7;25046:9;:28::i;:::-;25093:48;25116:4;25122:2;25126:7;25135:5;25093:22;:48::i;:::-;25085:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24889:315;;;;:::o;41031:103::-;41083:13;41116:10;41109:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41031:103;:::o;15771:723::-;15827:13;16057:1;16048:5;:10;16044:53;;;16075:10;;;;;;;;;;;;;;;;;;;;;16044:53;16107:12;16122:5;16107:20;;16138:14;16163:78;16178:1;16170:4;:9;16163:78;;16196:8;;;;;:::i;:::-;;;;16227:2;16219:10;;;;;:::i;:::-;;;16163:78;;;16251:19;16283:6;16273:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16251:39;;16301:154;16317:1;16308:5;:10;16301:154;;16345:1;16335:11;;;;;:::i;:::-;;;16412:2;16404:5;:10;;;;:::i;:::-;16391:2;:24;;;;:::i;:::-;16378:39;;16361:6;16368;16361:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16441:2;16432:11;;;;;:::i;:::-;;;16301:154;;;16479:6;16465:21;;;;;15771:723;;;;:::o;43106:292::-;43272:1;43256:18;;:4;:18;;;43254:21;:43;;;;;43289:7;:5;:7::i;:::-;43281:15;;:4;:15;;;43279:18;43254:43;43250:141;;;43323:8;:6;:8::i;:::-;43322:9;43314:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43250:141;43106:292;;;:::o;26838:321::-;26968:18;26974:2;26978:7;26968:5;:18::i;:::-;27019:54;27050:1;27054:2;27058:7;27067:5;27019:22;:54::i;:::-;26997:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26838:321;;;:::o;30238:803::-;30393:4;30414:15;:2;:13;;;:15::i;:::-;30410:624;;;30466:2;30450:36;;;30487:12;:10;:12::i;:::-;30501:4;30507:7;30516:5;30450:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30446:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30713:1;30696:6;:13;:18;30692:272;;;30739:60;;;;;;;;;;:::i;:::-;;;;;;;;30692:272;30914:6;30908:13;30899:6;30895:2;30891:15;30884:38;30446:533;30583:45;;;30573:55;;;:6;:55;;;;30566:62;;;;;30410:624;31018:4;31011:11;;30238:803;;;;;;;:::o;27495:382::-;27589:1;27575:16;;:2;:16;;;;27567:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27648:16;27656:7;27648;:16::i;:::-;27647:17;27639:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27710:45;27739:1;27743:2;27747:7;27710:20;:45::i;:::-;27785:1;27768:9;:13;27778:2;27768:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27816:2;27797:7;:16;27805:7;27797:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27861:7;27857:2;27836:33;;27853:1;27836:33;;;;;;;;;;;;27495:382;;:::o;7678:387::-;7738:4;7946:12;8013:7;8001:20;7993:28;;8056:1;8049:4;:8;8042:15;;;7678:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6126:327;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:119;;;6583:79;;:::i;:::-;6545:119;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6459:349;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:117;;;7138:79;;:::i;:::-;7102:117;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6814:509;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7329:329;;;;:::o;7664:474::-;7732:6;7740;7789:2;7777:9;7768:7;7764:23;7760:32;7757:119;;;7795:79;;:::i;:::-;7757:119;7915:1;7940:53;7985:7;7976:6;7965:9;7961:22;7940:53;:::i;:::-;7930:63;;7886:117;8042:2;8068:53;8113:7;8104:6;8093:9;8089:22;8068:53;:::i;:::-;8058:63;;8013:118;7664:474;;;;;:::o;8144:118::-;8231:24;8249:5;8231:24;:::i;:::-;8226:3;8219:37;8144:118;;:::o;8268:109::-;8349:21;8364:5;8349:21;:::i;:::-;8344:3;8337:34;8268:109;;:::o;8383:360::-;8469:3;8497:38;8529:5;8497:38;:::i;:::-;8551:70;8614:6;8609:3;8551:70;:::i;:::-;8544:77;;8630:52;8675:6;8670:3;8663:4;8656:5;8652:16;8630:52;:::i;:::-;8707:29;8729:6;8707:29;:::i;:::-;8702:3;8698:39;8691:46;;8473:270;8383:360;;;;:::o;8749:364::-;8837:3;8865:39;8898:5;8865:39;:::i;:::-;8920:71;8984:6;8979:3;8920:71;:::i;:::-;8913:78;;9000:52;9045:6;9040:3;9033:4;9026:5;9022:16;9000:52;:::i;:::-;9077:29;9099:6;9077:29;:::i;:::-;9072:3;9068:39;9061:46;;8841:272;8749:364;;;;:::o;9119:377::-;9225:3;9253:39;9286:5;9253:39;:::i;:::-;9308:89;9390:6;9385:3;9308:89;:::i;:::-;9301:96;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:6;9478:3;9474:16;9467:23;;9229:267;9119:377;;;;:::o;9502:366::-;9644:3;9665:67;9729:2;9724:3;9665:67;:::i;:::-;9658:74;;9741:93;9830:3;9741:93;:::i;:::-;9859:2;9854:3;9850:12;9843:19;;9502:366;;;:::o;9874:::-;10016:3;10037:67;10101:2;10096:3;10037:67;:::i;:::-;10030:74;;10113:93;10202:3;10113:93;:::i;:::-;10231:2;10226:3;10222:12;10215:19;;9874:366;;;:::o;10246:::-;10388:3;10409:67;10473:2;10468:3;10409:67;:::i;:::-;10402:74;;10485:93;10574:3;10485:93;:::i;:::-;10603:2;10598:3;10594:12;10587:19;;10246:366;;;:::o;10618:::-;10760:3;10781:67;10845:2;10840:3;10781:67;:::i;:::-;10774:74;;10857:93;10946:3;10857:93;:::i;:::-;10975:2;10970:3;10966:12;10959:19;;10618:366;;;:::o;10990:::-;11132:3;11153:67;11217:2;11212:3;11153:67;:::i;:::-;11146:74;;11229:93;11318:3;11229:93;:::i;:::-;11347:2;11342:3;11338:12;11331:19;;10990:366;;;:::o;11362:::-;11504:3;11525:67;11589:2;11584:3;11525:67;:::i;:::-;11518:74;;11601:93;11690:3;11601:93;:::i;:::-;11719:2;11714:3;11710:12;11703:19;;11362:366;;;:::o;11734:::-;11876:3;11897:67;11961:2;11956:3;11897:67;:::i;:::-;11890:74;;11973:93;12062:3;11973:93;:::i;:::-;12091:2;12086:3;12082:12;12075:19;;11734:366;;;:::o;12106:::-;12248:3;12269:67;12333:2;12328:3;12269:67;:::i;:::-;12262:74;;12345:93;12434:3;12345:93;:::i;:::-;12463:2;12458:3;12454:12;12447:19;;12106:366;;;:::o;12478:::-;12620:3;12641:67;12705:2;12700:3;12641:67;:::i;:::-;12634:74;;12717:93;12806:3;12717:93;:::i;:::-;12835:2;12830:3;12826:12;12819:19;;12478:366;;;:::o;12850:::-;12992:3;13013:67;13077:2;13072:3;13013:67;:::i;:::-;13006:74;;13089:93;13178:3;13089:93;:::i;:::-;13207:2;13202:3;13198:12;13191:19;;12850:366;;;:::o;13222:::-;13364:3;13385:67;13449:2;13444:3;13385:67;:::i;:::-;13378:74;;13461:93;13550:3;13461:93;:::i;:::-;13579:2;13574:3;13570:12;13563:19;;13222:366;;;:::o;13594:::-;13736:3;13757:67;13821:2;13816:3;13757:67;:::i;:::-;13750:74;;13833:93;13922:3;13833:93;:::i;:::-;13951:2;13946:3;13942:12;13935:19;;13594:366;;;:::o;13966:::-;14108:3;14129:67;14193:2;14188:3;14129:67;:::i;:::-;14122:74;;14205:93;14294:3;14205:93;:::i;:::-;14323:2;14318:3;14314:12;14307:19;;13966:366;;;:::o;14338:::-;14480:3;14501:67;14565:2;14560:3;14501:67;:::i;:::-;14494:74;;14577:93;14666:3;14577:93;:::i;:::-;14695:2;14690:3;14686:12;14679:19;;14338:366;;;:::o;14710:::-;14852:3;14873:67;14937:2;14932:3;14873:67;:::i;:::-;14866:74;;14949:93;15038:3;14949:93;:::i;:::-;15067:2;15062:3;15058:12;15051:19;;14710:366;;;:::o;15082:::-;15224:3;15245:67;15309:2;15304:3;15245:67;:::i;:::-;15238:74;;15321:93;15410:3;15321:93;:::i;:::-;15439:2;15434:3;15430:12;15423:19;;15082:366;;;:::o;15454:::-;15596:3;15617:67;15681:2;15676:3;15617:67;:::i;:::-;15610:74;;15693:93;15782:3;15693:93;:::i;:::-;15811:2;15806:3;15802:12;15795:19;;15454:366;;;:::o;15826:::-;15968:3;15989:67;16053:2;16048:3;15989:67;:::i;:::-;15982:74;;16065:93;16154:3;16065:93;:::i;:::-;16183:2;16178:3;16174:12;16167:19;;15826:366;;;:::o;16198:::-;16340:3;16361:67;16425:2;16420:3;16361:67;:::i;:::-;16354:74;;16437:93;16526:3;16437:93;:::i;:::-;16555:2;16550:3;16546:12;16539:19;;16198:366;;;:::o;16570:118::-;16657:24;16675:5;16657:24;:::i;:::-;16652:3;16645:37;16570:118;;:::o;16694:435::-;16874:3;16896:95;16987:3;16978:6;16896:95;:::i;:::-;16889:102;;17008:95;17099:3;17090:6;17008:95;:::i;:::-;17001:102;;17120:3;17113:10;;16694:435;;;;;:::o;17135:222::-;17228:4;17266:2;17255:9;17251:18;17243:26;;17279:71;17347:1;17336:9;17332:17;17323:6;17279:71;:::i;:::-;17135:222;;;;:::o;17363:640::-;17558:4;17596:3;17585:9;17581:19;17573:27;;17610:71;17678:1;17667:9;17663:17;17654:6;17610:71;:::i;:::-;17691:72;17759:2;17748:9;17744:18;17735:6;17691:72;:::i;:::-;17773;17841:2;17830:9;17826:18;17817:6;17773:72;:::i;:::-;17892:9;17886:4;17882:20;17877:2;17866:9;17862:18;17855:48;17920:76;17991:4;17982:6;17920:76;:::i;:::-;17912:84;;17363:640;;;;;;;:::o;18009:210::-;18096:4;18134:2;18123:9;18119:18;18111:26;;18147:65;18209:1;18198:9;18194:17;18185:6;18147:65;:::i;:::-;18009:210;;;;:::o;18225:313::-;18338:4;18376:2;18365:9;18361:18;18353:26;;18425:9;18419:4;18415:20;18411:1;18400:9;18396:17;18389:47;18453:78;18526:4;18517:6;18453:78;:::i;:::-;18445:86;;18225:313;;;;:::o;18544:419::-;18710:4;18748:2;18737:9;18733:18;18725:26;;18797:9;18791:4;18787:20;18783:1;18772:9;18768:17;18761:47;18825:131;18951:4;18825:131;:::i;:::-;18817:139;;18544:419;;;:::o;18969:::-;19135:4;19173:2;19162:9;19158:18;19150:26;;19222:9;19216:4;19212:20;19208:1;19197:9;19193:17;19186:47;19250:131;19376:4;19250:131;:::i;:::-;19242:139;;18969:419;;;:::o;19394:::-;19560:4;19598:2;19587:9;19583:18;19575:26;;19647:9;19641:4;19637:20;19633:1;19622:9;19618:17;19611:47;19675:131;19801:4;19675:131;:::i;:::-;19667:139;;19394:419;;;:::o;19819:::-;19985:4;20023:2;20012:9;20008:18;20000:26;;20072:9;20066:4;20062:20;20058:1;20047:9;20043:17;20036:47;20100:131;20226:4;20100:131;:::i;:::-;20092:139;;19819:419;;;:::o;20244:::-;20410:4;20448:2;20437:9;20433:18;20425:26;;20497:9;20491:4;20487:20;20483:1;20472:9;20468:17;20461:47;20525:131;20651:4;20525:131;:::i;:::-;20517:139;;20244:419;;;:::o;20669:::-;20835:4;20873:2;20862:9;20858:18;20850:26;;20922:9;20916:4;20912:20;20908:1;20897:9;20893:17;20886:47;20950:131;21076:4;20950:131;:::i;:::-;20942:139;;20669:419;;;:::o;21094:::-;21260:4;21298:2;21287:9;21283:18;21275:26;;21347:9;21341:4;21337:20;21333:1;21322:9;21318:17;21311:47;21375:131;21501:4;21375:131;:::i;:::-;21367:139;;21094:419;;;:::o;21519:::-;21685:4;21723:2;21712:9;21708:18;21700:26;;21772:9;21766:4;21762:20;21758:1;21747:9;21743:17;21736:47;21800:131;21926:4;21800:131;:::i;:::-;21792:139;;21519:419;;;:::o;21944:::-;22110:4;22148:2;22137:9;22133:18;22125:26;;22197:9;22191:4;22187:20;22183:1;22172:9;22168:17;22161:47;22225:131;22351:4;22225:131;:::i;:::-;22217:139;;21944:419;;;:::o;22369:::-;22535:4;22573:2;22562:9;22558:18;22550:26;;22622:9;22616:4;22612:20;22608:1;22597:9;22593:17;22586:47;22650:131;22776:4;22650:131;:::i;:::-;22642:139;;22369:419;;;:::o;22794:::-;22960:4;22998:2;22987:9;22983:18;22975:26;;23047:9;23041:4;23037:20;23033:1;23022:9;23018:17;23011:47;23075:131;23201:4;23075:131;:::i;:::-;23067:139;;22794:419;;;:::o;23219:::-;23385:4;23423:2;23412:9;23408:18;23400:26;;23472:9;23466:4;23462:20;23458:1;23447:9;23443:17;23436:47;23500:131;23626:4;23500:131;:::i;:::-;23492:139;;23219:419;;;:::o;23644:::-;23810:4;23848:2;23837:9;23833:18;23825:26;;23897:9;23891:4;23887:20;23883:1;23872:9;23868:17;23861:47;23925:131;24051:4;23925:131;:::i;:::-;23917:139;;23644:419;;;:::o;24069:::-;24235:4;24273:2;24262:9;24258:18;24250:26;;24322:9;24316:4;24312:20;24308:1;24297:9;24293:17;24286:47;24350:131;24476:4;24350:131;:::i;:::-;24342:139;;24069:419;;;:::o;24494:::-;24660:4;24698:2;24687:9;24683:18;24675:26;;24747:9;24741:4;24737:20;24733:1;24722:9;24718:17;24711:47;24775:131;24901:4;24775:131;:::i;:::-;24767:139;;24494:419;;;:::o;24919:::-;25085:4;25123:2;25112:9;25108:18;25100:26;;25172:9;25166:4;25162:20;25158:1;25147:9;25143:17;25136:47;25200:131;25326:4;25200:131;:::i;:::-;25192:139;;24919:419;;;:::o;25344:::-;25510:4;25548:2;25537:9;25533:18;25525:26;;25597:9;25591:4;25587:20;25583:1;25572:9;25568:17;25561:47;25625:131;25751:4;25625:131;:::i;:::-;25617:139;;25344:419;;;:::o;25769:::-;25935:4;25973:2;25962:9;25958:18;25950:26;;26022:9;26016:4;26012:20;26008:1;25997:9;25993:17;25986:47;26050:131;26176:4;26050:131;:::i;:::-;26042:139;;25769:419;;;:::o;26194:::-;26360:4;26398:2;26387:9;26383:18;26375:26;;26447:9;26441:4;26437:20;26433:1;26422:9;26418:17;26411:47;26475:131;26601:4;26475:131;:::i;:::-;26467:139;;26194:419;;;:::o;26619:222::-;26712:4;26750:2;26739:9;26735:18;26727:26;;26763:71;26831:1;26820:9;26816:17;26807:6;26763:71;:::i;:::-;26619:222;;;;:::o;26847:129::-;26881:6;26908:20;;:::i;:::-;26898:30;;26937:33;26965:4;26957:6;26937:33;:::i;:::-;26847:129;;;:::o;26982:75::-;27015:6;27048:2;27042:9;27032:19;;26982:75;:::o;27063:307::-;27124:4;27214:18;27206:6;27203:30;27200:56;;;27236:18;;:::i;:::-;27200:56;27274:29;27296:6;27274:29;:::i;:::-;27266:37;;27358:4;27352;27348:15;27340:23;;27063:307;;;:::o;27376:308::-;27438:4;27528:18;27520:6;27517:30;27514:56;;;27550:18;;:::i;:::-;27514:56;27588:29;27610:6;27588:29;:::i;:::-;27580:37;;27672:4;27666;27662:15;27654:23;;27376:308;;;:::o;27690:98::-;27741:6;27775:5;27769:12;27759:22;;27690:98;;;:::o;27794:99::-;27846:6;27880:5;27874:12;27864:22;;27794:99;;;:::o;27899:168::-;27982:11;28016:6;28011:3;28004:19;28056:4;28051:3;28047:14;28032:29;;27899:168;;;;:::o;28073:169::-;28157:11;28191:6;28186:3;28179:19;28231:4;28226:3;28222:14;28207:29;;28073:169;;;;:::o;28248:148::-;28350:11;28387:3;28372:18;;28248:148;;;;:::o;28402:305::-;28442:3;28461:20;28479:1;28461:20;:::i;:::-;28456:25;;28495:20;28513:1;28495:20;:::i;:::-;28490:25;;28649:1;28581:66;28577:74;28574:1;28571:81;28568:107;;;28655:18;;:::i;:::-;28568:107;28699:1;28696;28692:9;28685:16;;28402:305;;;;:::o;28713:185::-;28753:1;28770:20;28788:1;28770:20;:::i;:::-;28765:25;;28804:20;28822:1;28804:20;:::i;:::-;28799:25;;28843:1;28833:35;;28848:18;;:::i;:::-;28833:35;28890:1;28887;28883:9;28878:14;;28713:185;;;;:::o;28904:191::-;28944:4;28964:20;28982:1;28964:20;:::i;:::-;28959:25;;28998:20;29016:1;28998:20;:::i;:::-;28993:25;;29037:1;29034;29031:8;29028:34;;;29042:18;;:::i;:::-;29028:34;29087:1;29084;29080:9;29072:17;;28904:191;;;;:::o;29101:96::-;29138:7;29167:24;29185:5;29167:24;:::i;:::-;29156:35;;29101:96;;;:::o;29203:90::-;29237:7;29280:5;29273:13;29266:21;29255:32;;29203:90;;;:::o;29299:149::-;29335:7;29375:66;29368:5;29364:78;29353:89;;29299:149;;;:::o;29454:126::-;29491:7;29531:42;29524:5;29520:54;29509:65;;29454:126;;;:::o;29586:77::-;29623:7;29652:5;29641:16;;29586:77;;;:::o;29669:154::-;29753:6;29748:3;29743;29730:30;29815:1;29806:6;29801:3;29797:16;29790:27;29669:154;;;:::o;29829:307::-;29897:1;29907:113;29921:6;29918:1;29915:13;29907:113;;;30006:1;30001:3;29997:11;29991:18;29987:1;29982:3;29978:11;29971:39;29943:2;29940:1;29936:10;29931:15;;29907:113;;;30038:6;30035:1;30032:13;30029:101;;;30118:1;30109:6;30104:3;30100:16;30093:27;30029:101;29878:258;29829:307;;;:::o;30142:320::-;30186:6;30223:1;30217:4;30213:12;30203:22;;30270:1;30264:4;30260:12;30291:18;30281:81;;30347:4;30339:6;30335:17;30325:27;;30281:81;30409:2;30401:6;30398:14;30378:18;30375:38;30372:84;;;30428:18;;:::i;:::-;30372:84;30193:269;30142:320;;;:::o;30468:281::-;30551:27;30573:4;30551:27;:::i;:::-;30543:6;30539:40;30681:6;30669:10;30666:22;30645:18;30633:10;30630:34;30627:62;30624:88;;;30692:18;;:::i;:::-;30624:88;30732:10;30728:2;30721:22;30511:238;30468:281;;:::o;30755:233::-;30794:3;30817:24;30835:5;30817:24;:::i;:::-;30808:33;;30863:66;30856:5;30853:77;30850:103;;;30933:18;;:::i;:::-;30850:103;30980:1;30973:5;30969:13;30962:20;;30755:233;;;:::o;30994:176::-;31026:1;31043:20;31061:1;31043:20;:::i;:::-;31038:25;;31077:20;31095:1;31077:20;:::i;:::-;31072:25;;31116:1;31106:35;;31121:18;;:::i;:::-;31106:35;31162:1;31159;31155:9;31150:14;;30994:176;;;;:::o;31176:180::-;31224:77;31221:1;31214:88;31321:4;31318:1;31311:15;31345:4;31342:1;31335:15;31362:180;31410:77;31407:1;31400:88;31507:4;31504:1;31497:15;31531:4;31528:1;31521:15;31548:180;31596:77;31593:1;31586:88;31693:4;31690:1;31683:15;31717:4;31714:1;31707:15;31734:180;31782:77;31779:1;31772:88;31879:4;31876:1;31869:15;31903:4;31900:1;31893:15;31920:180;31968:77;31965:1;31958:88;32065:4;32062:1;32055:15;32089:4;32086:1;32079:15;32106:117;32215:1;32212;32205:12;32229:117;32338:1;32335;32328:12;32352:117;32461:1;32458;32451:12;32475:117;32584:1;32581;32574:12;32598:102;32639:6;32690:2;32686:7;32681:2;32674:5;32670:14;32666:28;32656:38;;32598:102;;;:::o;32706:230::-;32846:34;32842:1;32834:6;32830:14;32823:58;32915:13;32910:2;32902:6;32898:15;32891:38;32706:230;:::o;32942:170::-;33082:22;33078:1;33070:6;33066:14;33059:46;32942:170;:::o;33118:237::-;33258:34;33254:1;33246:6;33242:14;33235:58;33327:20;33322:2;33314:6;33310:15;33303:45;33118:237;:::o;33361:225::-;33501:34;33497:1;33489:6;33485:14;33478:58;33570:8;33565:2;33557:6;33553:15;33546:33;33361:225;:::o;33592:178::-;33732:30;33728:1;33720:6;33716:14;33709:54;33592:178;:::o;33776:223::-;33916:34;33912:1;33904:6;33900:14;33893:58;33985:6;33980:2;33972:6;33968:15;33961:31;33776:223;:::o;34005:175::-;34145:27;34141:1;34133:6;34129:14;34122:51;34005:175;:::o;34186:231::-;34326:34;34322:1;34314:6;34310:14;34303:58;34395:14;34390:2;34382:6;34378:15;34371:39;34186:231;:::o;34423:166::-;34563:18;34559:1;34551:6;34547:14;34540:42;34423:166;:::o;34595:243::-;34735:34;34731:1;34723:6;34719:14;34712:58;34804:26;34799:2;34791:6;34787:15;34780:51;34595:243;:::o;34844:229::-;34984:34;34980:1;34972:6;34968:14;34961:58;35053:12;35048:2;35040:6;35036:15;35029:37;34844:229;:::o;35079:228::-;35219:34;35215:1;35207:6;35203:14;35196:58;35288:11;35283:2;35275:6;35271:15;35264:36;35079:228;:::o;35313:182::-;35453:34;35449:1;35441:6;35437:14;35430:58;35313:182;:::o;35501:231::-;35641:34;35637:1;35629:6;35625:14;35618:58;35710:14;35705:2;35697:6;35693:15;35686:39;35501:231;:::o;35738:182::-;35878:34;35874:1;35866:6;35862:14;35855:58;35738:182;:::o;35926:228::-;36066:34;36062:1;36054:6;36050:14;36043:58;36135:11;36130:2;36122:6;36118:15;36111:36;35926:228;:::o;36160:234::-;36300:34;36296:1;36288:6;36284:14;36277:58;36369:17;36364:2;36356:6;36352:15;36345:42;36160:234;:::o;36400:220::-;36540:34;36536:1;36528:6;36524:14;36517:58;36609:3;36604:2;36596:6;36592:15;36585:28;36400:220;:::o;36626:236::-;36766:34;36762:1;36754:6;36750:14;36743:58;36835:19;36830:2;36822:6;36818:15;36811:44;36626:236;:::o;36868:122::-;36941:24;36959:5;36941:24;:::i;:::-;36934:5;36931:35;36921:63;;36980:1;36977;36970:12;36921:63;36868:122;:::o;36996:116::-;37066:21;37081:5;37066:21;:::i;:::-;37059:5;37056:32;37046:60;;37102:1;37099;37092:12;37046:60;36996:116;:::o;37118:120::-;37190:23;37207:5;37190:23;:::i;:::-;37183:5;37180:34;37170:62;;37228:1;37225;37218:12;37170:62;37118:120;:::o;37244:122::-;37317:24;37335:5;37317:24;:::i;:::-;37310:5;37307:35;37297:63;;37356:1;37353;37346:12;37297:63;37244:122;:::o

Swarm Source

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