ETH Price: $3,484.34 (+3.35%)
Gas: 3 Gwei

Token

Cheddaz (CHEDDAZ)
 

Overview

Max Total Supply

6,312 CHEDDAZ

Holders

1,240

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
djfathead.eth
Balance
5 CHEDDAZ
0x5e130cb7f8cdcfb5a15018ee5846769703ec4478
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Sewer Rats are digital collectibles living on the Ethereum Blockchain each randomly generated from 188 hand-drawn properties. A smart contract ensures no more than 8888 rats will ever exist. Rats are minted as ERC-721 tokens and their metadata is stored on IPFS.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SRSCCheddaz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 4000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-14
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-29
*/

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @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}. 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 {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 { }
}

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/WickedStallions.sol

pragma solidity ^0.8.0;

abstract contract SRSC {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract SRSCCheddaz is ERC721Enumerable, Ownable {  
  
  SRSC private srsc = SRSC(0xd21a23606D2746f086f6528Cd6873bAD3307b903); 
  bool public saleIsActive = false;
  uint256 public maxCheddaz = 8888;
  string private baseURI;

  constructor() ERC721("Cheddaz", "CHEDDAZ") {
  }

  function isMinted(uint256 tokenId) external view returns (bool) {
    require(tokenId < maxCheddaz, "tokenId outside collection bounds");
    return _exists(tokenId);
  }

  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }
  
  function setBaseURI(string memory uri) public onlyOwner {
    baseURI = uri;
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }

  function mintCheddaz(uint256 startingIndex, uint256 totalCheddazToMint) public {
    require(saleIsActive, "Sale must be active to mint a Chedda");
    require(totalCheddazToMint > 0, "Must mint at least one Chedda");
    uint balance = srsc.balanceOf(msg.sender);
    require(balance > 0, "Must hold at least one Rat to mint a Chedda");
    require(balance >= totalCheddazToMint, "Must hold at least as many Rats as the number of Cheddaz you intend to mint");
    require(balance >= startingIndex + totalCheddazToMint, "Must hold at least as many Rats as the number of Cheddaz you intend to mint");

    for(uint i = 0; i < balance && i < totalCheddazToMint; i++) {
      require(totalSupply() < maxCheddaz, "Cannot exceed max supply of Cheddaz");
      uint tokenId = srsc.tokenOfOwnerByIndex(msg.sender, i + startingIndex);
      if (!_exists(tokenId)) {
        _safeMint(msg.sender, tokenId);
      }
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCheddaz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startingIndex","type":"uint256"},{"internalType":"uint256","name":"totalCheddazToMint","type":"uint256"}],"name":"mintCheddaz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a81b03191673d21a23606d2746f086f6528cd6873bad3307b9031790556122b8600c553480156200003d57600080fd5b506040518060400160405280600781526020016621b432b23230bd60c91b8152506040518060400160405280600781526020016621a422a22220ad60c91b81525081600090805190602001906200009692919062000119565b508051620000ac90600190602084019062000119565b5050506000620000c16200011560201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001fc565b3390565b8280546200012790620001bf565b90600052602060002090601f0160209004810192826200014b576000855562000196565b82601f106200016657805160ff191683800117855562000196565b8280016001018555821562000196579182015b828111156200019657825182559160200191906001019062000179565b50620001a4929150620001a8565b5090565b5b80821115620001a45760008155600101620001a9565b600181811c90821680620001d457607f821691505b60208210811415620001f657634e487b7160e01b600052602260045260246000fd5b50919050565b61268d806200020c6000396000f3fe608060405234801561001057600080fd5b50600436106101a35760003560e01c80634f6ccce7116100ee57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461033a578063e985e9c51461034d578063eb8d244414610389578063f2fde38b146103ae57600080fd5b806395d89b411461030c578063a22cb46514610314578063b88d4fde1461032757600080fd5b806370a08231116100c857806370a08231146102e0578063715018a6146102f35780638da5cb5b146102fb57600080fd5b80634f6ccce7146102a757806355f804b3146102ba5780636352211e146102cd57600080fd5b806323b872dd1161015057806333c41a901161012a57806333c41a901461027957806334918dfd1461028c57806342842e0e1461029457600080fd5b806323b872dd1461024a5780632c27557b1461025d5780632f745c591461026657600080fd5b8063095ea7b311610181578063095ea7b31461021057806318160ddd146102255780631ebb8b231461023757600080fd5b806301ffc9a7146101a857806306fdde03146101d0578063081812fc146101e5575b600080fd5b6101bb6101b6366004612374565b6103c1565b60405190151581526020015b60405180910390f35b6101d861041d565b6040516101c791906124da565b6101f86101f33660046123f2565b6104af565b6040516001600160a01b0390911681526020016101c7565b61022361021e36600461234b565b61055a565b005b6008545b6040519081526020016101c7565b610223610245366004612422565b61068c565b61022361025836600461225d565b610b3d565b610229600c5481565b61022961027436600461234b565b610bc4565b6101bb6102873660046123f2565b610c6c565b610223610d04565b6102236102a236600461225d565b610dab565b6102296102b53660046123f2565b610dc6565b6102236102c83660046123ac565b610e78565b6101f86102db3660046123f2565b610ee9565b6102296102ee366004612211565b610f74565b61022361100e565b600a546001600160a01b03166101f8565b6101d86110ca565b610223610322366004612311565b6110d9565b610223610335366004612298565b6111bc565b6101d86103483660046123f2565b611244565b6101bb61035b36600461222b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600b546101bb9074010000000000000000000000000000000000000000900460ff1681565b6102236103bc366004612211565b61132d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610417575061041782611477565b92915050565b60606000805461042c9061255c565b80601f01602080910402602001604051908101604052809291908181526020018280546104589061255c565b80156104a55780601f1061047a576101008083540402835291602001916104a5565b820191906000526020600020905b81548152906001019060200180831161048857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661053e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061056582610ee9565b9050806001600160a01b0316836001600160a01b031614156105ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610535565b336001600160a01b038216148061060b575061060b813361035b565b61067d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610535565b610687838361155a565b505050565b600b5474010000000000000000000000000000000000000000900460ff1661071b5760405162461bcd60e51b8152602060048201526024808201527f53616c65206d7573742062652061637469766520746f206d696e74206120436860448201527f65646461000000000000000000000000000000000000000000000000000000006064820152608401610535565b6000811161076b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206d696e74206174206c65617374206f6e65204368656464610000006044820152606401610535565b600b546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061240a565b9050600081116108785760405162461bcd60e51b815260206004820152602b60248201527f4d75737420686f6c64206174206c65617374206f6e652052617420746f206d6960448201527f6e742061204368656464610000000000000000000000000000000000000000006064820152608401610535565b818110156109145760405162461bcd60e51b815260206004820152604b60248201527f4d75737420686f6c64206174206c65617374206173206d616e7920526174732060448201527f617320746865206e756d626572206f66204368656464617a20796f7520696e7460648201527f656e6420746f206d696e74000000000000000000000000000000000000000000608482015260a401610535565b61091e82846124ed565b8110156109b95760405162461bcd60e51b815260206004820152604b60248201527f4d75737420686f6c64206174206c65617374206173206d616e7920526174732060448201527f617320746865206e756d626572206f66204368656464617a20796f7520696e7460648201527f656e6420746f206d696e74000000000000000000000000000000000000000000608482015260a401610535565b60005b81811080156109ca57508281105b15610b3757600c5460085410610a485760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420657863656564206d617820737570706c79206f66204368656460448201527f64617a00000000000000000000000000000000000000000000000000000000006064820152608401610535565b600b546000906001600160a01b0316632f745c5933610a6788866124ed565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039092166004830152602482015260440160206040518083038186803b158015610ac357600080fd5b505afa158015610ad7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afb919061240a565b6000818152600260205260409020549091506001600160a01b0316610b2457610b2433826115e0565b5080610b2f81612597565b9150506109bc565b50505050565b610b4733826115fa565b610bb95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610535565b610687838383611702565b6000610bcf83610f74565b8210610c435760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610535565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000600c548210610ce55760405162461bcd60e51b815260206004820152602160248201527f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610535565b6000828152600260205260409020546001600160a01b03161515610417565b600a546001600160a01b03163314610d5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610535565b600b80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b610687838383604051806020016040528060008152506111bc565b6000610dd160085490565b8210610e455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610535565b60088281548110610e6657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ed25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610535565b8051610ee590600d9060208401906120e6565b5050565b6000818152600260205260408120546001600160a01b0316806104175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610535565b60006001600160a01b038216610ff25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610535565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610535565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60606001805461042c9061255c565b6001600160a01b0382163314156111325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610535565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111c633836115fa565b6112385760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610535565b610b37848484846118f2565b6000818152600260205260409020546060906001600160a01b03166112d15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610535565b60006112db61197b565b905060008151116112fb5760405180602001604052806000815250611326565b806113058461198a565b60405160200161131692919061246f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610535565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610535565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061150a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061041757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610417565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906115a782610ee9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ee5828260405180602001604052806000815250611ad8565b6000818152600260205260408120546001600160a01b03166116845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610535565b600061168f83610ee9565b9050806001600160a01b0316846001600160a01b031614806116ca5750836001600160a01b03166116bf846104af565b6001600160a01b0316145b806116fa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661171582610ee9565b6001600160a01b0316146117915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610535565b6001600160a01b03821661180c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610535565b611817838383611b61565b61182260008261155a565b6001600160a01b038316600090815260036020526040812080546001929061184b908490612519565b90915550506001600160a01b03821660009081526003602052604081208054600192906118799084906124ed565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118fd848484611702565b61190984848484611c19565b610b375760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610535565b6060600d805461042c9061255c565b6060816119ca57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156119f457806119de81612597565b91506119ed9050600a83612505565b91506119ce565b60008167ffffffffffffffff811115611a1d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a47576020820181803683370190505b5090505b84156116fa57611a5c600183612519565b9150611a69600a866125d0565b611a749060306124ed565b60f81b818381518110611a9757634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611ad1600a86612505565b9450611a4b565b611ae28383611dc6565b611aef6000848484611c19565b6106875760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610535565b6001600160a01b038316611bbc57611bb781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bdf565b816001600160a01b0316836001600160a01b031614611bdf57611bdf8382611f2c565b6001600160a01b038216611bf65761068781611fc9565b826001600160a01b0316826001600160a01b0316146106875761068782826120a2565b60006001600160a01b0384163b15611dbb576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611c7690339089908890889060040161249e565b602060405180830381600087803b158015611c9057600080fd5b505af1925050508015611cc0575060408051601f3d908101601f19168201909252611cbd91810190612390565b60015b611d70573d808015611cee576040519150601f19603f3d011682016040523d82523d6000602084013e611cf3565b606091505b508051611d685760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610535565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506116fa565b506001949350505050565b6001600160a01b038216611e1c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610535565b6000818152600260205260409020546001600160a01b031615611e815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610535565b611e8d60008383611b61565b6001600160a01b0382166000908152600360205260408120805460019290611eb69084906124ed565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f3984610f74565b611f439190612519565b600083815260076020526040902054909150808214611f96576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fdb90600190612519565b6000838152600960205260408120546008805493945090928490811061201157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061204057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061208657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120ad83610f74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120f29061255c565b90600052602060002090601f016020900481019282612114576000855561215a565b82601f1061212d57805160ff191683800117855561215a565b8280016001018555821561215a579182015b8281111561215a57825182559160200191906001019061213f565b5061216692915061216a565b5090565b5b80821115612166576000815560010161216b565b600067ffffffffffffffff8084111561219a5761219a612610565b604051601f8501601f19908116603f011681019082821181831017156121c2576121c2612610565b816040528093508581528686860111156121db57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461220c57600080fd5b919050565b600060208284031215612222578081fd5b611326826121f5565b6000806040838503121561223d578081fd5b612246836121f5565b9150612254602084016121f5565b90509250929050565b600080600060608486031215612271578081fd5b61227a846121f5565b9250612288602085016121f5565b9150604084013590509250925092565b600080600080608085870312156122ad578081fd5b6122b6856121f5565b93506122c4602086016121f5565b925060408501359150606085013567ffffffffffffffff8111156122e6578182fd5b8501601f810187136122f6578182fd5b6123058782356020840161217f565b91505092959194509250565b60008060408385031215612323578182fd5b61232c836121f5565b915060208301358015158114612340578182fd5b809150509250929050565b6000806040838503121561235d578182fd5b612366836121f5565b946020939093013593505050565b600060208284031215612385578081fd5b813561132681612626565b6000602082840312156123a1578081fd5b815161132681612626565b6000602082840312156123bd578081fd5b813567ffffffffffffffff8111156123d3578182fd5b8201601f810184136123e3578182fd5b6116fa8482356020840161217f565b600060208284031215612403578081fd5b5035919050565b60006020828403121561241b578081fd5b5051919050565b60008060408385031215612434578182fd5b50508035926020909101359150565b6000815180845261245b816020860160208601612530565b601f01601f19169290920160200192915050565b60008351612481818460208801612530565b835190830190612495818360208801612530565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124d06080830184612443565b9695505050505050565b6020815260006113266020830184612443565b60008219821115612500576125006125e4565b500190565b600082612514576125146125fa565b500490565b60008282101561252b5761252b6125e4565b500390565b60005b8381101561254b578181015183820152602001612533565b83811115610b375750506000910152565b600181811c9082168061257057607f821691505b6020821081141561259157634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125c9576125c96125e4565b5060010190565b6000826125df576125df6125fa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461265457600080fd5b5056fea26469706673582212204639c2e178e5d87c14981f1fae08e736998bc05cb06c832946bc56fa7ded4b1364736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a35760003560e01c80634f6ccce7116100ee57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461033a578063e985e9c51461034d578063eb8d244414610389578063f2fde38b146103ae57600080fd5b806395d89b411461030c578063a22cb46514610314578063b88d4fde1461032757600080fd5b806370a08231116100c857806370a08231146102e0578063715018a6146102f35780638da5cb5b146102fb57600080fd5b80634f6ccce7146102a757806355f804b3146102ba5780636352211e146102cd57600080fd5b806323b872dd1161015057806333c41a901161012a57806333c41a901461027957806334918dfd1461028c57806342842e0e1461029457600080fd5b806323b872dd1461024a5780632c27557b1461025d5780632f745c591461026657600080fd5b8063095ea7b311610181578063095ea7b31461021057806318160ddd146102255780631ebb8b231461023757600080fd5b806301ffc9a7146101a857806306fdde03146101d0578063081812fc146101e5575b600080fd5b6101bb6101b6366004612374565b6103c1565b60405190151581526020015b60405180910390f35b6101d861041d565b6040516101c791906124da565b6101f86101f33660046123f2565b6104af565b6040516001600160a01b0390911681526020016101c7565b61022361021e36600461234b565b61055a565b005b6008545b6040519081526020016101c7565b610223610245366004612422565b61068c565b61022361025836600461225d565b610b3d565b610229600c5481565b61022961027436600461234b565b610bc4565b6101bb6102873660046123f2565b610c6c565b610223610d04565b6102236102a236600461225d565b610dab565b6102296102b53660046123f2565b610dc6565b6102236102c83660046123ac565b610e78565b6101f86102db3660046123f2565b610ee9565b6102296102ee366004612211565b610f74565b61022361100e565b600a546001600160a01b03166101f8565b6101d86110ca565b610223610322366004612311565b6110d9565b610223610335366004612298565b6111bc565b6101d86103483660046123f2565b611244565b6101bb61035b36600461222b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600b546101bb9074010000000000000000000000000000000000000000900460ff1681565b6102236103bc366004612211565b61132d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610417575061041782611477565b92915050565b60606000805461042c9061255c565b80601f01602080910402602001604051908101604052809291908181526020018280546104589061255c565b80156104a55780601f1061047a576101008083540402835291602001916104a5565b820191906000526020600020905b81548152906001019060200180831161048857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661053e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061056582610ee9565b9050806001600160a01b0316836001600160a01b031614156105ef5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610535565b336001600160a01b038216148061060b575061060b813361035b565b61067d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610535565b610687838361155a565b505050565b600b5474010000000000000000000000000000000000000000900460ff1661071b5760405162461bcd60e51b8152602060048201526024808201527f53616c65206d7573742062652061637469766520746f206d696e74206120436860448201527f65646461000000000000000000000000000000000000000000000000000000006064820152608401610535565b6000811161076b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206d696e74206174206c65617374206f6e65204368656464610000006044820152606401610535565b600b546040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061240a565b9050600081116108785760405162461bcd60e51b815260206004820152602b60248201527f4d75737420686f6c64206174206c65617374206f6e652052617420746f206d6960448201527f6e742061204368656464610000000000000000000000000000000000000000006064820152608401610535565b818110156109145760405162461bcd60e51b815260206004820152604b60248201527f4d75737420686f6c64206174206c65617374206173206d616e7920526174732060448201527f617320746865206e756d626572206f66204368656464617a20796f7520696e7460648201527f656e6420746f206d696e74000000000000000000000000000000000000000000608482015260a401610535565b61091e82846124ed565b8110156109b95760405162461bcd60e51b815260206004820152604b60248201527f4d75737420686f6c64206174206c65617374206173206d616e7920526174732060448201527f617320746865206e756d626572206f66204368656464617a20796f7520696e7460648201527f656e6420746f206d696e74000000000000000000000000000000000000000000608482015260a401610535565b60005b81811080156109ca57508281105b15610b3757600c5460085410610a485760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420657863656564206d617820737570706c79206f66204368656460448201527f64617a00000000000000000000000000000000000000000000000000000000006064820152608401610535565b600b546000906001600160a01b0316632f745c5933610a6788866124ed565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039092166004830152602482015260440160206040518083038186803b158015610ac357600080fd5b505afa158015610ad7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afb919061240a565b6000818152600260205260409020549091506001600160a01b0316610b2457610b2433826115e0565b5080610b2f81612597565b9150506109bc565b50505050565b610b4733826115fa565b610bb95760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610535565b610687838383611702565b6000610bcf83610f74565b8210610c435760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610535565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000600c548210610ce55760405162461bcd60e51b815260206004820152602160248201527f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610535565b6000828152600260205260409020546001600160a01b03161515610417565b600a546001600160a01b03163314610d5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610535565b600b80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b610687838383604051806020016040528060008152506111bc565b6000610dd160085490565b8210610e455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610535565b60088281548110610e6657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610ed25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610535565b8051610ee590600d9060208401906120e6565b5050565b6000818152600260205260408120546001600160a01b0316806104175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610535565b60006001600160a01b038216610ff25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610535565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610535565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60606001805461042c9061255c565b6001600160a01b0382163314156111325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610535565b3360008181526005602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111c633836115fa565b6112385760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610535565b610b37848484846118f2565b6000818152600260205260409020546060906001600160a01b03166112d15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610535565b60006112db61197b565b905060008151116112fb5760405180602001604052806000815250611326565b806113058461198a565b60405160200161131692919061246f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610535565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610535565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061150a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061041757507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610417565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906115a782610ee9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610ee5828260405180602001604052806000815250611ad8565b6000818152600260205260408120546001600160a01b03166116845760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610535565b600061168f83610ee9565b9050806001600160a01b0316846001600160a01b031614806116ca5750836001600160a01b03166116bf846104af565b6001600160a01b0316145b806116fa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661171582610ee9565b6001600160a01b0316146117915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610535565b6001600160a01b03821661180c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610535565b611817838383611b61565b61182260008261155a565b6001600160a01b038316600090815260036020526040812080546001929061184b908490612519565b90915550506001600160a01b03821660009081526003602052604081208054600192906118799084906124ed565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118fd848484611702565b61190984848484611c19565b610b375760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610535565b6060600d805461042c9061255c565b6060816119ca57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156119f457806119de81612597565b91506119ed9050600a83612505565b91506119ce565b60008167ffffffffffffffff811115611a1d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a47576020820181803683370190505b5090505b84156116fa57611a5c600183612519565b9150611a69600a866125d0565b611a749060306124ed565b60f81b818381518110611a9757634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611ad1600a86612505565b9450611a4b565b611ae28383611dc6565b611aef6000848484611c19565b6106875760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610535565b6001600160a01b038316611bbc57611bb781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bdf565b816001600160a01b0316836001600160a01b031614611bdf57611bdf8382611f2c565b6001600160a01b038216611bf65761068781611fc9565b826001600160a01b0316826001600160a01b0316146106875761068782826120a2565b60006001600160a01b0384163b15611dbb576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611c7690339089908890889060040161249e565b602060405180830381600087803b158015611c9057600080fd5b505af1925050508015611cc0575060408051601f3d908101601f19168201909252611cbd91810190612390565b60015b611d70573d808015611cee576040519150601f19603f3d011682016040523d82523d6000602084013e611cf3565b606091505b508051611d685760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610535565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506116fa565b506001949350505050565b6001600160a01b038216611e1c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610535565b6000818152600260205260409020546001600160a01b031615611e815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610535565b611e8d60008383611b61565b6001600160a01b0382166000908152600360205260408120805460019290611eb69084906124ed565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f3984610f74565b611f439190612519565b600083815260076020526040902054909150808214611f96576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fdb90600190612519565b6000838152600960205260408120546008805493945090928490811061201157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061204057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061208657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120ad83610f74565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546120f29061255c565b90600052602060002090601f016020900481019282612114576000855561215a565b82601f1061212d57805160ff191683800117855561215a565b8280016001018555821561215a579182015b8281111561215a57825182559160200191906001019061213f565b5061216692915061216a565b5090565b5b80821115612166576000815560010161216b565b600067ffffffffffffffff8084111561219a5761219a612610565b604051601f8501601f19908116603f011681019082821181831017156121c2576121c2612610565b816040528093508581528686860111156121db57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461220c57600080fd5b919050565b600060208284031215612222578081fd5b611326826121f5565b6000806040838503121561223d578081fd5b612246836121f5565b9150612254602084016121f5565b90509250929050565b600080600060608486031215612271578081fd5b61227a846121f5565b9250612288602085016121f5565b9150604084013590509250925092565b600080600080608085870312156122ad578081fd5b6122b6856121f5565b93506122c4602086016121f5565b925060408501359150606085013567ffffffffffffffff8111156122e6578182fd5b8501601f810187136122f6578182fd5b6123058782356020840161217f565b91505092959194509250565b60008060408385031215612323578182fd5b61232c836121f5565b915060208301358015158114612340578182fd5b809150509250929050565b6000806040838503121561235d578182fd5b612366836121f5565b946020939093013593505050565b600060208284031215612385578081fd5b813561132681612626565b6000602082840312156123a1578081fd5b815161132681612626565b6000602082840312156123bd578081fd5b813567ffffffffffffffff8111156123d3578182fd5b8201601f810184136123e3578182fd5b6116fa8482356020840161217f565b600060208284031215612403578081fd5b5035919050565b60006020828403121561241b578081fd5b5051919050565b60008060408385031215612434578182fd5b50508035926020909101359150565b6000815180845261245b816020860160208601612530565b601f01601f19169290920160200192915050565b60008351612481818460208801612530565b835190830190612495818360208801612530565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526124d06080830184612443565b9695505050505050565b6020815260006113266020830184612443565b60008219821115612500576125006125e4565b500190565b600082612514576125146125fa565b500490565b60008282101561252b5761252b6125e4565b500390565b60005b8381101561254b578181015183820152602001612533565b83811115610b375750506000910152565b600181811c9082168061257057607f821691505b6020821081141561259157634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125c9576125c96125e4565b5060010190565b6000826125df576125df6125fa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461265457600080fd5b5056fea26469706673582212204639c2e178e5d87c14981f1fae08e736998bc05cb06c832946bc56fa7ded4b1364736f6c63430008040033

Deployed Bytecode Sourcemap

43114:1684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34329:237;;;;;;:::i;:::-;;:::i;:::-;;;6747:14:1;;6740:22;6722:41;;6710:2;6695:18;34329:237:0;;;;;;;;21548:100;;;:::i;:::-;;;;;;;:::i;23008:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5697:55:1;;;5679:74;;5667:2;5652:18;23008:221:0;5634:125:1;22545:397:0;;;;;;:::i;:::-;;:::i;:::-;;34982:113;35070:10;:17;34982:113;;;16816:25:1;;;16804:2;16789:18;34982:113:0;16771:76:1;43865:930:0;;;;;;:::i;:::-;;:::i;23898:305::-;;;;;;:::i;:::-;;:::i;43286:32::-;;;;;;34650:256;;;;;;:::i;:::-;;:::i;43407:173::-;;;;;;:::i;:::-;;:::i;43776:83::-;;;:::i;24274:151::-;;;;;;:::i;:::-;;:::i;35172:233::-;;;;;;:::i;:::-;;:::i;43688:82::-;;;;;;:::i;:::-;;:::i;21242:239::-;;;;;;:::i;:::-;;:::i;20972:208::-;;;;;;:::i;:::-;;:::i;42197:148::-;;;:::i;41546:87::-;41619:6;;-1:-1:-1;;;;;41619:6:0;41546:87;;21717:104;;;:::i;23301:295::-;;;;;;:::i;:::-;;:::i;24496:285::-;;;;;;:::i;:::-;;:::i;21892:360::-;;;;;;:::i;:::-;;:::i;23667:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23788:25:0;;;23764:4;23788:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23667:164;43249:32;;;;;;;;;;;;42500:244;;;;;;:::i;:::-;;:::i;34329:237::-;34431:4;34455:50;;;34470:35;34455:50;;:103;;;34522:36;34546:11;34522:23;:36::i;:::-;34448:110;34329:237;-1:-1:-1;;34329:237:0:o;21548:100::-;21602:13;21635:5;21628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21548:100;:::o;23008:221::-;23084:7;26337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26337:16:0;23104:73;;;;-1:-1:-1;;;23104:73:0;;12337:2:1;23104:73:0;;;12319:21:1;12376:2;12356:18;;;12349:30;12415:34;12395:18;;;12388:62;12486:14;12466:18;;;12459:42;12518:19;;23104:73:0;;;;;;;;;-1:-1:-1;23197:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23197:24:0;;23008:221::o;22545:397::-;22626:13;22642:23;22657:7;22642:14;:23::i;:::-;22626:39;;22690:5;-1:-1:-1;;;;;22684:11:0;:2;-1:-1:-1;;;;;22684:11:0;;;22676:57;;;;-1:-1:-1;;;22676:57:0;;14743:2:1;22676:57:0;;;14725:21:1;14782:2;14762:18;;;14755:30;14821:34;14801:18;;;14794:62;14892:3;14872:18;;;14865:31;14913:19;;22676:57:0;14715:223:1;22676:57:0;16012:10;-1:-1:-1;;;;;22754:21:0;;;;:62;;-1:-1:-1;22779:37:0;22796:5;16012:10;23667:164;:::i;22779:37::-;22746:154;;;;-1:-1:-1;;;22746:154:0;;10372:2:1;22746:154:0;;;10354:21:1;10411:2;10391:18;;;10384:30;10450:34;10430:18;;;10423:62;10521:26;10501:18;;;10494:54;10565:19;;22746:154:0;10344:246:1;22746:154:0;22913:21;22922:2;22926:7;22913:8;:21::i;:::-;22545:397;;;:::o;43865:930::-;43959:12;;;;;;;43951:61;;;;-1:-1:-1;;;43951:61:0;;9967:2:1;43951:61:0;;;9949:21:1;10006:2;9986:18;;;9979:30;10045:34;10025:18;;;10018:62;10116:6;10096:18;;;10089:34;10140:19;;43951:61:0;9939:226:1;43951:61:0;44048:1;44027:18;:22;44019:64;;;;-1:-1:-1;;;44019:64:0;;10797:2:1;44019:64:0;;;10779:21:1;10836:2;10816:18;;;10809:30;10875:31;10855:18;;;10848:59;10924:18;;44019:64:0;10769:179:1;44019:64:0;44105:4;;:26;;;;;44120:10;44105:26;;;5679:74:1;44090:12:0;;-1:-1:-1;;;;;44105:4:0;;:14;;5652:18:1;;44105:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44090:41;;44156:1;44146:7;:11;44138:67;;;;-1:-1:-1;;;44138:67:0;;15145:2:1;44138:67:0;;;15127:21:1;15184:2;15164:18;;;15157:30;15223:34;15203:18;;;15196:62;15294:13;15274:18;;;15267:41;15325:19;;44138:67:0;15117:233:1;44138:67:0;44231:18;44220:7;:29;;44212:117;;;;-1:-1:-1;;;44212:117:0;;16388:2:1;44212:117:0;;;16370:21:1;16427:2;16407:18;;;16400:30;16466:34;16446:18;;;16439:62;16537:34;16517:18;;;16510:62;16609:13;16588:19;;;16581:42;16640:19;;44212:117:0;16360:305:1;44212:117:0;44355:34;44371:18;44355:13;:34;:::i;:::-;44344:7;:45;;44336:133;;;;-1:-1:-1;;;44336:133:0;;16388:2:1;44336:133:0;;;16370:21:1;16427:2;16407:18;;;16400:30;16466:34;16446:18;;;16439:62;16537:34;16517:18;;;16510:62;16609:13;16588:19;;;16581:42;16640:19;;44336:133:0;16360:305:1;44336:133:0;44482:6;44478:312;44498:7;44494:1;:11;:37;;;;;44513:18;44509:1;:22;44494:37;44478:312;;;44571:10;;35070;:17;44555:26;44547:74;;;;-1:-1:-1;;;44547:74:0;;14339:2:1;44547:74:0;;;14321:21:1;14378:2;14358:18;;;14351:30;14417:34;14397:18;;;14390:62;14488:5;14468:18;;;14461:33;14511:19;;44547:74:0;14311:225:1;44547:74:0;44645:4;;44630:12;;-1:-1:-1;;;;;44645:4:0;:24;44670:10;44682:17;44686:13;44682:1;:17;:::i;:::-;44645:55;;;;;;;;;;-1:-1:-1;;;;;6472:55:1;;;44645::0;;;6454:74:1;6544:18;;;6537:34;6427:18;;44645:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26313:4;26337:16;;;:7;:16;;;;;;44630:70;;-1:-1:-1;;;;;;26337:16:0;44709:74;;44743:30;44753:10;44765:7;44743:9;:30::i;:::-;-1:-1:-1;44533:3:0;;;;:::i;:::-;;;;44478:312;;;;43865:930;;;:::o;23898:305::-;24059:41;16012:10;24092:7;24059:18;:41::i;:::-;24051:103;;;;-1:-1:-1;;;24051:103:0;;15557:2:1;24051:103:0;;;15539:21:1;15596:2;15576:18;;;15569:30;15635:34;15615:18;;;15608:62;15706:19;15686:18;;;15679:47;15743:19;;24051:103:0;15529:239:1;24051:103:0;24167:28;24177:4;24183:2;24187:7;24167:9;:28::i;34650:256::-;34747:7;34783:23;34800:5;34783:16;:23::i;:::-;34775:5;:31;34767:87;;;;-1:-1:-1;;;34767:87:0;;7200:2:1;34767:87:0;;;7182:21:1;7239:2;7219:18;;;7212:30;7278:34;7258:18;;;7251:62;7349:13;7329:18;;;7322:41;7380:19;;34767:87:0;7172:233:1;34767:87:0;-1:-1:-1;;;;;;34872:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34650:256::o;43407:173::-;43465:4;43496:10;;43486:7;:20;43478:66;;;;-1:-1:-1;;;43478:66:0;;13937:2:1;43478:66:0;;;13919:21:1;13976:2;13956:18;;;13949:30;14015:34;13995:18;;;13988:62;14086:3;14066:18;;;14059:31;14107:19;;43478:66:0;13909:223:1;43478:66:0;26313:4;26337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26337:16:0;:30;;43558:16;26248:127;43776:83;41619:6;;-1:-1:-1;;;;;41619:6:0;16012:10;41766:23;41758:68;;;;-1:-1:-1;;;41758:68:0;;12750:2:1;41758:68:0;;;12732:21:1;;;12769:18;;;12762:30;12828:34;12808:18;;;12801:62;12880:18;;41758:68:0;12722:182:1;41758:68:0;43841:12:::1;::::0;;43825:28;;::::1;43841:12:::0;;;;::::1;;;43840:13;43825:28:::0;;::::1;;::::0;;43776:83::o;24274:151::-;24378:39;24395:4;24401:2;24405:7;24378:39;;;;;;;;;;;;:16;:39::i;35172:233::-;35247:7;35283:30;35070:10;:17;;34982:113;35283:30;35275:5;:38;35267:95;;;;-1:-1:-1;;;35267:95:0;;15975:2:1;35267:95:0;;;15957:21:1;16014:2;15994:18;;;15987:30;16053:34;16033:18;;;16026:62;16124:14;16104:18;;;16097:42;16156:19;;35267:95:0;15947:234:1;35267:95:0;35380:10;35391:5;35380:17;;;;;;-1:-1:-1;;;35380:17:0;;;;;;;;;;;;;;;;;35373:24;;35172:233;;;:::o;43688:82::-;41619:6;;-1:-1:-1;;;;;41619:6:0;16012:10;41766:23;41758:68;;;;-1:-1:-1;;;41758:68:0;;12750:2:1;41758:68:0;;;12732:21:1;;;12769:18;;;12762:30;12828:34;12808:18;;;12801:62;12880:18;;41758:68:0;12722:182:1;41758:68:0;43751:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43688:82:::0;:::o;21242:239::-;21314:7;21350:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21350:16:0;21385:19;21377:73;;;;-1:-1:-1;;;21377:73:0;;11566:2:1;21377:73:0;;;11548:21:1;11605:2;11585:18;;;11578:30;11644:34;11624:18;;;11617:62;11715:11;11695:18;;;11688:39;11744:19;;21377:73:0;11538:231:1;20972:208:0;21044:7;-1:-1:-1;;;;;21072:19:0;;21064:74;;;;-1:-1:-1;;;21064:74:0;;11155:2:1;21064:74:0;;;11137:21:1;11194:2;11174:18;;;11167:30;11233:34;11213:18;;;11206:62;11304:12;11284:18;;;11277:40;11334:19;;21064:74:0;11127:232:1;21064:74:0;-1:-1:-1;;;;;;21156:16:0;;;;;:9;:16;;;;;;;20972:208::o;42197:148::-;41619:6;;-1:-1:-1;;;;;41619:6:0;16012:10;41766:23;41758:68;;;;-1:-1:-1;;;41758:68:0;;12750:2:1;41758:68:0;;;12732:21:1;;;12769:18;;;12762:30;12828:34;12808:18;;;12801:62;12880:18;;41758:68:0;12722:182:1;41758:68:0;42288:6:::1;::::0;42267:40:::1;::::0;42304:1:::1;::::0;-1:-1:-1;;;;;42288:6:0::1;::::0;42267:40:::1;::::0;42304:1;;42267:40:::1;42318:6;:19:::0;;;::::1;::::0;;42197:148::o;21717:104::-;21773:13;21806:7;21799:14;;;;;:::i;23301:295::-;-1:-1:-1;;;;;23404:24:0;;16012:10;23404:24;;23396:62;;;;-1:-1:-1;;;23396:62:0;;9200:2:1;23396:62:0;;;9182:21:1;9239:2;9219:18;;;9212:30;9278:27;9258:18;;;9251:55;9323:18;;23396:62:0;9172:175:1;23396:62:0;16012:10;23471:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23471:42:0;;;;;;;;;;;;:53;;;;;;;;;;;;;23540:48;;6722:41:1;;;23471:42:0;;16012:10;23540:48;;6695:18:1;23540:48:0;;;;;;;23301:295;;:::o;24496:285::-;24628:41;16012:10;24661:7;24628:18;:41::i;:::-;24620:103;;;;-1:-1:-1;;;24620:103:0;;15557:2:1;24620:103:0;;;15539:21:1;15596:2;15576:18;;;15569:30;15635:34;15615:18;;;15608:62;15706:19;15686:18;;;15679:47;15743:19;;24620:103:0;15529:239:1;24620:103:0;24734:39;24748:4;24754:2;24758:7;24767:5;24734:13;:39::i;21892:360::-;26313:4;26337:16;;;:7;:16;;;;;;21965:13;;-1:-1:-1;;;;;26337:16:0;21991:76;;;;-1:-1:-1;;;21991:76:0;;13521:2:1;21991:76:0;;;13503:21:1;13560:2;13540:18;;;13533:30;13599:34;13579:18;;;13572:62;13670:17;13650:18;;;13643:45;13705:19;;21991:76:0;13493:237:1;21991:76:0;22080:21;22104:10;:8;:10::i;:::-;22080:34;;22156:1;22138:7;22132:21;:25;:112;;;;;;;;;;;;;;;;;22197:7;22206:18;:7;:16;:18::i;:::-;22180:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22132:112;22125:119;21892:360;-1:-1:-1;;;21892:360:0:o;42500:244::-;41619:6;;-1:-1:-1;;;;;41619:6:0;16012:10;41766:23;41758:68;;;;-1:-1:-1;;;41758:68:0;;12750:2:1;41758:68:0;;;12732:21:1;;;12769:18;;;12762:30;12828:34;12808:18;;;12801:62;12880:18;;41758:68:0;12722:182:1;41758:68:0;-1:-1:-1;;;;;42589:22:0;::::1;42581:73;;;::::0;-1:-1:-1;;;42581:73:0;;8031:2:1;42581:73:0::1;::::0;::::1;8013:21:1::0;8070:2;8050:18;;;8043:30;8109:34;8089:18;;;8082:62;8180:8;8160:18;;;8153:36;8206:19;;42581:73:0::1;8003:228:1::0;42581:73:0::1;42691:6;::::0;42670:38:::1;::::0;-1:-1:-1;;;;;42670:38:0;;::::1;::::0;42691:6:::1;::::0;42670:38:::1;::::0;42691:6:::1;::::0;42670:38:::1;42719:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;42719:17:0;;;::::1;::::0;;;::::1;::::0;;42500:244::o;20616:292::-;20718:4;20742:40;;;20757:25;20742:40;;:105;;-1:-1:-1;20799:48:0;;;20814:33;20799:48;20742:105;:158;;;-1:-1:-1;19256:25:0;19241:40;;;;20864:36;19132:157;30125:174;30200:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;30200:29:0;;;;;;;;:24;;30254:23;30200:24;30254:14;:23::i;:::-;-1:-1:-1;;;;;30245:46:0;;;;;;;;;;;30125:174;;:::o;27232:110::-;27308:26;27318:2;27322:7;27308:26;;;;;;;;;;;;:9;:26::i;26542:348::-;26635:4;26337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26337:16:0;26652:73;;;;-1:-1:-1;;;26652:73:0;;9554:2:1;26652:73:0;;;9536:21:1;9593:2;9573:18;;;9566:30;9632:34;9612:18;;;9605:62;9703:14;9683:18;;;9676:42;9735:19;;26652:73:0;9526:234:1;26652:73:0;26736:13;26752:23;26767:7;26752:14;:23::i;:::-;26736:39;;26805:5;-1:-1:-1;;;;;26794:16:0;:7;-1:-1:-1;;;;;26794:16:0;;:51;;;;26838:7;-1:-1:-1;;;;;26814:31:0;:20;26826:7;26814:11;:20::i;:::-;-1:-1:-1;;;;;26814:31:0;;26794:51;:87;;;-1:-1:-1;;;;;;23788:25:0;;;23764:4;23788:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26849:32;26786:96;26542:348;-1:-1:-1;;;;26542:348:0:o;29463:544::-;29588:4;-1:-1:-1;;;;;29561:31:0;:23;29576:7;29561:14;:23::i;:::-;-1:-1:-1;;;;;29561:31:0;;29553:85;;;;-1:-1:-1;;;29553:85:0;;13111:2:1;29553:85:0;;;13093:21:1;13150:2;13130:18;;;13123:30;13189:34;13169:18;;;13162:62;13260:11;13240:18;;;13233:39;13289:19;;29553:85:0;13083:231:1;29553:85:0;-1:-1:-1;;;;;29657:16:0;;29649:65;;;;-1:-1:-1;;;29649:65:0;;8795:2:1;29649:65:0;;;8777:21:1;8834:2;8814:18;;;8807:30;8873:34;8853:18;;;8846:62;8944:6;8924:18;;;8917:34;8968:19;;29649:65:0;8767:226:1;29649:65:0;29727:39;29748:4;29754:2;29758:7;29727:20;:39::i;:::-;29831:29;29848:1;29852:7;29831:8;:29::i;:::-;-1:-1:-1;;;;;29873:15:0;;;;;;:9;:15;;;;;:20;;29892:1;;29873:15;:20;;29892:1;;29873:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29904:13:0;;;;;;:9;:13;;;;;:18;;29921:1;;29904:13;:18;;29921:1;;29904:18;:::i;:::-;;;;-1:-1:-1;;29933:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;29933:21:0;;;;;;;;;29972:27;;29933:16;;29972:27;;;;;;;29463:544;;;:::o;25663:272::-;25777:28;25787:4;25793:2;25797:7;25777:9;:28::i;:::-;25824:48;25847:4;25853:2;25857:7;25866:5;25824:22;:48::i;:::-;25816:111;;;;-1:-1:-1;;;25816:111:0;;7612:2:1;25816:111:0;;;7594:21:1;7651:2;7631:18;;;7624:30;7690:34;7670:18;;;7663:62;7761:20;7741:18;;;7734:48;7799:19;;25816:111:0;7584:240:1;43586:94:0;43638:13;43667:7;43660:14;;;;;:::i;16583:723::-;16639:13;16860:10;16856:53;;-1:-1:-1;;16887:10:0;;;;;;;;;;;;;;;;;;16583:723::o;16856:53::-;16934:5;16919:12;16975:78;16982:9;;16975:78;;17008:8;;;;:::i;:::-;;-1:-1:-1;17031:10:0;;-1:-1:-1;17039:2:0;17031:10;;:::i;:::-;;;16975:78;;;17063:19;17095:6;17085:17;;;;;;-1:-1:-1;;;17085:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17085:17:0;;17063:39;;17113:154;17120:10;;17113:154;;17147:11;17157:1;17147:11;;:::i;:::-;;-1:-1:-1;17216:10:0;17224:2;17216:5;:10;:::i;:::-;17203:24;;:2;:24;:::i;:::-;17190:39;;17173:6;17180;17173:14;;;;;;-1:-1:-1;;;17173:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;17244:11:0;17253:2;17244:11;;:::i;:::-;;;17113:154;;27569:250;27665:18;27671:2;27675:7;27665:5;:18::i;:::-;27702:54;27733:1;27737:2;27741:7;27750:5;27702:22;:54::i;:::-;27694:117;;;;-1:-1:-1;;;27694:117:0;;7612:2:1;27694:117:0;;;7594:21:1;7651:2;7631:18;;;7624:30;7690:34;7670:18;;;7663:62;7761:20;7741:18;;;7734:48;7799:19;;27694:117:0;7584:240:1;36018:555:0;-1:-1:-1;;;;;36190:18:0;;36186:187;;36225:40;36257:7;37400:10;:17;;37373:24;;;;:15;:24;;;;;:44;;;37428:24;;;;;;;;;;;;37296:164;36225:40;36186:187;;;36295:2;-1:-1:-1;;;;;36287:10:0;:4;-1:-1:-1;;;;;36287:10:0;;36283:90;;36314:47;36347:4;36353:7;36314:32;:47::i;:::-;-1:-1:-1;;;;;36387:16:0;;36383:183;;36420:45;36457:7;36420:36;:45::i;36383:183::-;36493:4;-1:-1:-1;;;;;36487:10:0;:2;-1:-1:-1;;;;;36487:10:0;;36483:83;;36514:40;36542:2;36546:7;36514:27;:40::i;30864:843::-;30985:4;-1:-1:-1;;;;;31011:13:0;;8420:20;8459:8;31007:693;;31047:72;;;;;-1:-1:-1;;;;;31047:36:0;;;;;:72;;16012:10;;31098:4;;31104:7;;31113:5;;31047:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31047:72:0;;;;;;;;-1:-1:-1;;31047:72:0;;;;;;;;;;;;:::i;:::-;;;31043:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31293:13:0;;31289:341;;31336:60;;-1:-1:-1;;;31336:60:0;;7612:2:1;31336:60:0;;;7594:21:1;7651:2;7631:18;;;7624:30;7690:34;7670:18;;;7663:62;7761:20;7741:18;;;7734:48;7799:19;;31336:60:0;7584:240:1;31289:341:0;31580:6;31574:13;31565:6;31561:2;31557:15;31550:38;31043:602;31170:55;;31180:45;31170:55;;-1:-1:-1;31163:62:0;;31007:693;-1:-1:-1;31684:4:0;30864:843;;;;;;:::o;28155:382::-;-1:-1:-1;;;;;28235:16:0;;28227:61;;;;-1:-1:-1;;;28227:61:0;;11976:2:1;28227:61:0;;;11958:21:1;;;11995:18;;;11988:30;12054:34;12034:18;;;12027:62;12106:18;;28227:61:0;11948:182:1;28227:61:0;26313:4;26337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26337:16:0;:30;28299:58;;;;-1:-1:-1;;;28299:58:0;;8438:2:1;28299:58:0;;;8420:21:1;8477:2;8457:18;;;8450:30;8516;8496:18;;;8489:58;8564:18;;28299:58:0;8410:178:1;28299:58:0;28370:45;28399:1;28403:2;28407:7;28370:20;:45::i;:::-;-1:-1:-1;;;;;28428:13:0;;;;;;:9;:13;;;;;:18;;28445:1;;28428:13;:18;;28445:1;;28428:18;:::i;:::-;;;;-1:-1:-1;;28457:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;28457:21:0;;;;;;;;28496:33;;28457:16;;;28496:33;;28457:16;;28496:33;28155:382;;:::o;38087:988::-;38353:22;38403:1;38378:22;38395:4;38378:16;:22::i;:::-;:26;;;;:::i;:::-;38415:18;38436:26;;;:17;:26;;;;;;38353:51;;-1:-1:-1;38569:28:0;;;38565:328;;-1:-1:-1;;;;;38636:18:0;;38614:19;38636:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38687:30;;;;;;:44;;;38804:30;;:17;:30;;;;;:43;;;38565:328;-1:-1:-1;38989:26:0;;;;:17;:26;;;;;;;;38982:33;;;-1:-1:-1;;;;;39033:18:0;;;;;:12;:18;;;;;:34;;;;;;;39026:41;38087:988::o;39370:1079::-;39648:10;:17;39623:22;;39648:21;;39668:1;;39648:21;:::i;:::-;39680:18;39701:24;;;:15;:24;;;;;;40074:10;:26;;39623:46;;-1:-1:-1;39701:24:0;;39623:46;;40074:26;;;;-1:-1:-1;;;40074:26:0;;;;;;;;;;;;;;;;;40052:48;;40138:11;40113:10;40124;40113:22;;;;;;-1:-1:-1;;;40113:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40218:28;;;:15;:28;;;;;;;:41;;;40390:24;;;;;40383:31;40425:10;:16;;;;;-1:-1:-1;;;40425:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39370:1079;;;;:::o;36874:221::-;36959:14;36976:20;36993:2;36976:16;:20::i;:::-;-1:-1:-1;;;;;37007:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37052:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36874:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;-1:-1:-1;;339:24:1;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:2;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:2;;;591:1;588;581:12;550:2;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;88:616;;;;;:::o;709:196::-;777:20;;-1:-1:-1;;;;;826:54:1;;816:65;;806:2;;895:1;892;885:12;806:2;758:147;;;:::o;910:196::-;969:6;1022:2;1010:9;1001:7;997:23;993:32;990:2;;;1043:6;1035;1028:22;990:2;1071:29;1090:9;1071:29;:::i;1111:270::-;1179:6;1187;1240:2;1228:9;1219:7;1215:23;1211:32;1208:2;;;1261:6;1253;1246:22;1208:2;1289:29;1308:9;1289:29;:::i;:::-;1279:39;;1337:38;1371:2;1360:9;1356:18;1337:38;:::i;:::-;1327:48;;1198:183;;;;;:::o;1386:338::-;1463:6;1471;1479;1532:2;1520:9;1511:7;1507:23;1503:32;1500:2;;;1553:6;1545;1538:22;1500:2;1581:29;1600:9;1581:29;:::i;:::-;1571:39;;1629:38;1663:2;1652:9;1648:18;1629:38;:::i;:::-;1619:48;;1714:2;1703:9;1699:18;1686:32;1676:42;;1490:234;;;;;:::o;1729:696::-;1824:6;1832;1840;1848;1901:3;1889:9;1880:7;1876:23;1872:33;1869:2;;;1923:6;1915;1908:22;1869:2;1951:29;1970:9;1951:29;:::i;:::-;1941:39;;1999:38;2033:2;2022:9;2018:18;1999:38;:::i;:::-;1989:48;;2084:2;2073:9;2069:18;2056:32;2046:42;;2139:2;2128:9;2124:18;2111:32;2166:18;2158:6;2155:30;2152:2;;;2203:6;2195;2188:22;2152:2;2231:22;;2284:4;2276:13;;2272:27;-1:-1:-1;2262:2:1;;2318:6;2310;2303:22;2262:2;2346:73;2411:7;2406:2;2393:16;2388:2;2384;2380:11;2346:73;:::i;:::-;2336:83;;;1859:566;;;;;;;:::o;2430:367::-;2495:6;2503;2556:2;2544:9;2535:7;2531:23;2527:32;2524:2;;;2577:6;2569;2562:22;2524:2;2605:29;2624:9;2605:29;:::i;:::-;2595:39;;2684:2;2673:9;2669:18;2656:32;2731:5;2724:13;2717:21;2710:5;2707:32;2697:2;;2758:6;2750;2743:22;2697:2;2786:5;2776:15;;;2514:283;;;;;:::o;2802:264::-;2870:6;2878;2931:2;2919:9;2910:7;2906:23;2902:32;2899:2;;;2952:6;2944;2937:22;2899:2;2980:29;2999:9;2980:29;:::i;:::-;2970:39;3056:2;3041:18;;;;3028:32;;-1:-1:-1;;;2889:177:1:o;3071:255::-;3129:6;3182:2;3170:9;3161:7;3157:23;3153:32;3150:2;;;3203:6;3195;3188:22;3150:2;3247:9;3234:23;3266:30;3290:5;3266:30;:::i;3331:259::-;3400:6;3453:2;3441:9;3432:7;3428:23;3424:32;3421:2;;;3474:6;3466;3459:22;3421:2;3511:9;3505:16;3530:30;3554:5;3530:30;:::i;3595:480::-;3664:6;3717:2;3705:9;3696:7;3692:23;3688:32;3685:2;;;3738:6;3730;3723:22;3685:2;3783:9;3770:23;3816:18;3808:6;3805:30;3802:2;;;3853:6;3845;3838:22;3802:2;3881:22;;3934:4;3926:13;;3922:27;-1:-1:-1;3912:2:1;;3968:6;3960;3953:22;3912:2;3996:73;4061:7;4056:2;4043:16;4038:2;4034;4030:11;3996:73;:::i;4080:190::-;4139:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:2;;;4213:6;4205;4198:22;4160:2;-1:-1:-1;4241:23:1;;4150:120;-1:-1:-1;4150:120:1:o;4275:194::-;4345:6;4398:2;4386:9;4377:7;4373:23;4369:32;4366:2;;;4419:6;4411;4404:22;4366:2;-1:-1:-1;4447:16:1;;4356:113;-1:-1:-1;4356:113:1:o;4474:258::-;4542:6;4550;4603:2;4591:9;4582:7;4578:23;4574:32;4571:2;;;4624:6;4616;4609:22;4571:2;-1:-1:-1;;4652:23:1;;;4722:2;4707:18;;;4694:32;;-1:-1:-1;4561:171:1:o;4737:316::-;4778:3;4816:5;4810:12;4843:6;4838:3;4831:19;4859:63;4915:6;4908:4;4903:3;4899:14;4892:4;4885:5;4881:16;4859:63;:::i;:::-;4967:2;4955:15;-1:-1:-1;;4951:88:1;4942:98;;;;5042:4;4938:109;;4786:267;-1:-1:-1;;4786:267:1:o;5058:470::-;5237:3;5275:6;5269:13;5291:53;5337:6;5332:3;5325:4;5317:6;5313:17;5291:53;:::i;:::-;5407:13;;5366:16;;;;5429:57;5407:13;5366:16;5463:4;5451:17;;5429:57;:::i;:::-;5502:20;;5245:283;-1:-1:-1;;;;5245:283:1:o;5764:511::-;5958:4;-1:-1:-1;;;;;6068:2:1;6060:6;6056:15;6045:9;6038:34;6120:2;6112:6;6108:15;6103:2;6092:9;6088:18;6081:43;;6160:6;6155:2;6144:9;6140:18;6133:34;6203:3;6198:2;6187:9;6183:18;6176:31;6224:45;6264:3;6253:9;6249:19;6241:6;6224:45;:::i;:::-;6216:53;5967:308;-1:-1:-1;;;;;;5967:308:1:o;6774:219::-;6923:2;6912:9;6905:21;6886:4;6943:44;6983:2;6972:9;6968:18;6960:6;6943:44;:::i;16852:128::-;16892:3;16923:1;16919:6;16916:1;16913:13;16910:2;;;16929:18;;:::i;:::-;-1:-1:-1;16965:9:1;;16900:80::o;16985:120::-;17025:1;17051;17041:2;;17056:18;;:::i;:::-;-1:-1:-1;17090:9:1;;17031:74::o;17110:125::-;17150:4;17178:1;17175;17172:8;17169:2;;;17183:18;;:::i;:::-;-1:-1:-1;17220:9:1;;17159:76::o;17240:258::-;17312:1;17322:113;17336:6;17333:1;17330:13;17322:113;;;17412:11;;;17406:18;17393:11;;;17386:39;17358:2;17351:10;17322:113;;;17453:6;17450:1;17447:13;17444:2;;;-1:-1:-1;;17488:1:1;17470:16;;17463:27;17293:205::o;17503:437::-;17582:1;17578:12;;;;17625;;;17646:2;;17700:4;17692:6;17688:17;17678:27;;17646:2;17753;17745:6;17742:14;17722:18;17719:38;17716:2;;;-1:-1:-1;;;17787:1:1;17780:88;17891:4;17888:1;17881:15;17919:4;17916:1;17909:15;17716:2;;17558:382;;;:::o;17945:195::-;17984:3;18015:66;18008:5;18005:77;18002:2;;;18085:18;;:::i;:::-;-1:-1:-1;18132:1:1;18121:13;;17992:148::o;18145:112::-;18177:1;18203;18193:2;;18208:18;;:::i;:::-;-1:-1:-1;18242:9:1;;18183:74::o;18262:184::-;-1:-1:-1;;;18311:1:1;18304:88;18411:4;18408:1;18401:15;18435:4;18432:1;18425:15;18451:184;-1:-1:-1;;;18500:1:1;18493:88;18600:4;18597:1;18590:15;18624:4;18621:1;18614:15;18640:184;-1:-1:-1;;;18689:1:1;18682:88;18789:4;18786:1;18779:15;18813:4;18810:1;18803:15;18829:177;18914:66;18907:5;18903:78;18896:5;18893:89;18883:2;;18996:1;18993;18986:12;18883:2;18873:133;:::o

Swarm Source

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