ETH Price: $3,034.96 (+1.21%)
Gas: 8 Gwei

Token

GOATz (GOATZ)
 

Overview

Max Total Supply

6,315 GOATZ

Holders

2,549

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GOATZ
0x94d3eb20a5e8e4ef815ec5553022daa1a5862911
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GOATz are the 1st ever deflationary PFP NFT that enables owners to customize their NFTS through a process called The Forge. The total supply of GOATz is always decreasing and the art is always being enhanced. They are ERC-721 Tokens and exist on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GOATZ

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

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

// File: node_modules\@openzeppelin\contracts\introspection\IERC165.sol

pragma solidity >=0.6.0 <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: node_modules\@openzeppelin\contracts\token\ERC721\IERC721.sol

pragma solidity >=0.6.2 <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: node_modules\@openzeppelin\contracts\token\ERC721\IERC721Metadata.sol

pragma solidity >=0.6.2 <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: node_modules\@openzeppelin\contracts\token\ERC721\IERC721Enumerable.sol

pragma solidity >=0.6.2 <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: node_modules\@openzeppelin\contracts\token\ERC721\IERC721Receiver.sol

pragma solidity >=0.6.0 <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: node_modules\@openzeppelin\contracts\introspection\ERC165.sol

pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: node_modules\@openzeppelin\contracts\math\SafeMath.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

pragma solidity >=0.6.2 <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);
    }

    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: node_modules\@openzeppelin\contracts\utils\EnumerableSet.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: node_modules\@openzeppelin\contracts\utils\EnumerableMap.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint256(value)));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = byte(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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

pragma solidity >=0.6.0 <0.8.0;












/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

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

        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

        string memory _tokenURI = _tokenURIs[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(_baseURI).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseURI, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = 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 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 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 returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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 = ownerOf(tokenId);

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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(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);

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    /**
     * @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\access\Ownable.sol

pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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\GOATz.sol
pragma solidity 0.7.6;
pragma abicoder v2;




contract GOATZ is ERC721, Ownable {
    using SafeMath for uint256;

    uint256 public itemPrice;
    bool public isSaleActive;
    uint256 constant public totalTokenToMint = 10000;
	uint256 public purchasedGoatz;
    uint256 public startingIpfsId;
    address public fundWallet;
    uint256 private _lastIpfsId;

    constructor (string memory _tokenBaseUri, address _fundWallet) ERC721("GOATz", "GOATZ") {
        _setBaseURI(_tokenBaseUri);
        itemPrice = 50000000000000000; // 0.05 ETH
        isSaleActive = true;
        fundWallet = _fundWallet;
    }

    ////////////////////
    // Action methods //
    ////////////////////

	//purchase multiple goats at once
	function purchaseGoats(uint256 _howMany) public payable {
	    require(_howMany > 0, "Minimum 1 tokens need to be minted");
	    require(_howMany <= goatzRemainingToBeMinted(), "Purchase amount is greater than the token available");
        require(isSaleActive, "Sale is not active");
		require(_howMany <= 20, "max 20 goats at once");
		require(itemPrice.mul(_howMany) == msg.value, "Insufficient ETH to mint");
		for (uint256 i = 0; i < _howMany; i++) {
			_mintGoat(_msgSender());
		}
	}
    
    function _mintGoat(address _to) private {
        if(purchasedGoatz == 0) {
            _lastIpfsId = random(1, totalTokenToMint, uint256(uint160(address(_msgSender()))) + 1);
            startingIpfsId = _lastIpfsId;
        } else {
            _lastIpfsId = getIpfsIdToMint();
        }
        purchasedGoatz++;
        require(!_exists(purchasedGoatz), "Mint: Token already exist.");
        _mint(_to, purchasedGoatz);
        _setTokenURI(purchasedGoatz, uint2str(_lastIpfsId));
    }

    function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
		if (_i == 0) {
			return "0";
		}
		uint256 j = _i;
		uint256 len;
		while (j != 0) {
			len++;
			j /= 10;
		}
		bytes memory bstr = new bytes(len);
		uint256 k = len;
		while (_i != 0) {
			k = k - 1;
			uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
			bytes1 b1 = bytes1(temp);
			bstr[k] = b1;
			_i /= 10;
		}
		return string(bstr);
	}

    function burn(uint256 _tokenId) public {
        require(_exists(_tokenId), "Burn: token does not exist.");
        require(ownerOf(_tokenId) == _msgSender(), "Burn: caller is not token owner.");
        _burn(_tokenId);
    }

    ///////////////////
    // Query methods //
    ///////////////////

    function exists(uint256 _tokenId) external view returns (bool) {
        return _exists(_tokenId);
    }
    
    function goatzRemainingToBeMinted() public view returns (uint256) {
        return totalTokenToMint.sub(purchasedGoatz);
    }

    function isAllTokenMinted() public view returns (bool) {
        return purchasedGoatz == totalTokenToMint;
    }

    function getIpfsIdToMint() public view returns(uint256 _nextIpfsId) {
        require(!isAllTokenMinted(), "All tokens have been minted");
        if(_lastIpfsId == totalTokenToMint && purchasedGoatz < totalTokenToMint) {
            _nextIpfsId = 1;
        } else if(purchasedGoatz < totalTokenToMint) {
            _nextIpfsId = _lastIpfsId + 1;
        }
    }

    function isApprovedOrOwner(address _spender, uint256 _tokenId) external view returns (bool) {
        return _isApprovedOrOwner(_spender, _tokenId);
    }

    //random number
	function random(
		uint256 from,
		uint256 to,
		uint256 salty
	) public view returns (uint256) {
		uint256 seed =
			uint256(
				keccak256(
					abi.encodePacked(
						block.timestamp +
							block.difficulty +
							((uint256(keccak256(abi.encodePacked(block.coinbase)))) / (block.timestamp)) +
							block.gaslimit +
							((uint256(keccak256(abi.encodePacked(_msgSender())))) / (block.timestamp)) +
							block.number +
							salty
					)
				)
			);
		return seed.mod(to - from) + from;
	}

    /////////////
    // Setters //
    /////////////

    function stopSale(bool) external onlyOwner {
        isSaleActive = false;
    }

    function startSale(bool) external onlyOwner {
        isSaleActive = true;
    }

    function changeFundWallet(address _fundWallet) external onlyOwner {
        fundWallet = _fundWallet;
    }

    function withdrawETH(uint256 _amount) external onlyOwner {
        payable(fundWallet).transfer(_amount);
    }

    function setTokenURI(uint256 _tokenId, string memory _uri) external onlyOwner {
        _setTokenURI(_tokenId, _uri);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        _setBaseURI(_baseURI);
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal virtual override(ERC721) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenBaseUri","type":"string"},{"internalType":"address","name":"_fundWallet","type":"address"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_fundWallet","type":"address"}],"name":"changeFundWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIpfsIdToMint","outputs":[{"internalType":"uint256","name":"_nextIpfsId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goatzRemainingToBeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllTokenMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"purchaseGoats","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"purchasedGoatz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"from","type":"uint256"},{"internalType":"uint256","name":"to","type":"uint256"},{"internalType":"uint256","name":"salty","type":"uint256"}],"name":"random","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"","type":"bool"}],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIpfsId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"","type":"bool"}],"name":"stopSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokenToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200319b3803806200319b8339810160408190526200003491620002d3565b6040518060400160405280600581526020016423a7a0aa3d60d91b8152506040518060400160405280600581526020016423a7a0aa2d60d91b815250620000886301ffc9a760e01b6200019260201b60201c565b81516200009d9060069060208501906200020a565b508051620000b39060079060208401906200020a565b50620000c66380ac58cd60e01b62000192565b620000d8635b5e139f60e01b62000192565b620000ea63780e9d6360e01b62000192565b5060009050620000f9620001ed565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200015282620001f1565b66b1a2bc2ec50000600b55600c805460ff19166001179055600f80546001600160a01b039092166001600160a01b031990921691909117905550620003de565b6001600160e01b03198082161415620001c85760405162461bcd60e51b8152600401620001bf90620003a7565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b8051620002069060099060208401906200020a565b5050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200024257600085556200028d565b82601f106200025d57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028d57825182559160200191906001019062000270565b506200029b9291506200029f565b5090565b5b808211156200029b5760008155600101620002a0565b80516001600160a01b0381168114620002ce57600080fd5b919050565b60008060408385031215620002e6578182fd5b82516001600160401b0380821115620002fd578384fd5b818501915085601f83011262000311578384fd5b8151818111156200031e57fe5b6040516020601f8301601f19168201810184811183821017156200033e57fe5b604052828252848301810189101562000355578687fd5b8693505b8284101562000378578484018101518285018201529283019262000359565b828411156200038957868184840101525b81965062000399818901620002b6565b955050505050509250929050565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b612dad80620003ee6000396000f3fe60806040526004361061023b5760003560e01c80636fb4adff1161012e578063b88d4fde116100ab578063ee3bfe441161006f578063ee3bfe4414610643578063f14210a614610663578063f2fde38b14610683578063fd15ec58146106a3578063fd955c1b146106b85761023b565b8063b88d4fde146105b9578063be6b5088146105d9578063c87b56dd146105ee578063dac6db1c1461060e578063e985e9c5146106235761023b565b80638db02a5c116100f25780638db02a5c1461053a57806395d89b411461054f5780639c4c557c14610564578063a22cb46514610584578063a760a29f146105a45761023b565b80636fb4adff146104b057806370a08231146104d0578063715018a6146104f05780637299054c146105055780638da5cb5b146105255761023b565b806342966c68116101bc57806355f804b31161018057806355f804b314610431578063564566a8146104515780636352211e14610466578063664a1ad6146104865780636c0360eb1461049b5761023b565b806342966c681461039e578063430c2081146103be5780634e39658d146103de5780634f558e79146103f15780634f6ccce7146104115761023b565b806318160ddd1161020357806318160ddd1461030757806323b872dd146103295780632f745c591461034957806338e521371461036957806342842e0e1461037e5761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c5578063162094c4146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004612324565b6106cd565b60405161026d9190612557565b60405180910390f35b34801561028257600080fd5b5061028b6106f0565b60405161026d9190612562565b3480156102a457600080fd5b506102b86102b336600461238f565b610787565b60405161026d9190612506565b3480156102d157600080fd5b506102e56102e03660046122e1565b6107d3565b005b3480156102f357600080fd5b506102e56103023660046123a7565b61086b565b34801561031357600080fd5b5061031c6108ae565b60405161026d91906124fd565b34801561033557600080fd5b506102e5610344366004612204565b6108bf565b34801561035557600080fd5b5061031c6103643660046122e1565b6108f7565b34801561037557600080fd5b5061031c610922565b34801561038a57600080fd5b506102e5610399366004612204565b61093b565b3480156103aa57600080fd5b506102e56103b936600461238f565b610956565b3480156103ca57600080fd5b506102606103d93660046122e1565b6109c7565b6102e56103ec36600461238f565b6109d3565b3480156103fd57600080fd5b5061026061040c36600461238f565b610aac565b34801561041d57600080fd5b5061031c61042c36600461238f565b610ab7565b34801561043d57600080fd5b506102e561044c36600461235c565b610acd565b34801561045d57600080fd5b50610260610b0b565b34801561047257600080fd5b506102b861048136600461238f565b610b14565b34801561049257600080fd5b506102b8610b3c565b3480156104a757600080fd5b5061028b610b4b565b3480156104bc57600080fd5b506102e56104cb3660046121b8565b610bac565b3480156104dc57600080fd5b5061031c6104eb3660046121b8565b610c03565b3480156104fc57600080fd5b506102e5610c4c565b34801561051157600080fd5b5061031c6105203660046123ec565b610ccb565b34801561053157600080fd5b506102b8610d89565b34801561054657600080fd5b5061031c610d98565b34801561055b57600080fd5b5061028b610d9e565b34801561057057600080fd5b506102e561057f36600461230a565b610dff565b34801561059057600080fd5b506102e561059f3660046122b8565b610e44565b3480156105b057600080fd5b50610260610f12565b3480156105c557600080fd5b506102e56105d436600461223f565b610f1c565b3480156105e557600080fd5b5061031c610f5b565b3480156105fa57600080fd5b5061028b61060936600461238f565b610fbb565b34801561061a57600080fd5b5061031c611103565b34801561062f57600080fd5b5061026061063e3660046121d2565b611109565b34801561064f57600080fd5b506102e561065e36600461230a565b611137565b34801561066f57600080fd5b506102e561067e36600461238f565b611179565b34801561068f57600080fd5b506102e561069e3660046121b8565b6111e8565b3480156106af57600080fd5b5061031c61129f565b3480156106c457600080fd5b5061031c6112a5565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077c5780601f106107515761010080835404028352916020019161077c565b820191906000526020600020905b81548152906001019060200180831161075f57829003601f168201915b505050505090505b90565b6000610792826112ab565b6107b75760405162461bcd60e51b81526004016107ae90612962565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107de82610b14565b9050806001600160a01b0316836001600160a01b031614156108125760405162461bcd60e51b81526004016107ae90612ac7565b806001600160a01b03166108246112b8565b6001600160a01b0316148061084057506108408161063e6112b8565b61085c5760405162461bcd60e51b81526004016107ae906127b0565b61086683836112bc565b505050565b6108736112b8565b600a546001600160a01b039081169116146108a05760405162461bcd60e51b81526004016107ae906129fa565b6108aa828261132a565b5050565b60006108ba600261136e565b905090565b6108d06108ca6112b8565b82611379565b6108ec5760405162461bcd60e51b81526004016107ae90612b7f565b6108668383836113fe565b6001600160a01b0382166000908152600160205260408120610919908361150c565b90505b92915050565b60006108ba600d5461271061151890919063ffffffff16565b61086683838360405180602001604052806000815250610f1c565b61095f816112ab565b61097b5760405162461bcd60e51b81526004016107ae90612c35565b6109836112b8565b6001600160a01b031661099582610b14565b6001600160a01b0316146109bb5760405162461bcd60e51b81526004016107ae90612b4a565b6109c48161155a565b50565b60006109198383611379565b600081116109f35760405162461bcd60e51b81526004016107ae90612b08565b6109fb610922565b811115610a1a5760405162461bcd60e51b81526004016107ae90612899565b600c5460ff16610a3c5760405162461bcd60e51b81526004016107ae90612738565b6014811115610a5d5760405162461bcd60e51b81526004016107ae90612c07565b600b543490610a6c9083611627565b14610a895760405162461bcd60e51b81526004016107ae90612ca3565b60005b818110156108aa57610aa4610a9f6112b8565b611661565b600101610a8c565b600061091c826112ab565b600080610ac56002846116f5565b509392505050565b610ad56112b8565b600a546001600160a01b03908116911614610b025760405162461bcd60e51b81526004016107ae906129fa565b6109c481611711565b600c5460ff1681565b600061091c82604051806060016040528060298152602001612d4f6029913960029190611724565b600f546001600160a01b031681565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077c5780601f106107515761010080835404028352916020019161077c565b610bb46112b8565b600a546001600160a01b03908116911614610be15760405162461bcd60e51b81526004016107ae906129fa565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610c2b5760405162461bcd60e51b81526004016107ae9061280d565b6001600160a01b038216600090815260016020526040902061091c9061136e565b610c546112b8565b600a546001600160a01b03908116911614610c815760405162461bcd60e51b81526004016107ae906129fa565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600080824342610cd96112b8565b604051602001610ce99190612443565b6040516020818303038152906040528051906020012060001c81610d0957fe5b04454241604051602001610d1d9190612443565b6040516020818303038152906040528051906020012060001c81610d3d57fe5b044442010101010101604051602001610d5691906124fd565b60408051601f198184030181529190528051602090910120905084610d7d82828703611731565b019150505b9392505050565b600a546001600160a01b031690565b600e5481565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077c5780601f106107515761010080835404028352916020019161077c565b610e076112b8565b600a546001600160a01b03908116911614610e345760405162461bcd60e51b81526004016107ae906129fa565b50600c805460ff19166001179055565b610e4c6112b8565b6001600160a01b0316826001600160a01b03161415610e7d5760405162461bcd60e51b81526004016107ae90612701565b8060056000610e8a6112b8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ece6112b8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f069190612557565b60405180910390a35050565b600d546127101490565b610f2d610f276112b8565b83611379565b610f495760405162461bcd60e51b81526004016107ae90612b7f565b610f5584848484611773565b50505050565b6000610f65610f12565b15610f825760405162461bcd60e51b81526004016107ae90612c6c565b612710601054148015610f985750612710600d54105b15610fa557506001610784565b612710600d541015610784575060105460010190565b6060610fc6826112ab565b610fe25760405162461bcd60e51b81526004016107ae90612a78565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156110755780601f1061104a57610100808354040283529160200191611075565b820191906000526020600020905b81548152906001019060200180831161105857829003601f168201915b50506009549394505050506002600019610100600184161502019091160461109e5790506106eb565b8051156110d0576009816040516020016110b992919061247c565b6040516020818303038152906040529150506106eb565b60096110db846117a6565b6040516020016110ec92919061247c565b604051602081830303815290604052915050919050565b600b5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61113f6112b8565b600a546001600160a01b0390811691161461116c5760405162461bcd60e51b81526004016107ae906129fa565b50600c805460ff19169055565b6111816112b8565b600a546001600160a01b039081169116146111ae5760405162461bcd60e51b81526004016107ae906129fa565b600f546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108aa573d6000803e3d6000fd5b6111f06112b8565b600a546001600160a01b0390811691161461121d5760405162461bcd60e51b81526004016107ae906129fa565b6001600160a01b0381166112435760405162461bcd60e51b81526004016107ae90612640565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61271081565b600d5481565b600061091c600283611881565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112f182610b14565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611333826112ab565b61134f5760405162461bcd60e51b81526004016107ae906129ae565b600082815260086020908152604090912082516108669284019061202d565b600061091c8261188d565b6000611384826112ab565b6113a05760405162461bcd60e51b81526004016107ae90612764565b60006113ab83610b14565b9050806001600160a01b0316846001600160a01b031614806113e65750836001600160a01b03166113db84610787565b6001600160a01b0316145b806113f657506113f68185611109565b949350505050565b826001600160a01b031661141182610b14565b6001600160a01b0316146114375760405162461bcd60e51b81526004016107ae90612a2f565b6001600160a01b03821661145d5760405162461bcd60e51b81526004016107ae906126bd565b611468838383611891565b6114736000826112bc565b6001600160a01b0383166000908152600160205260409020611495908261189c565b506001600160a01b03821660009081526001602052604090206114b890826118a8565b506114c5600282846118b4565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061091983836118ca565b600061091983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061190f565b600061156582610b14565b905061157381600084611891565b61157e6000836112bc565b60008281526008602052604090205460026000196101006001841615020190911604156115bc5760008281526008602052604081206115bc916120b9565b6001600160a01b03811660009081526001602052604090206115de908361189c565b506115ea60028361193b565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000826116365750600061091c565b8282028284828161164357fe5b04146109195760405162461bcd60e51b81526004016107ae90612921565b600d546116965761168960016127106116786112b8565b6001600160a01b0316600101610ccb565b6010819055600e556116a2565b61169e610f5b565b6010555b600d8054600101908190556116b6906112ab565b156116d35760405162461bcd60e51b81526004016107ae90612609565b6116df81600d54611947565b6109c4600d546116f0601054611a0b565b61132a565b60008080806117048686611ae4565b9097909650945050505050565b80516108aa90600990602084019061202d565b60006113f6848484611b40565b600061091983836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250611b9f565b61177e8484846113fe565b61178a84848484611bd3565b610f555760405162461bcd60e51b81526004016107ae906125b7565b6060816117cb57506040805180820190915260018152600360fc1b60208201526106eb565b8160005b81156117e357600101600a820491506117cf565b60008167ffffffffffffffff811180156117fc57600080fd5b506040519080825280601f01601f191660200182016040528015611827576020820181803683370190505b50859350905060001982015b831561187857600a840660300160f81b8282806001900393508151811061185657fe5b60200101906001600160f81b031916908160001a905350600a84049350611833565b50949350505050565b60006109198383611cb2565b5490565b610866838383610866565b60006109198383611cca565b60006109198383611d90565b60006113f684846001600160a01b038516611dda565b815460009082106118ed5760405162461bcd60e51b81526004016107ae90612575565b8260000182815481106118fc57fe5b9060005260206000200154905092915050565b600081848411156119335760405162461bcd60e51b81526004016107ae9190612562565b505050900390565b60006109198383611e71565b6001600160a01b03821661196d5760405162461bcd60e51b81526004016107ae906128ec565b611976816112ab565b156119935760405162461bcd60e51b81526004016107ae90612686565b61199f60008383611891565b6001600160a01b03821660009081526001602052604090206119c190826118a8565b506119ce600282846118b4565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081611a3057506040805180820190915260018152600360fc1b60208201526106eb565b8160005b8115611a4857600101600a82049150611a34565b60008167ffffffffffffffff81118015611a6157600080fd5b506040519080825280601f01601f191660200182016040528015611a8c576020820181803683370190505b509050815b851561187857600019016000600a8704600a028703603001905060008160f81b905080848481518110611ac057fe5b60200101906001600160f81b031916908160001a905350600a880497505050611a91565b815460009081908310611b095760405162461bcd60e51b81526004016107ae90612857565b6000846000018481548110611b1a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611b705760405162461bcd60e51b81526004016107ae9190612562565b50846000016001820381548110611b8357fe5b9060005260206000209060020201600101549150509392505050565b60008183611bc05760405162461bcd60e51b81526004016107ae9190612562565b50828481611bca57fe5b06949350505050565b6000611be7846001600160a01b0316611f45565b611bf3575060016113f6565b6000611c7b630a85bd0160e11b611c086112b8565b888787604051602401611c1e949392919061251a565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612d1d603291396001600160a01b0388169190611f4b565b9050600081806020019051810190611c939190612340565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611d865783546000198083019190810190600090879083908110611cfd57fe5b9060005260206000200154905080876000018481548110611d1a57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611d4a57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061091c565b600091505061091c565b6000611d9c8383611cb2565b611dd25750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561091c565b50600061091c565b600082815260018401602052604081205480611e3f575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055610d82565b82856000016001830381548110611e5257fe5b9060005260206000209060020201600101819055506000915050610d82565b60008181526001830160205260408120548015611d865783546000198083019190810190600090879083908110611ea457fe5b9060005260206000209060020201905080876000018481548110611ec457fe5b600091825260208083208454600290930201918255600193840154918401919091558354825289830190526040902090840190558654879080611f0357fe5b600082815260208082206002600019909401938402018281556001908101839055929093558881528982019092526040822091909155945061091c9350505050565b3b151590565b60606113f6848460008585611f5f85611f45565b611f7b5760405162461bcd60e51b81526004016107ae90612bd0565b600080866001600160a01b03168587604051611f979190612460565b60006040518083038185875af1925050503d8060008114611fd4576040519150601f19603f3d011682016040523d82523d6000602084013e611fd9565b606091505b5091509150611fe9828286611ff4565b979650505050505050565b60608315612003575081610d82565b8251156120135782518084602001fd5b8160405162461bcd60e51b81526004016107ae9190612562565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261206357600085556120a9565b82601f1061207c57805160ff19168380011785556120a9565b828001600101855582156120a9579182015b828111156120a957825182559160200191906001019061208e565b506120b59291506120f9565b5090565b50805460018160011615610100020316600290046000825580601f106120df57506109c4565b601f0160209004906000526020600020908101906109c491905b5b808211156120b557600081556001016120fa565b600067ffffffffffffffff8084111561212357fe5b604051601f8501601f19168101602001828111828210171561214157fe5b60405284815291508183850186101561215957600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106eb57600080fd5b803580151581146106eb57600080fd5b600082601f8301126121a9578081fd5b6109198383356020850161210e565b6000602082840312156121c9578081fd5b61091982612172565b600080604083850312156121e4578081fd5b6121ed83612172565b91506121fb60208401612172565b90509250929050565b600080600060608486031215612218578081fd5b61222184612172565b925061222f60208501612172565b9150604084013590509250925092565b60008060008060808587031215612254578081fd5b61225d85612172565b935061226b60208601612172565b925060408501359150606085013567ffffffffffffffff81111561228d578182fd5b8501601f8101871361229d578182fd5b6122ac8782356020840161210e565b91505092959194509250565b600080604083850312156122ca578182fd5b6122d383612172565b91506121fb60208401612189565b600080604083850312156122f3578182fd5b6122fc83612172565b946020939093013593505050565b60006020828403121561231b578081fd5b61091982612189565b600060208284031215612335578081fd5b813561091981612d06565b600060208284031215612351578081fd5b815161091981612d06565b60006020828403121561236d578081fd5b813567ffffffffffffffff811115612383578182fd5b6113f684828501612199565b6000602082840312156123a0578081fd5b5035919050565b600080604083850312156123b9578182fd5b82359150602083013567ffffffffffffffff8111156123d6578182fd5b6123e285828601612199565b9150509250929050565b600080600060608486031215612400578283fd5b505081359360208301359350604090920135919050565b6000815180845261242f816020860160208601612cda565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008251612472818460208701612cda565b9190910192915050565b600080845460018082166000811461249b57600181146124b2576124e1565b60ff198316865260028304607f16860193506124e1565b600283048886526020808720875b838110156124d95781548a8201529085019082016124c0565b505050860193505b50505083516124f4818360208801612cda565b01949350505050565b90815260200190565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254d90830184612417565b9695505050505050565b901515815260200190565b6000602082526109196020830184612417565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601a908201527f4d696e743a20546f6b656e20616c72656164792065786973742e000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526033908201527f507572636861736520616d6f756e742069732067726561746572207468616e2060408201527274686520746f6b656e20617661696c61626c6560681b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526022908201527f4d696e696d756d203120746f6b656e73206e65656420746f206265206d696e74604082015261195960f21b606082015260800190565b6020808252818101527f4275726e3a2063616c6c6572206973206e6f7420746f6b656e206f776e65722e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601490820152736d617820323020676f617473206174206f6e636560601b604082015260600190565b6020808252601b908201527f4275726e3a20746f6b656e20646f6573206e6f742065786973742e0000000000604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b60208082526018908201527f496e73756666696369656e742045544820746f206d696e740000000000000000604082015260600190565b60005b83811015612cf5578181015183820152602001612cdd565b83811115610f555750506000910152565b6001600160e01b0319811681146109c457600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ebe33aa65a3d76061a742b1ec487c2abe3af465f25c91d1d9c28a195a4de995664736f6c6343000706003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000006401694dba7b91a105b0653ce167cf5527b804560000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636fb4adff1161012e578063b88d4fde116100ab578063ee3bfe441161006f578063ee3bfe4414610643578063f14210a614610663578063f2fde38b14610683578063fd15ec58146106a3578063fd955c1b146106b85761023b565b8063b88d4fde146105b9578063be6b5088146105d9578063c87b56dd146105ee578063dac6db1c1461060e578063e985e9c5146106235761023b565b80638db02a5c116100f25780638db02a5c1461053a57806395d89b411461054f5780639c4c557c14610564578063a22cb46514610584578063a760a29f146105a45761023b565b80636fb4adff146104b057806370a08231146104d0578063715018a6146104f05780637299054c146105055780638da5cb5b146105255761023b565b806342966c68116101bc57806355f804b31161018057806355f804b314610431578063564566a8146104515780636352211e14610466578063664a1ad6146104865780636c0360eb1461049b5761023b565b806342966c681461039e578063430c2081146103be5780634e39658d146103de5780634f558e79146103f15780634f6ccce7146104115761023b565b806318160ddd1161020357806318160ddd1461030757806323b872dd146103295780632f745c591461034957806338e521371461036957806342842e0e1461037e5761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c5578063162094c4146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004612324565b6106cd565b60405161026d9190612557565b60405180910390f35b34801561028257600080fd5b5061028b6106f0565b60405161026d9190612562565b3480156102a457600080fd5b506102b86102b336600461238f565b610787565b60405161026d9190612506565b3480156102d157600080fd5b506102e56102e03660046122e1565b6107d3565b005b3480156102f357600080fd5b506102e56103023660046123a7565b61086b565b34801561031357600080fd5b5061031c6108ae565b60405161026d91906124fd565b34801561033557600080fd5b506102e5610344366004612204565b6108bf565b34801561035557600080fd5b5061031c6103643660046122e1565b6108f7565b34801561037557600080fd5b5061031c610922565b34801561038a57600080fd5b506102e5610399366004612204565b61093b565b3480156103aa57600080fd5b506102e56103b936600461238f565b610956565b3480156103ca57600080fd5b506102606103d93660046122e1565b6109c7565b6102e56103ec36600461238f565b6109d3565b3480156103fd57600080fd5b5061026061040c36600461238f565b610aac565b34801561041d57600080fd5b5061031c61042c36600461238f565b610ab7565b34801561043d57600080fd5b506102e561044c36600461235c565b610acd565b34801561045d57600080fd5b50610260610b0b565b34801561047257600080fd5b506102b861048136600461238f565b610b14565b34801561049257600080fd5b506102b8610b3c565b3480156104a757600080fd5b5061028b610b4b565b3480156104bc57600080fd5b506102e56104cb3660046121b8565b610bac565b3480156104dc57600080fd5b5061031c6104eb3660046121b8565b610c03565b3480156104fc57600080fd5b506102e5610c4c565b34801561051157600080fd5b5061031c6105203660046123ec565b610ccb565b34801561053157600080fd5b506102b8610d89565b34801561054657600080fd5b5061031c610d98565b34801561055b57600080fd5b5061028b610d9e565b34801561057057600080fd5b506102e561057f36600461230a565b610dff565b34801561059057600080fd5b506102e561059f3660046122b8565b610e44565b3480156105b057600080fd5b50610260610f12565b3480156105c557600080fd5b506102e56105d436600461223f565b610f1c565b3480156105e557600080fd5b5061031c610f5b565b3480156105fa57600080fd5b5061028b61060936600461238f565b610fbb565b34801561061a57600080fd5b5061031c611103565b34801561062f57600080fd5b5061026061063e3660046121d2565b611109565b34801561064f57600080fd5b506102e561065e36600461230a565b611137565b34801561066f57600080fd5b506102e561067e36600461238f565b611179565b34801561068f57600080fd5b506102e561069e3660046121b8565b6111e8565b3480156106af57600080fd5b5061031c61129f565b3480156106c457600080fd5b5061031c6112a5565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077c5780601f106107515761010080835404028352916020019161077c565b820191906000526020600020905b81548152906001019060200180831161075f57829003601f168201915b505050505090505b90565b6000610792826112ab565b6107b75760405162461bcd60e51b81526004016107ae90612962565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107de82610b14565b9050806001600160a01b0316836001600160a01b031614156108125760405162461bcd60e51b81526004016107ae90612ac7565b806001600160a01b03166108246112b8565b6001600160a01b0316148061084057506108408161063e6112b8565b61085c5760405162461bcd60e51b81526004016107ae906127b0565b61086683836112bc565b505050565b6108736112b8565b600a546001600160a01b039081169116146108a05760405162461bcd60e51b81526004016107ae906129fa565b6108aa828261132a565b5050565b60006108ba600261136e565b905090565b6108d06108ca6112b8565b82611379565b6108ec5760405162461bcd60e51b81526004016107ae90612b7f565b6108668383836113fe565b6001600160a01b0382166000908152600160205260408120610919908361150c565b90505b92915050565b60006108ba600d5461271061151890919063ffffffff16565b61086683838360405180602001604052806000815250610f1c565b61095f816112ab565b61097b5760405162461bcd60e51b81526004016107ae90612c35565b6109836112b8565b6001600160a01b031661099582610b14565b6001600160a01b0316146109bb5760405162461bcd60e51b81526004016107ae90612b4a565b6109c48161155a565b50565b60006109198383611379565b600081116109f35760405162461bcd60e51b81526004016107ae90612b08565b6109fb610922565b811115610a1a5760405162461bcd60e51b81526004016107ae90612899565b600c5460ff16610a3c5760405162461bcd60e51b81526004016107ae90612738565b6014811115610a5d5760405162461bcd60e51b81526004016107ae90612c07565b600b543490610a6c9083611627565b14610a895760405162461bcd60e51b81526004016107ae90612ca3565b60005b818110156108aa57610aa4610a9f6112b8565b611661565b600101610a8c565b600061091c826112ab565b600080610ac56002846116f5565b509392505050565b610ad56112b8565b600a546001600160a01b03908116911614610b025760405162461bcd60e51b81526004016107ae906129fa565b6109c481611711565b600c5460ff1681565b600061091c82604051806060016040528060298152602001612d4f6029913960029190611724565b600f546001600160a01b031681565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077c5780601f106107515761010080835404028352916020019161077c565b610bb46112b8565b600a546001600160a01b03908116911614610be15760405162461bcd60e51b81526004016107ae906129fa565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610c2b5760405162461bcd60e51b81526004016107ae9061280d565b6001600160a01b038216600090815260016020526040902061091c9061136e565b610c546112b8565b600a546001600160a01b03908116911614610c815760405162461bcd60e51b81526004016107ae906129fa565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600080824342610cd96112b8565b604051602001610ce99190612443565b6040516020818303038152906040528051906020012060001c81610d0957fe5b04454241604051602001610d1d9190612443565b6040516020818303038152906040528051906020012060001c81610d3d57fe5b044442010101010101604051602001610d5691906124fd565b60408051601f198184030181529190528051602090910120905084610d7d82828703611731565b019150505b9392505050565b600a546001600160a01b031690565b600e5481565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077c5780601f106107515761010080835404028352916020019161077c565b610e076112b8565b600a546001600160a01b03908116911614610e345760405162461bcd60e51b81526004016107ae906129fa565b50600c805460ff19166001179055565b610e4c6112b8565b6001600160a01b0316826001600160a01b03161415610e7d5760405162461bcd60e51b81526004016107ae90612701565b8060056000610e8a6112b8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ece6112b8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f069190612557565b60405180910390a35050565b600d546127101490565b610f2d610f276112b8565b83611379565b610f495760405162461bcd60e51b81526004016107ae90612b7f565b610f5584848484611773565b50505050565b6000610f65610f12565b15610f825760405162461bcd60e51b81526004016107ae90612c6c565b612710601054148015610f985750612710600d54105b15610fa557506001610784565b612710600d541015610784575060105460010190565b6060610fc6826112ab565b610fe25760405162461bcd60e51b81526004016107ae90612a78565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156110755780601f1061104a57610100808354040283529160200191611075565b820191906000526020600020905b81548152906001019060200180831161105857829003601f168201915b50506009549394505050506002600019610100600184161502019091160461109e5790506106eb565b8051156110d0576009816040516020016110b992919061247c565b6040516020818303038152906040529150506106eb565b60096110db846117a6565b6040516020016110ec92919061247c565b604051602081830303815290604052915050919050565b600b5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61113f6112b8565b600a546001600160a01b0390811691161461116c5760405162461bcd60e51b81526004016107ae906129fa565b50600c805460ff19169055565b6111816112b8565b600a546001600160a01b039081169116146111ae5760405162461bcd60e51b81526004016107ae906129fa565b600f546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108aa573d6000803e3d6000fd5b6111f06112b8565b600a546001600160a01b0390811691161461121d5760405162461bcd60e51b81526004016107ae906129fa565b6001600160a01b0381166112435760405162461bcd60e51b81526004016107ae90612640565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61271081565b600d5481565b600061091c600283611881565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112f182610b14565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611333826112ab565b61134f5760405162461bcd60e51b81526004016107ae906129ae565b600082815260086020908152604090912082516108669284019061202d565b600061091c8261188d565b6000611384826112ab565b6113a05760405162461bcd60e51b81526004016107ae90612764565b60006113ab83610b14565b9050806001600160a01b0316846001600160a01b031614806113e65750836001600160a01b03166113db84610787565b6001600160a01b0316145b806113f657506113f68185611109565b949350505050565b826001600160a01b031661141182610b14565b6001600160a01b0316146114375760405162461bcd60e51b81526004016107ae90612a2f565b6001600160a01b03821661145d5760405162461bcd60e51b81526004016107ae906126bd565b611468838383611891565b6114736000826112bc565b6001600160a01b0383166000908152600160205260409020611495908261189c565b506001600160a01b03821660009081526001602052604090206114b890826118a8565b506114c5600282846118b4565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061091983836118ca565b600061091983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061190f565b600061156582610b14565b905061157381600084611891565b61157e6000836112bc565b60008281526008602052604090205460026000196101006001841615020190911604156115bc5760008281526008602052604081206115bc916120b9565b6001600160a01b03811660009081526001602052604090206115de908361189c565b506115ea60028361193b565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000826116365750600061091c565b8282028284828161164357fe5b04146109195760405162461bcd60e51b81526004016107ae90612921565b600d546116965761168960016127106116786112b8565b6001600160a01b0316600101610ccb565b6010819055600e556116a2565b61169e610f5b565b6010555b600d8054600101908190556116b6906112ab565b156116d35760405162461bcd60e51b81526004016107ae90612609565b6116df81600d54611947565b6109c4600d546116f0601054611a0b565b61132a565b60008080806117048686611ae4565b9097909650945050505050565b80516108aa90600990602084019061202d565b60006113f6848484611b40565b600061091983836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250611b9f565b61177e8484846113fe565b61178a84848484611bd3565b610f555760405162461bcd60e51b81526004016107ae906125b7565b6060816117cb57506040805180820190915260018152600360fc1b60208201526106eb565b8160005b81156117e357600101600a820491506117cf565b60008167ffffffffffffffff811180156117fc57600080fd5b506040519080825280601f01601f191660200182016040528015611827576020820181803683370190505b50859350905060001982015b831561187857600a840660300160f81b8282806001900393508151811061185657fe5b60200101906001600160f81b031916908160001a905350600a84049350611833565b50949350505050565b60006109198383611cb2565b5490565b610866838383610866565b60006109198383611cca565b60006109198383611d90565b60006113f684846001600160a01b038516611dda565b815460009082106118ed5760405162461bcd60e51b81526004016107ae90612575565b8260000182815481106118fc57fe5b9060005260206000200154905092915050565b600081848411156119335760405162461bcd60e51b81526004016107ae9190612562565b505050900390565b60006109198383611e71565b6001600160a01b03821661196d5760405162461bcd60e51b81526004016107ae906128ec565b611976816112ab565b156119935760405162461bcd60e51b81526004016107ae90612686565b61199f60008383611891565b6001600160a01b03821660009081526001602052604090206119c190826118a8565b506119ce600282846118b4565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081611a3057506040805180820190915260018152600360fc1b60208201526106eb565b8160005b8115611a4857600101600a82049150611a34565b60008167ffffffffffffffff81118015611a6157600080fd5b506040519080825280601f01601f191660200182016040528015611a8c576020820181803683370190505b509050815b851561187857600019016000600a8704600a028703603001905060008160f81b905080848481518110611ac057fe5b60200101906001600160f81b031916908160001a905350600a880497505050611a91565b815460009081908310611b095760405162461bcd60e51b81526004016107ae90612857565b6000846000018481548110611b1a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611b705760405162461bcd60e51b81526004016107ae9190612562565b50846000016001820381548110611b8357fe5b9060005260206000209060020201600101549150509392505050565b60008183611bc05760405162461bcd60e51b81526004016107ae9190612562565b50828481611bca57fe5b06949350505050565b6000611be7846001600160a01b0316611f45565b611bf3575060016113f6565b6000611c7b630a85bd0160e11b611c086112b8565b888787604051602401611c1e949392919061251a565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612d1d603291396001600160a01b0388169190611f4b565b9050600081806020019051810190611c939190612340565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611d865783546000198083019190810190600090879083908110611cfd57fe5b9060005260206000200154905080876000018481548110611d1a57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611d4a57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061091c565b600091505061091c565b6000611d9c8383611cb2565b611dd25750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561091c565b50600061091c565b600082815260018401602052604081205480611e3f575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055610d82565b82856000016001830381548110611e5257fe5b9060005260206000209060020201600101819055506000915050610d82565b60008181526001830160205260408120548015611d865783546000198083019190810190600090879083908110611ea457fe5b9060005260206000209060020201905080876000018481548110611ec457fe5b600091825260208083208454600290930201918255600193840154918401919091558354825289830190526040902090840190558654879080611f0357fe5b600082815260208082206002600019909401938402018281556001908101839055929093558881528982019092526040822091909155945061091c9350505050565b3b151590565b60606113f6848460008585611f5f85611f45565b611f7b5760405162461bcd60e51b81526004016107ae90612bd0565b600080866001600160a01b03168587604051611f979190612460565b60006040518083038185875af1925050503d8060008114611fd4576040519150601f19603f3d011682016040523d82523d6000602084013e611fd9565b606091505b5091509150611fe9828286611ff4565b979650505050505050565b60608315612003575081610d82565b8251156120135782518084602001fd5b8160405162461bcd60e51b81526004016107ae9190612562565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261206357600085556120a9565b82601f1061207c57805160ff19168380011785556120a9565b828001600101855582156120a9579182015b828111156120a957825182559160200191906001019061208e565b506120b59291506120f9565b5090565b50805460018160011615610100020316600290046000825580601f106120df57506109c4565b601f0160209004906000526020600020908101906109c491905b5b808211156120b557600081556001016120fa565b600067ffffffffffffffff8084111561212357fe5b604051601f8501601f19168101602001828111828210171561214157fe5b60405284815291508183850186101561215957600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106eb57600080fd5b803580151581146106eb57600080fd5b600082601f8301126121a9578081fd5b6109198383356020850161210e565b6000602082840312156121c9578081fd5b61091982612172565b600080604083850312156121e4578081fd5b6121ed83612172565b91506121fb60208401612172565b90509250929050565b600080600060608486031215612218578081fd5b61222184612172565b925061222f60208501612172565b9150604084013590509250925092565b60008060008060808587031215612254578081fd5b61225d85612172565b935061226b60208601612172565b925060408501359150606085013567ffffffffffffffff81111561228d578182fd5b8501601f8101871361229d578182fd5b6122ac8782356020840161210e565b91505092959194509250565b600080604083850312156122ca578182fd5b6122d383612172565b91506121fb60208401612189565b600080604083850312156122f3578182fd5b6122fc83612172565b946020939093013593505050565b60006020828403121561231b578081fd5b61091982612189565b600060208284031215612335578081fd5b813561091981612d06565b600060208284031215612351578081fd5b815161091981612d06565b60006020828403121561236d578081fd5b813567ffffffffffffffff811115612383578182fd5b6113f684828501612199565b6000602082840312156123a0578081fd5b5035919050565b600080604083850312156123b9578182fd5b82359150602083013567ffffffffffffffff8111156123d6578182fd5b6123e285828601612199565b9150509250929050565b600080600060608486031215612400578283fd5b505081359360208301359350604090920135919050565b6000815180845261242f816020860160208601612cda565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008251612472818460208701612cda565b9190910192915050565b600080845460018082166000811461249b57600181146124b2576124e1565b60ff198316865260028304607f16860193506124e1565b600283048886526020808720875b838110156124d95781548a8201529085019082016124c0565b505050860193505b50505083516124f4818360208801612cda565b01949350505050565b90815260200190565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061254d90830184612417565b9695505050505050565b901515815260200190565b6000602082526109196020830184612417565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601a908201527f4d696e743a20546f6b656e20616c72656164792065786973742e000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526033908201527f507572636861736520616d6f756e742069732067726561746572207468616e2060408201527274686520746f6b656e20617661696c61626c6560681b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526022908201527f4d696e696d756d203120746f6b656e73206e65656420746f206265206d696e74604082015261195960f21b606082015260800190565b6020808252818101527f4275726e3a2063616c6c6572206973206e6f7420746f6b656e206f776e65722e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601490820152736d617820323020676f617473206174206f6e636560601b604082015260600190565b6020808252601b908201527f4275726e3a20746f6b656e20646f6573206e6f742065786973742e0000000000604082015260600190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b60208082526018908201527f496e73756666696369656e742045544820746f206d696e740000000000000000604082015260600190565b60005b83811015612cf5578181015183820152602001612cdd565b83811115610f555750506000910152565b6001600160e01b0319811681146109c457600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ebe33aa65a3d76061a742b1ec487c2abe3af465f25c91d1d9c28a195a4de995664736f6c63430007060033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000006401694dba7b91a105b0653ce167cf5527b804560000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenBaseUri (string):
Arg [1] : _fundWallet (address): 0x6401694dbA7B91a105B0653Ce167cf5527B80456

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000006401694dba7b91a105b0653ce167cf5527b80456
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62031:4863:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10263:142;;;;;;;;;;-1:-1:-1;10263:142:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47036:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49723:213::-;;;;;;;;;;-1:-1:-1;49723:213:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49267:390::-;;;;;;;;;;-1:-1:-1;49267:390:0;;;;;:::i;:::-;;:::i;:::-;;66470:125;;;;;;;;;;-1:-1:-1;66470:125:0;;;;;:::i;:::-;;:::i;48761:203::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50597:305::-;;;;;;;;;;-1:-1:-1;50597:305:0;;;;;:::i;:::-;;:::i;48531:154::-;;;;;;;;;;-1:-1:-1;48531:154:0;;;;;:::i;:::-;;:::i;64643:128::-;;;;;;;;;;;;;:::i;50973:151::-;;;;;;;;;;-1:-1:-1;50973:151:0;;;;;:::i;:::-;;:::i;64210:230::-;;;;;;;;;;-1:-1:-1;64210:230:0;;;;;:::i;:::-;;:::i;65281:156::-;;;;;;;;;;-1:-1:-1;65281:156:0;;;;;:::i;:::-;;:::i;62732:500::-;;;;;;:::i;:::-;;:::i;64525:106::-;;;;;;;;;;-1:-1:-1;64525:106:0;;;;;:::i;:::-;;:::i;49041:164::-;;;;;;;;;;-1:-1:-1;49041:164:0;;;;;:::i;:::-;;:::i;66603:103::-;;;;;;;;;;-1:-1:-1;66603:103:0;;;;;:::i;:::-;;:::i;62138:24::-;;;;;;;;;;;;;:::i;46800:169::-;;;;;;;;;;-1:-1:-1;46800:169:0;;;;;:::i;:::-;;:::i;62293:25::-;;;;;;;;;;;;;:::i;48358:89::-;;;;;;;;;;;;;:::i;66232:109::-;;;;;;;;;;-1:-1:-1;66232:109:0;;;;;:::i;:::-;;:::i;46523:215::-;;;;;;;;;;-1:-1:-1;46523:215:0;;;;;:::i;:::-;;:::i;61394:148::-;;;;;;;;;;;;;:::i;65463:522::-;;;;;;;;;;-1:-1:-1;65463:522:0;;;;;:::i;:::-;;:::i;60752:79::-;;;;;;;;;;;;;:::i;62257:29::-;;;;;;;;;;;;;:::i;47197:96::-;;;;;;;;;;;;;:::i;66142:82::-;;;;;;;;;;-1:-1:-1;66142:82:0;;;;;:::i;:::-;;:::i;50008:295::-;;;;;;;;;;-1:-1:-1;50008:295:0;;;;;:::i;:::-;;:::i;64779:115::-;;;;;;;;;;;;;:::i;51195:285::-;;;;;;;;;;-1:-1:-1;51195:285:0;;;;;:::i;:::-;;:::i;64902:371::-;;;;;;;;;;;;;:::i;47364:755::-;;;;;;;;;;-1:-1:-1;47364:755:0;;;;;:::i;:::-;;:::i;62107:24::-;;;;;;;;;;;;;:::i;50374:156::-;;;;;;;;;;-1:-1:-1;50374:156:0;;;;;:::i;:::-;;:::i;66052:82::-;;;;;;;;;;-1:-1:-1;66052:82:0;;;;;:::i;:::-;;:::i;66349:113::-;;;;;;;;;;-1:-1:-1;66349:113:0;;;;;:::i;:::-;;:::i;61697:244::-;;;;;;;;;;-1:-1:-1;61697:244:0;;;;;:::i;:::-;;:::i;62169:48::-;;;;;;;;;;;;;:::i;62221:29::-;;;;;;;;;;;;;:::i;10263:142::-;-1:-1:-1;;;;;;10364:33:0;;10340:4;10364:33;;;;;;;;;;;;;10263:142;;;;:::o;47036:92::-;47115:5;47108:12;;;;;;;;-1:-1:-1;;47108:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47082:13;;47108:12;;47115:5;;47108:12;;47115:5;47108:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47036:92;;:::o;49723:213::-;49791:7;49819:16;49827:7;49819;:16::i;:::-;49811:73;;;;-1:-1:-1;;;49811:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;49904:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49904:24:0;;49723:213::o;49267:390::-;49348:13;49364:16;49372:7;49364;:16::i;:::-;49348:32;;49405:5;-1:-1:-1;;;;;49399:11:0;:2;-1:-1:-1;;;;;49399:11:0;;;49391:57;;;;-1:-1:-1;;;49391:57:0;;;;;;;:::i;:::-;49485:5;-1:-1:-1;;;;;49469:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;49469:21:0;;:62;;;;49494:37;49511:5;49518:12;:10;:12::i;49494:37::-;49461:154;;;;-1:-1:-1;;;49461:154:0;;;;;;;:::i;:::-;49628:21;49637:2;49641:7;49628:8;:21::i;:::-;49267:390;;;:::o;66470:125::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;66559:28:::1;66572:8;66582:4;66559:12;:28::i;:::-;66470:125:::0;;:::o;48761:203::-;48814:7;48935:21;:12;:19;:21::i;:::-;48928:28;;48761:203;:::o;50597:305::-;50758:41;50777:12;:10;:12::i;:::-;50791:7;50758:18;:41::i;:::-;50750:103;;;;-1:-1:-1;;;50750:103:0;;;;;;;:::i;:::-;50866:28;50876:4;50882:2;50886:7;50866:9;:28::i;48531:154::-;-1:-1:-1;;;;;48647:20:0;;48620:7;48647:20;;;:13;:20;;;;;:30;;48671:5;48647:23;:30::i;:::-;48640:37;;48531:154;;;;;:::o;64643:128::-;64700:7;64727:36;64748:14;;62212:5;64727:20;;:36;;;;:::i;50973:151::-;51077:39;51094:4;51100:2;51104:7;51077:39;;;;;;;;;;;;:16;:39::i;64210:230::-;64268:17;64276:8;64268:7;:17::i;:::-;64260:57;;;;-1:-1:-1;;;64260:57:0;;;;;;;:::i;:::-;64357:12;:10;:12::i;:::-;-1:-1:-1;;;;;64336:33:0;:17;64344:8;64336:7;:17::i;:::-;-1:-1:-1;;;;;64336:33:0;;64328:78;;;;-1:-1:-1;;;64328:78:0;;;;;;;:::i;:::-;64417:15;64423:8;64417:5;:15::i;:::-;64210:230;:::o;65281:156::-;65367:4;65391:38;65410:8;65420;65391:18;:38::i;62732:500::-;62815:1;62804:8;:12;62796:59;;;;-1:-1:-1;;;62796:59:0;;;;;;;:::i;:::-;62883:26;:24;:26::i;:::-;62871:8;:38;;62863:102;;;;-1:-1:-1;;;62863:102:0;;;;;;;:::i;:::-;62984:12;;;;62976:43;;;;-1:-1:-1;;;62976:43:0;;;;;;;:::i;:::-;63044:2;63032:8;:14;;63024:47;;;;-1:-1:-1;;;63024:47:0;;;;;;;:::i;:::-;63084:9;;63111;;63084:23;;63098:8;63084:13;:23::i;:::-;:36;63076:73;;;;-1:-1:-1;;;63076:73:0;;;;;;;:::i;:::-;63159:9;63154:74;63178:8;63174:1;:12;63154:74;;;63199:23;63209:12;:10;:12::i;:::-;63199:9;:23::i;:::-;63188:3;;63154:74;;64525:106;64582:4;64606:17;64614:8;64606:7;:17::i;49041:164::-;49108:7;;49150:22;:12;49166:5;49150:15;:22::i;:::-;-1:-1:-1;49128:44:0;49041:164;-1:-1:-1;;;49041:164:0:o;66603:103::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;66677:21:::1;66689:8;66677:11;:21::i;62138:24::-:0;;;;;;:::o;46800:169::-;46864:7;46891:70;46908:7;46891:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;62293:25::-;;;-1:-1:-1;;;;;62293:25:0;;:::o;48358:89::-;48431:8;48424:15;;;;;;;;-1:-1:-1;;48424:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48398:13;;48424:15;;48431:8;;48424:15;;48431:8;48424:15;;;;;;;;;;;;;;;;;;;;;;;;66232:109;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;66309:10:::1;:24:::0;;-1:-1:-1;;;;;;66309:24:0::1;-1:-1:-1::0;;;;;66309:24:0;;;::::1;::::0;;;::::1;::::0;;66232:109::o;46523:215::-;46587:7;-1:-1:-1;;;;;46615:19:0;;46607:74;;;;-1:-1:-1;;;46607:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46701:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;61394:148::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;61485:6:::1;::::0;61464:40:::1;::::0;61501:1:::1;::::0;-1:-1:-1;;;;;61485:6:0::1;::::0;61464:40:::1;::::0;61501:1;;61464:40:::1;61515:6;:19:::0;;-1:-1:-1;;;;;;61515:19:0::1;::::0;;61394:148::o;65463:522::-;65554:7;65568:12;65916:5;65893:12;65865:15;65845:12;:10;:12::i;:::-;65828:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;65818:41;;;;;;65810:50;;65809:72;;;;;;65783:14;65755:15;65733:14;65716:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;65706:43;;;;;;65698:52;;65697:74;;;;;;65669:16;65643:15;:42;:129;:154;:239;:262;:278;65618:311;;;;;;;;:::i;:::-;;;;-1:-1:-1;;65618:311:0;;;;;;;;;65601:335;;65618:311;65601:335;;;;;-1:-1:-1;65976:4:0;65954:19;65601:335;65963:9;;;65954:8;:19::i;:::-;:26;65947:33;;;65463:522;;;;;;:::o;60752:79::-;60817:6;;-1:-1:-1;;;;;60817:6:0;60752:79;:::o;62257:29::-;;;;:::o;47197:96::-;47278:7;47271:14;;;;;;;;-1:-1:-1;;47271:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47245:13;;47271:14;;47278:7;;47271:14;;47278:7;47271:14;;;;;;;;;;;;;;;;;;;;;;;;66142:82;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;-1:-1:-1;66197:12:0::1;:19:::0;;-1:-1:-1;;66197:19:0::1;66212:4;66197:19;::::0;;66142:82::o;50008:295::-;50123:12;:10;:12::i;:::-;-1:-1:-1;;;;;50111:24:0;:8;-1:-1:-1;;;;;50111:24:0;;;50103:62;;;;-1:-1:-1;;;50103:62:0;;;;;;;:::i;:::-;50223:8;50178:18;:32;50197:12;:10;:12::i;:::-;-1:-1:-1;;;;;50178:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;50178:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;50178:53:0;;;;;;;;;;;50262:12;:10;:12::i;:::-;-1:-1:-1;;;;;50247:48:0;;50286:8;50247:48;;;;;;:::i;:::-;;;;;;;;50008:295;;:::o;64779:115::-;64852:14;;62212:5;64852:34;64779:115;:::o;51195:285::-;51327:41;51346:12;:10;:12::i;:::-;51360:7;51327:18;:41::i;:::-;51319:103;;;;-1:-1:-1;;;51319:103:0;;;;;;;:::i;:::-;51433:39;51447:4;51453:2;51457:7;51466:5;51433:13;:39::i;:::-;51195:285;;;;:::o;64902:371::-;64949:19;64990:18;:16;:18::i;:::-;64989:19;64981:59;;;;-1:-1:-1;;;64981:59:0;;;;;;;:::i;:::-;62212:5;65054:11;;:31;:68;;;;;62212:5;65089:14;;:33;65054:68;65051:215;;;-1:-1:-1;65153:1:0;65051:215;;;62212:5;65175:14;;:33;65172:94;;;-1:-1:-1;65239:11:0;;65253:1;65239:15;64902:371;:::o;47364:755::-;47429:13;47463:16;47471:7;47463;:16::i;:::-;47455:76;;;;-1:-1:-1;;;47455:76:0;;;;;;;:::i;:::-;47544:23;47570:19;;;:10;:19;;;;;;;;47544:45;;;;;;;;;;;-1:-1:-1;;47544:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;47570:19;;47544:45;;;47570:19;47544:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47671:8:0;47665:22;47544:45;;-1:-1:-1;;;;47665:22:0;-1:-1:-1;;47665:22:0;;;;;;;;;;;47661:76;;47716:9;-1:-1:-1;47709:16:0;;47661:76;47841:23;;:27;47837:112;;47916:8;47926:9;47899:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47885:52;;;;;47837:112;48081:8;48091:18;:7;:16;:18::i;:::-;48064:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48050:61;;;47364:755;;;:::o;62107:24::-;;;;:::o;50374:156::-;-1:-1:-1;;;;;50487:25:0;;;50463:4;50487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50374:156::o;66052:82::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;-1:-1:-1;66106:12:0::1;:20:::0;;-1:-1:-1;;66106:20:0::1;::::0;;66052:82::o;66349:113::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;66425:10:::1;::::0;66417:37:::1;::::0;-1:-1:-1;;;;;66425:10:0;;::::1;::::0;66417:37;::::1;;;::::0;66446:7;;66425:10:::1;66417:37:::0;66425:10;66417:37;66446:7;66425:10;66417:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;61697:244:::0;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61786:22:0;::::1;61778:73;;;;-1:-1:-1::0;;;61778:73:0::1;;;;;;;:::i;:::-;61888:6;::::0;61867:38:::1;::::0;-1:-1:-1;;;;;61867:38:0;;::::1;::::0;61888:6:::1;::::0;61867:38:::1;::::0;61888:6:::1;::::0;61867:38:::1;61916:6;:17:::0;;-1:-1:-1;;;;;;61916:17:0::1;-1:-1:-1::0;;;;;61916:17:0;;;::::1;::::0;;;::::1;::::0;;61697:244::o;62169:48::-;62212:5;62169:48;:::o;62221:29::-;;;;:::o;52947:119::-;53004:4;53028:30;:12;53050:7;53028:21;:30::i;643:106::-;731:10;643:106;:::o;58774:158::-;58840:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;58840:29:0;-1:-1:-1;;;;;58840:29:0;;;;;;;;:24;;58894:16;58840:24;58894:7;:16::i;:::-;-1:-1:-1;;;;;58885:39:0;;;;;;;;;;;58774:158;;:::o;57052:215::-;57152:16;57160:7;57152;:16::i;:::-;57144:73;;;;-1:-1:-1;;;57144:73:0;;;;;;;:::i;:::-;57228:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;40419:123::-;40488:7;40515:19;40523:3;40515:7;:19::i;53233:333::-;53318:4;53343:16;53351:7;53343;:16::i;:::-;53335:73;;;;-1:-1:-1;;;53335:73:0;;;;;;;:::i;:::-;53419:13;53435:16;53443:7;53435;:16::i;:::-;53419:32;;53481:5;-1:-1:-1;;;;;53470:16:0;:7;-1:-1:-1;;;;;53470:16:0;;:51;;;;53514:7;-1:-1:-1;;;;;53490:31:0;:20;53502:7;53490:11;:20::i;:::-;-1:-1:-1;;;;;53490:31:0;;53470:51;:87;;;;53525:32;53542:5;53549:7;53525:16;:32::i;:::-;53462:96;53233:333;-1:-1:-1;;;;53233:333:0:o;56322:574::-;56440:4;-1:-1:-1;;;;;56420:24:0;:16;56428:7;56420;:16::i;:::-;-1:-1:-1;;;;;56420:24:0;;56412:78;;;;-1:-1:-1;;;56412:78:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56509:16:0;;56501:65;;;;-1:-1:-1;;;56501:65:0;;;;;;;:::i;:::-;56579:39;56600:4;56606:2;56610:7;56579:20;:39::i;:::-;56683:29;56700:1;56704:7;56683:8;:29::i;:::-;-1:-1:-1;;;;;56725:19:0;;;;;;:13;:19;;;;;:35;;56752:7;56725:26;:35::i;:::-;-1:-1:-1;;;;;;56771:17:0;;;;;;:13;:17;;;;;:30;;56793:7;56771:21;:30::i;:::-;-1:-1:-1;56814:29:0;:12;56831:7;56840:2;56814:16;:29::i;:::-;;56880:7;56876:2;-1:-1:-1;;;;;56861:27:0;56870:4;-1:-1:-1;;;;;56861:27:0;;;;;;;;;;;56322:574;;;:::o;33005:137::-;33076:7;33111:22;33115:3;33127:5;33111:3;:22::i;12426:136::-;12484:7;12511:43;12515:1;12518;12511:43;;;;;;;;;;;;;;;;;:3;:43::i;55465:520::-;55525:13;55541:16;55549:7;55541;:16::i;:::-;55525:32;;55570:48;55591:5;55606:1;55610:7;55570:20;:48::i;:::-;55659:29;55676:1;55680:7;55659:8;:29::i;:::-;55747:19;;;;:10;:19;;;;;55741:33;;-1:-1:-1;;55741:33:0;;;;;;;;;;;:38;55737:97;;55803:19;;;;:10;:19;;;;;55796:26;;;:::i;:::-;-1:-1:-1;;;;;55846:20:0;;;;;;:13;:20;;;;;:36;;55874:7;55846:27;:36::i;:::-;-1:-1:-1;55895:28:0;:12;55915:7;55895:19;:28::i;:::-;-1:-1:-1;55941:36:0;;55969:7;;55965:1;;-1:-1:-1;;;;;55941:36:0;;;;;55965:1;;55941:36;55465:520;;:::o;13316:471::-;13374:7;13619:6;13615:47;;-1:-1:-1;13649:1:0;13642:8;;13615:47;13686:5;;;13690:1;13686;:5;:1;13710:5;;;;;:10;13702:56;;;;-1:-1:-1;;;13702:56:0;;;;;;;:::i;63244:502::-;63298:14;;63295:244;;63348:72;63355:1;62212:5;63400:12;:10;:12::i;:::-;-1:-1:-1;;;;;63376:39:0;63418:1;63376:43;63348:6;:72::i;:::-;63334:11;:86;;;63435:14;:28;63295:244;;;63510:17;:15;:17::i;:::-;63496:11;:31;63295:244;63549:14;:16;;;;;;;;63585:23;;:7;:23::i;:::-;63584:24;63576:63;;;;-1:-1:-1;;;63576:63:0;;;;;;;:::i;:::-;63650:26;63656:3;63661:14;;63650:5;:26::i;:::-;63687:51;63700:14;;63716:21;63725:11;;63716:8;:21::i;:::-;63687:12;:51::i;40881:227::-;40961:7;;;;41021:22;41025:3;41037:5;41021:3;:22::i;:::-;40990:53;;;;-1:-1:-1;40881:227:0;-1:-1:-1;;;;;40881:227:0:o;57497:100::-;57570:19;;;;:8;;:19;;;;;:::i;41543:204::-;41650:7;41693:44;41698:3;41718;41724:12;41693:4;:44::i;15634:130::-;15692:7;15719:37;15723:1;15726;15719:37;;;;;;;;;;;;;;;;;:3;:37::i;52362:272::-;52476:28;52486:4;52492:2;52496:7;52476:9;:28::i;:::-;52523:48;52546:4;52552:2;52556:7;52565:5;52523:22;:48::i;:::-;52515:111;;;;-1:-1:-1;;;52515:111:0;;;;;;;:::i;42007:744::-;42063:13;42284:10;42280:53;;-1:-1:-1;42311:10:0;;;;;;;;;;;;-1:-1:-1;;;42311:10:0;;;;;;42280:53;42358:5;42343:12;42399:78;42406:9;;42399:78;;42432:8;;42463:2;42455:10;;;;42399:78;;;42487:19;42519:6;42509:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42509:17:0;-1:-1:-1;42581:5:0;;-1:-1:-1;42487:39:0;-1:-1:-1;;;42553:10:0;;42597:115;42604:9;;42597:115;;42671:2;42664:4;:9;42659:2;:14;42648:27;;42630:6;42637:7;;;;;;;42630:15;;;;;;;;;;;:45;-1:-1:-1;;;;;42630:45:0;;;;;;;;-1:-1:-1;42698:2:0;42690:10;;;;42597:115;;;-1:-1:-1;42736:6:0;42007:744;-1:-1:-1;;;;42007:744:0:o;40180:151::-;40264:4;40288:35;40298:3;40318;40288:9;:35::i;37802:110::-;37885:19;;37802:110::o;66714:177::-;66835:48;66862:5;66869:3;66874:8;66835:26;:48::i;32092:137::-;32162:4;32186:35;32194:3;32214:5;32186:7;:35::i;31785:131::-;31852:4;31876:32;31881:3;31901:5;31876:4;:32::i;39612:176::-;39701:4;39725:55;39730:3;39750;-1:-1:-1;;;;;39764:14:0;;39725:4;:55::i;28079:204::-;28174:18;;28146:7;;28174:26;-1:-1:-1;28166:73:0;;;;-1:-1:-1;;;28166:73:0;;;;;;;:::i;:::-;28257:3;:11;;28269:5;28257:18;;;;;;;;;;;;;;;;28250:25;;28079:204;;;;:::o;12865:192::-;12951:7;12987:12;12979:6;;;;12971:29;;;;-1:-1:-1;;;12971:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;13023:5:0;;;12865:192::o;39954:142::-;40031:4;40055:33;40063:3;40083;40055:7;:33::i;54832:404::-;-1:-1:-1;;;;;54912:16:0;;54904:61;;;;-1:-1:-1;;;54904:61:0;;;;;;;:::i;:::-;54985:16;54993:7;54985;:16::i;:::-;54984:17;54976:58;;;;-1:-1:-1;;;54976:58:0;;;;;;;:::i;:::-;55047:45;55076:1;55080:2;55084:7;55047:20;:45::i;:::-;-1:-1:-1;;;;;55105:17:0;;;;;;:13;:17;;;;;:30;;55127:7;55105:21;:30::i;:::-;-1:-1:-1;55148:29:0;:12;55165:7;55174:2;55148:16;:29::i;:::-;-1:-1:-1;55195:33:0;;55220:7;;-1:-1:-1;;;;;55195:33:0;;;55212:1;;55195:33;;55212:1;;55195:33;54832:404;;:::o;63754:448::-;63807:27;63845:7;63841:35;;-1:-1:-1;63860:10:0;;;;;;;;;;;;-1:-1:-1;;;63860:10:0;;;;;;63841:35;63892:2;63880:9;63915:45;63922:6;;63915:45;;63936:5;;63952:2;63947:7;;;;63915:45;;;63964:17;63994:3;63984:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63984:14:0;-1:-1:-1;63964:34:0;-1:-1:-1;64015:3:0;64023:151;64030:7;;64023:151;;-1:-1:-1;;64049:5:0;64060:10;64096:2;64091;:7;64102:2;64090:14;64085:2;:19;64074:2;:31;64060:46;;64112:9;64131:4;64124:12;;64112:24;;64152:2;64142:4;64147:1;64142:7;;;;;;;;;;;:12;-1:-1:-1;;;;;64142:12:0;;;;;;;;-1:-1:-1;64166:2:0;64160:8;;;;64023:151;;;;38267:279;38371:19;;38334:7;;;;38371:27;-1:-1:-1;38363:74:0;;;;-1:-1:-1;;;38363:74:0;;;;;;;:::i;:::-;38450:22;38475:3;:12;;38488:5;38475:19;;;;;;;;;;;;;;;;;;38450:44;;38513:5;:10;;;38525:5;:12;;;38505:33;;;;;38267:279;;;;;:::o;38969:319::-;39063:7;39102:17;;;:12;;;:17;;;;;;39153:12;39138:13;39130:36;;;;-1:-1:-1;;;39130:36:0;;;;;;;;:::i;:::-;;39220:3;:12;;39244:1;39233:8;:12;39220:26;;;;;;;;;;;;;;;;;;:33;;;39213:40;;;38969:319;;;;;:::o;16249:166::-;16335:7;16371:12;16363:6;16355:29;;;;-1:-1:-1;;;16355:29:0;;;;;;;;:::i;:::-;;16406:1;16402;:5;;;;;;;16249:166;-1:-1:-1;;;;16249:166:0:o;58162:604::-;58283:4;58310:15;:2;-1:-1:-1;;;;;58310:13:0;;:15::i;:::-;58305:60;;-1:-1:-1;58349:4:0;58342:11;;58305:60;58375:23;58401:252;-1:-1:-1;;;58514:12:0;:10;:12::i;:::-;58541:4;58560:7;58582:5;58417:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;58417:181:0;;;;;;;-1:-1:-1;;;;;58417:181:0;;;;;;;;;;;58401:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58401:15:0;;;:252;:15;:252::i;:::-;58375:278;;58664:13;58691:10;58680:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;58731:26:0;-1:-1:-1;;;58731:26:0;;-1:-1:-1;;;58162:604:0;;;;;;:::o;37582:125::-;37653:4;37677:17;;;:12;;;;;:17;;;;;;:22;;;37582:125::o;25781:1544::-;25847:4;25986:19;;;:12;;;:19;;;;;;26022:15;;26018:1300;;26457:18;;-1:-1:-1;;26408:14:0;;;;26457:22;;;;26384:21;;26457:3;;:22;;26744;;;;;;;;;;;;;;26724:42;;26890:9;26861:3;:11;;26873:13;26861:26;;;;;;;;;;;;;;;;;;;:38;;;;26967:23;;;27009:1;26967:12;;;:23;;;;;;26993:17;;;26967:43;;27119:17;;26967:3;;27119:17;;;;;;;;;;;;;;;;;;;;;;27214:3;:12;;:19;27227:5;27214:19;;;;;;;;;;;27207:26;;;27257:4;27250:11;;;;;;;;26018:1300;27301:5;27294:12;;;;;25191:414;25254:4;25276:21;25286:3;25291:5;25276:9;:21::i;:::-;25271:327;;-1:-1:-1;25314:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;25497:18;;25475:19;;;:12;;;:19;;;;;;:40;;;;25530:11;;25271:327;-1:-1:-1;25581:5:0;25574:12;;35082:692;35158:4;35293:17;;;:12;;;:17;;;;;;35327:13;35323:444;;-1:-1:-1;;35412:38:0;;;;;;;;;;;;;;;;;;35394:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;35609:19;;35589:17;;;:12;;;:17;;;;;;;:39;35643:11;;35323:444;35723:5;35687:3;:12;;35711:1;35700:8;:12;35687:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;35750:5;35743:12;;;;;35949:1549;36013:4;36148:17;;;:12;;;:17;;;;;;36182:13;;36178:1313;;36614:19;;-1:-1:-1;;36567:12:0;;;;36614:23;;;;36543:21;;36614:3;;:23;;36911;;;;;;;;;;;;;;;;36882:52;;37059:9;37029:3;:12;;37042:13;37029:27;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;;;;37149:14;;37136:28;;:12;;;:28;;;;;37167:17;;;37136:48;;37293:18;;37136:3;;37293:18;;;;;;;;;;;;;;-1:-1:-1;;37293:18:0;;;;;;;;;;;;;;;;;;;;;37389:17;;;:12;;;:17;;;;;;37382:24;;;;37293:18;-1:-1:-1;37423:11:0;;-1:-1:-1;;;;37423:11:0;17205:422;17572:20;17611:8;;;17205:422::o;20123:195::-;20226:12;20258:52;20280:6;20288:4;20294:1;20297:12;20226;21427:18;21438:6;21427:10;:18::i;:::-;21419:60;;;;-1:-1:-1;;;21419:60:0;;;;;;;:::i;:::-;21553:12;21567:23;21594:6;-1:-1:-1;;;;;21594:11:0;21614:5;21622:4;21594:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21552:75;;;;21645:52;21663:7;21672:10;21684:12;21645:17;:52::i;:::-;21638:59;21175:530;-1:-1:-1;;;;;;;21175:530:0:o;22711:742::-;22826:12;22855:7;22851:595;;;-1:-1:-1;22886:10:0;22879:17;;22851:595;23000:17;;:21;22996:439;;23263:10;23257:17;23324:15;23311:10;23307:2;23303:19;23296:44;23211:148;23406:12;23399:20;;-1:-1:-1;;;23399:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:589:1;;110:18;151:2;143:6;140:14;137:2;;;157:9;137:2;197;191:9;270:2;247:17;;-1:-1:-1;;243:31:1;231:44;;277:4;227:55;297:18;;;317:22;;;294:46;291:2;;;343:9;291:2;370;363:22;418;;;403:6;-1:-1:-1;403:6:1;455:16;;;452:25;-1:-1:-1;449:2:1;;;490:1;487;480:12;449:2;540:6;535:3;528:4;520:6;516:17;503:44;595:1;588:4;579:6;571;567:19;563:30;556:41;;;90:513;;;;;:::o;608:175::-;678:20;;-1:-1:-1;;;;;727:31:1;;717:42;;707:2;;773:1;770;763:12;788:162;855:20;;911:13;;904:21;894:32;;884:2;;940:1;937;930:12;955:233;;1053:3;1046:4;1038:6;1034:17;1030:27;1020:2;;1075:5;1068;1061:20;1020:2;1101:81;1178:3;1169:6;1156:20;1149:4;1141:6;1137:17;1101:81;:::i;1193:198::-;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;1396:274::-;;;1525:2;1513:9;1504:7;1500:23;1496:32;1493:2;;;1546:6;1538;1531:22;1493:2;1574:31;1595:9;1574:31;:::i;:::-;1564:41;;1624:40;1660:2;1649:9;1645:18;1624:40;:::i;:::-;1614:50;;1483:187;;;;;:::o;1675:342::-;;;;1821:2;1809:9;1800:7;1796:23;1792:32;1789:2;;;1842:6;1834;1827:22;1789:2;1870:31;1891:9;1870:31;:::i;:::-;1860:41;;1920:40;1956:2;1945:9;1941:18;1920:40;:::i;:::-;1910:50;;2007:2;1996:9;1992:18;1979:32;1969:42;;1779:238;;;;;:::o;2022:702::-;;;;;2194:3;2182:9;2173:7;2169:23;2165:33;2162:2;;;2216:6;2208;2201:22;2162:2;2244:31;2265:9;2244:31;:::i;:::-;2234:41;;2294:40;2330:2;2319:9;2315:18;2294:40;:::i;:::-;2284:50;;2381:2;2370:9;2366:18;2353:32;2343:42;;2436:2;2425:9;2421:18;2408:32;2463:18;2455:6;2452:30;2449:2;;;2500:6;2492;2485:22;2449:2;2528:22;;2581:4;2573:13;;2569:27;-1:-1:-1;2559:2:1;;2615:6;2607;2600:22;2559:2;2643:75;2710:7;2705:2;2692:16;2687:2;2683;2679:11;2643:75;:::i;:::-;2633:85;;;2152:572;;;;;;;:::o;2729:268::-;;;2855:2;2843:9;2834:7;2830:23;2826:32;2823:2;;;2876:6;2868;2861:22;2823:2;2904:31;2925:9;2904:31;:::i;:::-;2894:41;;2954:37;2987:2;2976:9;2972:18;2954:37;:::i;3002:266::-;;;3131:2;3119:9;3110:7;3106:23;3102:32;3099:2;;;3152:6;3144;3137:22;3099:2;3180:31;3201:9;3180:31;:::i;:::-;3170:41;3258:2;3243:18;;;;3230:32;;-1:-1:-1;;;3089:179:1:o;3273:192::-;;3382:2;3370:9;3361:7;3357:23;3353:32;3350:2;;;3403:6;3395;3388:22;3350:2;3431:28;3449:9;3431:28;:::i;3470:257::-;;3581:2;3569:9;3560:7;3556:23;3552:32;3549:2;;;3602:6;3594;3587:22;3549:2;3646:9;3633:23;3665:32;3691:5;3665:32;:::i;3732:261::-;;3854:2;3842:9;3833:7;3829:23;3825:32;3822:2;;;3875:6;3867;3860:22;3822:2;3912:9;3906:16;3931:32;3957:5;3931:32;:::i;3998:344::-;;4120:2;4108:9;4099:7;4095:23;4091:32;4088:2;;;4141:6;4133;4126:22;4088:2;4186:9;4173:23;4219:18;4211:6;4208:30;4205:2;;;4256:6;4248;4241:22;4205:2;4284:52;4328:7;4319:6;4308:9;4304:22;4284:52;:::i;4347:190::-;;4459:2;4447:9;4438:7;4434:23;4430:32;4427:2;;;4480:6;4472;4465:22;4427:2;-1:-1:-1;4508:23:1;;4417:120;-1:-1:-1;4417:120:1:o;4542:412::-;;;4681:2;4669:9;4660:7;4656:23;4652:32;4649:2;;;4702:6;4694;4687:22;4649:2;4743:9;4730:23;4720:33;;4804:2;4793:9;4789:18;4776:32;4831:18;4823:6;4820:30;4817:2;;;4868:6;4860;4853:22;4817:2;4896:52;4940:7;4931:6;4920:9;4916:22;4896:52;:::i;:::-;4886:62;;;4639:315;;;;;:::o;4959:326::-;;;;5105:2;5093:9;5084:7;5080:23;5076:32;5073:2;;;5126:6;5118;5111:22;5073:2;-1:-1:-1;;5154:23:1;;;5224:2;5209:18;;5196:32;;-1:-1:-1;5275:2:1;5260:18;;;5247:32;;5063:222;-1:-1:-1;5063:222:1:o;5290:259::-;;5371:5;5365:12;5398:6;5393:3;5386:19;5414:63;5470:6;5463:4;5458:3;5454:14;5447:4;5440:5;5436:16;5414:63;:::i;:::-;5531:2;5510:15;-1:-1:-1;;5506:29:1;5497:39;;;;5538:4;5493:50;;5341:208;-1:-1:-1;;5341:208:1:o;5554:245::-;5719:2;5715:15;;;;-1:-1:-1;;5711:53:1;5699:66;;5790:2;5781:12;;5689:110::o;5804:274::-;;5971:6;5965:13;5987:53;6033:6;6028:3;6021:4;6013:6;6009:17;5987:53;:::i;:::-;6056:16;;;;;5941:137;-1:-1:-1;;5941:137:1:o;6083:993::-;;6288:3;6323:6;6317:13;6349:1;6381:2;6370:9;6366:18;6398:1;6393:126;;;;6533:1;6528:406;;;;6359:575;;6393:126;-1:-1:-1;;6426:24:1;;6414:37;;6499:1;6484:17;;6503:4;6480:28;6471:38;;;-1:-1:-1;6393:126:1;;6528:406;6578:1;6567:9;6563:17;6605:6;6600:3;6593:19;6635:4;6682:2;6677:3;6667:18;6707:3;6723:165;6737:6;6734:1;6731:13;6723:165;;;6815:14;;6802:11;;;6795:35;6858:16;;;;6752:10;;6723:165;;;-1:-1:-1;;;6908:16:1;;;-1:-1:-1;6359:575:1;;;;6965:6;6959:13;6981:55;7027:8;7022:3;7015:4;7007:6;7003:17;6981:55;:::i;:::-;7052:18;;6267:809;-1:-1:-1;;;;6267:809:1:o;7081:182::-;7210:19;;;7254:2;7245:12;;7200:63::o;7268:203::-;-1:-1:-1;;;;;7432:32:1;;;;7414:51;;7402:2;7387:18;;7369:102::o;7476:506::-;-1:-1:-1;;;;;7761:15:1;;;7743:34;;7813:15;;7808:2;7793:18;;7786:43;7860:2;7845:18;;7838:34;;;7908:3;7903:2;7888:18;;7881:31;;;7476:506;;7929:47;;7956:19;;7948:6;7929:47;:::i;:::-;7921:55;7695:287;-1:-1:-1;;;;;;7695:287:1:o;7987:187::-;8152:14;;8145:22;8127:41;;8115:2;8100:18;;8082:92::o;8179:221::-;;8328:2;8317:9;8310:21;8348:46;8390:2;8379:9;8375:18;8367:6;8348:46;:::i;8405:398::-;8607:2;8589:21;;;8646:2;8626:18;;;8619:30;8685:34;8680:2;8665:18;;8658:62;-1:-1:-1;;;8751:2:1;8736:18;;8729:32;8793:3;8778:19;;8579:224::o;8808:414::-;9010:2;8992:21;;;9049:2;9029:18;;;9022:30;9088:34;9083:2;9068:18;;9061:62;-1:-1:-1;;;9154:2:1;9139:18;;9132:48;9212:3;9197:19;;8982:240::o;9227:350::-;9429:2;9411:21;;;9468:2;9448:18;;;9441:30;9507:28;9502:2;9487:18;;9480:56;9568:2;9553:18;;9401:176::o;9582:402::-;9784:2;9766:21;;;9823:2;9803:18;;;9796:30;9862:34;9857:2;9842:18;;9835:62;-1:-1:-1;;;9928:2:1;9913:18;;9906:36;9974:3;9959:19;;9756:228::o;9989:352::-;10191:2;10173:21;;;10230:2;10210:18;;;10203:30;10269;10264:2;10249:18;;10242:58;10332:2;10317:18;;10163:178::o;10346:400::-;10548:2;10530:21;;;10587:2;10567:18;;;10560:30;10626:34;10621:2;10606:18;;10599:62;-1:-1:-1;;;10692:2:1;10677:18;;10670:34;10736:3;10721:19;;10520:226::o;10751:349::-;10953:2;10935:21;;;10992:2;10972:18;;;10965:30;11031:27;11026:2;11011:18;;11004:55;11091:2;11076:18;;10925:175::o;11105:342::-;11307:2;11289:21;;;11346:2;11326:18;;;11319:30;-1:-1:-1;;;11380:2:1;11365:18;;11358:48;11438:2;11423:18;;11279:168::o;11859:408::-;12061:2;12043:21;;;12100:2;12080:18;;;12073:30;12139:34;12134:2;12119:18;;12112:62;-1:-1:-1;;;12205:2:1;12190:18;;12183:42;12257:3;12242:19;;12033:234::o;12272:420::-;12474:2;12456:21;;;12513:2;12493:18;;;12486:30;12552:34;12547:2;12532:18;;12525:62;12623:26;12618:2;12603:18;;12596:54;12682:3;12667:19;;12446:246::o;12697:406::-;12899:2;12881:21;;;12938:2;12918:18;;;12911:30;12977:34;12972:2;12957:18;;12950:62;-1:-1:-1;;;13043:2:1;13028:18;;13021:40;13093:3;13078:19;;12871:232::o;13108:398::-;13310:2;13292:21;;;13349:2;13329:18;;;13322:30;13388:34;13383:2;13368:18;;13361:62;-1:-1:-1;;;13454:2:1;13439:18;;13432:32;13496:3;13481:19;;13282:224::o;13511:415::-;13713:2;13695:21;;;13752:2;13732:18;;;13725:30;13791:34;13786:2;13771:18;;13764:62;-1:-1:-1;;;13857:2:1;13842:18;;13835:49;13916:3;13901:19;;13685:241::o;13931:356::-;14133:2;14115:21;;;14152:18;;;14145:30;14211:34;14206:2;14191:18;;14184:62;14278:2;14263:18;;14105:182::o;14292:397::-;14494:2;14476:21;;;14533:2;14513:18;;;14506:30;14572:34;14567:2;14552:18;;14545:62;-1:-1:-1;;;14638:2:1;14623:18;;14616:31;14679:3;14664:19;;14466:223::o;14694:408::-;14896:2;14878:21;;;14935:2;14915:18;;;14908:30;14974:34;14969:2;14954:18;;14947:62;-1:-1:-1;;;15040:2:1;15025:18;;15018:42;15092:3;15077:19;;14868:234::o;15107:408::-;15309:2;15291:21;;;15348:2;15328:18;;;15321:30;15387:34;15382:2;15367:18;;15360:62;-1:-1:-1;;;15453:2:1;15438:18;;15431:42;15505:3;15490:19;;15281:234::o;15520:356::-;15722:2;15704:21;;;15741:18;;;15734:30;15800:34;15795:2;15780:18;;15773:62;15867:2;15852:18;;15694:182::o;15881:405::-;16083:2;16065:21;;;16122:2;16102:18;;;16095:30;16161:34;16156:2;16141:18;;16134:62;-1:-1:-1;;;16227:2:1;16212:18;;16205:39;16276:3;16261:19;;16055:231::o;16291:411::-;16493:2;16475:21;;;16532:2;16512:18;;;16505:30;16571:34;16566:2;16551:18;;16544:62;-1:-1:-1;;;16637:2:1;16622:18;;16615:45;16692:3;16677:19;;16465:237::o;16707:397::-;16909:2;16891:21;;;16948:2;16928:18;;;16921:30;16987:34;16982:2;16967:18;;16960:62;-1:-1:-1;;;17053:2:1;17038:18;;17031:31;17094:3;17079:19;;16881:223::o;17109:398::-;17311:2;17293:21;;;17350:2;17330:18;;;17323:30;17389:34;17384:2;17369:18;;17362:62;-1:-1:-1;;;17455:2:1;17440:18;;17433:32;17497:3;17482:19;;17283:224::o;17512:356::-;17714:2;17696:21;;;17733:18;;;17726:30;17792:34;17787:2;17772:18;;17765:62;17859:2;17844:18;;17686:182::o;17873:413::-;18075:2;18057:21;;;18114:2;18094:18;;;18087:30;18153:34;18148:2;18133:18;;18126:62;-1:-1:-1;;;18219:2:1;18204:18;;18197:47;18276:3;18261:19;;18047:239::o;18291:353::-;18493:2;18475:21;;;18532:2;18512:18;;;18505:30;18571:31;18566:2;18551:18;;18544:59;18635:2;18620:18;;18465:179::o;18649:344::-;18851:2;18833:21;;;18890:2;18870:18;;;18863:30;-1:-1:-1;;;18924:2:1;18909:18;;18902:50;18984:2;18969:18;;18823:170::o;18998:351::-;19200:2;19182:21;;;19239:2;19219:18;;;19212:30;19278:29;19273:2;19258:18;;19251:57;19340:2;19325:18;;19172:177::o;19354:351::-;19556:2;19538:21;;;19595:2;19575:18;;;19568:30;19634:29;19629:2;19614:18;;19607:57;19696:2;19681:18;;19528:177::o;19710:348::-;19912:2;19894:21;;;19951:2;19931:18;;;19924:30;19990:26;19985:2;19970:18;;19963:54;20049:2;20034:18;;19884:174::o;20245:258::-;20317:1;20327:113;20341:6;20338:1;20335:13;20327:113;;;20417:11;;;20411:18;20398:11;;;20391:39;20363:2;20356:10;20327:113;;;20458:6;20455:1;20452:13;20449:2;;;-1:-1:-1;;20493:1:1;20475:16;;20468:27;20298:205::o;20508:133::-;-1:-1:-1;;;;;;20584:32:1;;20574:43;;20564:2;;20631:1;20628;20621:12

Swarm Source

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