ETH Price: $3,042.47 (+1.09%)
Gas: 4 Gwei

Token

Hoge Expansion Mint (HOGENFTv2)
 

Overview

Max Total Supply

274 HOGENFTv2

Holders

255

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HOGENFTv2
0xbdf75e5d0552828360d43060b0f8f84ce72738d8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HogeNFTv2

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity >=0.6.0 <0.8.0;

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

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 Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @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) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    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(uint160(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(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(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(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}

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

abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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

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

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

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

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

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

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 virtual 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 virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).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(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, 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 virtual returns (string memory) {
        return _baseURI;
    }

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual 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 virtual 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 = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

        _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(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner
        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(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

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

contract HogeNFTv2 is Context, AccessControl, ERC721 {
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    Counters.Counter private _tokenIdTracker;
    address private _owner;

    event Received(address, uint);
    event Mint(address from, address to, string uri);
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

receive() external payable {
emit Received(msg.sender, msg.value);
}

constructor(string memory name, string memory symbol, string memory baseURI) public ERC721(name, symbol) {
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

_setupRole(MINTER_ROLE, _msgSender());
_setupRole(PAUSER_ROLE, _msgSender());

_owner = msg.sender;
emit OwnershipTransferred(address(0), _owner);

_setBaseURI(baseURI);
}

function mint(address to, string memory uri) public returns (uint) {
emit Mint(_msgSender(), to, uri);
require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role to mint");

_safeMint(to, _tokenIdTracker.current());
_setTokenURI(_tokenIdTracker.current(), uri);
_tokenIdTracker.increment();
}

function burn(uint256 tokenId) public virtual {
require(_isApprovedOrOwner(_msgSender(), tokenId), "Burn: Caller is not owner nor approved");
_burn(tokenId);
}

function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721) {
super._beforeTokenTransfer(from, to, tokenId);
}

// Begin Ownable interface from openzeppelin
// Primarily used for OpenSea storefront management, AccessControl is used for choosing who can mint.
// Owner, MINTER_ROLE, PAUSER_ROLE can all be separate addresses!
function owner() public view returns (address) {
return _owner;
}

modifier onlyOwner() {
require(isOwner());
_;
}

function isOwner() public view returns (bool) {
return msg.sender == _owner;
}

function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}

function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}

function _transferOwnership(address newOwner) internal {
require(newOwner != address(0));
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}

function contractURI() public view returns (string memory) {
return "https://www.hogemint.com/uri/contract-HogeNFTv2";
}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","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":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620047f1380380620047f1833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001d257600080fd5b83820191506020820185811115620001e957600080fd5b82518660018202830111640100000000821117156200020757600080fd5b8083526020830192505050908051906020019080838360005b838110156200023d57808201518184015260208101905062000220565b50505050905090810190601f1680156200026b5780820380516001836020036101000a031916815260200191505b5060405250505082826200028c6301ffc9a760e01b6200048660201b60201c565b8160079080519060200190620002a492919062000741565b508060089080519060200190620002bd92919062000741565b50620002d66380ac58cd60e01b6200048660201b60201c565b620002ee635b5e139f60e01b6200048660201b60201c565b6200030663780e9d6360e01b6200048660201b60201c565b50506200032c6000801b620003206200058f60201b60201c565b6200059760201b60201c565b6200036d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620003616200058f60201b60201c565b6200059760201b60201c565b620003ae7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620003a26200058f60201b60201c565b6200059760201b60201c565b33600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36200047d81620005ad60201b60201c565b505050620007f7565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b620005a98282620005c960201b60201c565b5050565b80600a9080519060200190620005c592919062000741565b5050565b620005f7816000808581526020019081526020016000206000016200066c60201b6200228d1790919060201c565b1562000668576200060d6200058f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200069c836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620006a460201b60201c565b905092915050565b6000620006b883836200071e60201b60201c565b6200071357826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000718565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620007795760008555620007c5565b82601f106200079457805160ff1916838001178555620007c5565b82800160010185558215620007c5579182015b82811115620007c4578251825591602001919060010190620007a7565b5b509050620007d49190620007d8565b5090565b5b80821115620007f3576000816000905550600101620007d9565b5090565b613fea80620008076000396000f3fe6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063d547741f1161006f578063d547741f14610e50578063e63ab1e914610eab578063e8a3d48514610ed6578063e985e9c514610f66578063f2fde38b14610fed57610259565b8063c87b56dd14610c26578063ca15c87314610cda578063d0def52114610d29578063d539139314610e2557610259565b806395d89b41116100dc57806395d89b41146109fc578063a217fddf14610a8c578063a22cb46514610ab7578063b88d4fde14610b1457610259565b80638da5cb5b146108ae5780638f32d59b146108ef5780639010d07c1461091c57806391d148541461098b57610259565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce7146106ee5780636352211e1461073d5780636c0360eb146107a257806370a0823114610832578063715018a61461089757610259565b80632f745c591461056e57806336568abe146105dd57806342842e0e1461063857806342966c68146106b357610259565b806318160ddd116101cc57806318160ddd1461041e57806323b872dd14610449578063248a9ca3146104c45780632f2ff15d1461051357610259565b806301ffc9a71461025e57806306fdde03146102ce578063081812fc1461035e578063095ea7b3146103c357610259565b36610259577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1005b600080fd5b34801561026a57600080fd5b506102b66004803603602081101561028157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061103e565b60405180821515815260200191505060405180910390f35b3480156102da57600080fd5b506102e36110a6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610323578082015181840152602081019050610308565b50505050905090810190601f1680156103505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036a57600080fd5b506103976004803603602081101561038157600080fd5b8101908080359060200190929190505050611148565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b5061041c600480360360408110156103e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111e3565b005b34801561042a57600080fd5b50610433611327565b6040518082815260200191505060405180910390f35b34801561045557600080fd5b506104c26004803603606081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611338565b005b3480156104d057600080fd5b506104fd600480360360208110156104e757600080fd5b81019080803590602001909291905050506113ae565b6040518082815260200191505060405180910390f35b34801561051f57600080fd5b5061056c6004803603604081101561053657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113cd565b005b34801561057a57600080fd5b506105c76004803603604081101561059157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611456565b6040518082815260200191505060405180910390f35b3480156105e957600080fd5b506106366004803603604081101561060057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b1565b005b34801561064457600080fd5b506106b16004803603606081101561065b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154a565b005b3480156106bf57600080fd5b506106ec600480360360208110156106d657600080fd5b810190808035906020019092919050505061156a565b005b3480156106fa57600080fd5b506107276004803603602081101561071157600080fd5b81019080803590602001909291905050506115dc565b6040518082815260200191505060405180910390f35b34801561074957600080fd5b506107766004803603602081101561076057600080fd5b81019080803590602001909291905050506115ff565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107ae57600080fd5b506107b7611636565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107f75780820151818401526020810190506107dc565b50505050905090810190601f1680156108245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561083e57600080fd5b506108816004803603602081101561085557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d8565b6040518082815260200191505060405180910390f35b3480156108a357600080fd5b506108ac6117ad565b005b3480156108ba57600080fd5b506108c361187f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108fb57600080fd5b506109046118a9565b60405180821515815260200191505060405180910390f35b34801561092857600080fd5b5061095f6004803603604081101561093f57600080fd5b810190808035906020019092919080359060200190929190505050611901565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561099757600080fd5b506109e4600480360360408110156109ae57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611932565b60405180821515815260200191505060405180910390f35b348015610a0857600080fd5b50610a11611963565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a51578082015181840152602081019050610a36565b50505050905090810190601f168015610a7e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9857600080fd5b50610aa1611a05565b6040518082815260200191505060405180910390f35b348015610ac357600080fd5b50610b1260048036036040811015610ada57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611a0c565b005b348015610b2057600080fd5b50610c2460048036036080811015610b3757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b9e57600080fd5b820183602082011115610bb057600080fd5b80359060200191846001830284011164010000000083111715610bd257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611bc2565b005b348015610c3257600080fd5b50610c5f60048036036020811015610c4957600080fd5b8101908080359060200190929190505050611c3a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c9f578082015181840152602081019050610c84565b50505050905090810190601f168015610ccc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ce657600080fd5b50610d1360048036036020811015610cfd57600080fd5b8101908080359060200190929190505050611f0b565b6040518082815260200191505060405180910390f35b348015610d3557600080fd5b50610e0f60048036036040811015610d4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610d8957600080fd5b820183602082011115610d9b57600080fd5b80359060200191846001830284011164010000000083111715610dbd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611f31565b6040518082815260200191505060405180910390f35b348015610e3157600080fd5b50610e3a6120eb565b6040518082815260200191505060405180910390f35b348015610e5c57600080fd5b50610ea960048036036040811015610e7357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061210f565b005b348015610eb757600080fd5b50610ec0612198565b6040518082815260200191505060405180910390f35b348015610ee257600080fd5b50610eeb6121bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f2b578082015181840152602081019050610f10565b50505050905090810190601f168015610f585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f7257600080fd5b50610fd560048036036040811015610f8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121dc565b60405180821515815260200191505060405180910390f35b348015610ff957600080fd5b5061103c6004803603602081101561101057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612270565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561113e5780601f106111135761010080835404028352916020019161113e565b820191906000526020600020905b81548152906001019060200180831161112157829003601f168201915b5050505050905090565b6000611153826122bd565b6111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613e55602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006111ee826115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611275576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613f056021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166112946122da565b73ffffffffffffffffffffffffffffffffffffffff1614806112c357506112c2816112bd6122da565b6121dc565b5b611318576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180613da86038913960400191505060405180910390fd5b61132283836122e2565b505050565b6000611333600361239b565b905090565b6113496113436122da565b826123b0565b61139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613f266031913960400191505060405180910390fd5b6113a98383836124a4565b505050565b6000806000838152602001908152602001600020600201549050919050565b6113f3600080848152602001908152602001600020600201546113ee6122da565b611932565b611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613c7b602f913960400191505060405180910390fd5b61145282826126e7565b5050565b60006114a982600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277a90919063ffffffff16565b905092915050565b6114b96122da565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613f86602f913960400191505060405180910390fd5b6115468282612794565b5050565b61156583838360405180602001604052806000815250611bc2565b505050565b61157b6115756122da565b826123b0565b6115d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613d266026913960400191505060405180910390fd5b6115d981612827565b50565b6000806115f383600361296190919063ffffffff16565b50905080915050919050565b600061162f82604051806060016040528060298152602001613e0a60299139600361298d9092919063ffffffff16565b9050919050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116ce5780601f106116a3576101008083540402835291602001916116ce565b820191906000526020600020905b8154815290600101906020018083116116b157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613de0602a913960400191505060405180910390fd5b6117a6600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129ac565b9050919050565b6117b56118a9565b6117be57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600061192a826000808681526020019081526020016000206000016129c190919063ffffffff16565b905092915050565b600061195b826000808681526020019081526020016000206000016129db90919063ffffffff16565b905092915050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119fb5780601f106119d0576101008083540402835291602001916119fb565b820191906000526020600020905b8154815290600101906020018083116119de57829003601f168201915b5050505050905090565b6000801b81565b611a146122da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060066000611ac26122da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b6f6122da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b611bd3611bcd6122da565b836123b0565b611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613f266031913960400191505060405180910390fd5b611c3484848484612a0b565b50505050565b6060611c45826122bd565b611c9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613ed6602f913960400191505060405180910390fd5b6000600960008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d435780601f10611d1857610100808354040283529160200191611d43565b820191906000526020600020905b815481529060010190602001808311611d2657829003601f168201915b505050505090506000611d54611636565b9050600081511415611d6a578192505050611f06565b600082511115611e3b5780826040516020018083805190602001908083835b60208310611dac5780518252602082019150602081019050602083039250611d89565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310611dfd5780518252602082019150602081019050602083039250611dda565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050611f06565b80611e4585612a7d565b6040516020018083805190602001908083835b60208310611e7b5780518252602082019150602081019050602083039250611e58565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310611ecc5780518252602082019150602081019050602083039250611ea9565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6000611f2a600080848152602001908152602001600020600001612bc4565b9050919050565b60007f9b2e32f2691b16092ad4ec8aef92ebd5c81672220a833beabd824963cb770184611f5c6122da565b8484604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611fd6578082015181840152602081019050611fbb565b50505050905090810190601f1680156120035780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a16120437f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661203e6122da565b611932565b6120b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4d7573742068617665206d696e74657220726f6c6520746f206d696e7400000081525060200191505060405180910390fd5b6120c8836120c3600b612bd9565b612be7565b6120db6120d5600b612bd9565b83612c05565b6120e5600b612c8f565b92915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b612135600080848152602001908152602001600020600201546121306122da565b611932565b61218a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613d786030913960400191505060405180910390fd5b6121948282612794565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60606040518060600160405280602f8152602001613f57602f9139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122786118a9565b61228157600080fd5b61228a81612ca5565b50565b60006122b5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d9f565b905092915050565b60006122d3826003612e0f90919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612355836115ff565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123a982600001612e29565b9050919050565b60006123bb826122bd565b612410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613d4c602c913960400191505060405180910390fd5b600061241b836115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061248a57508373ffffffffffffffffffffffffffffffffffffffff1661247284611148565b73ffffffffffffffffffffffffffffffffffffffff16145b8061249b575061249a81856121dc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124c4826115ff565b73ffffffffffffffffffffffffffffffffffffffff1614612530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613ead6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613cdc6024913960400191505060405180910390fd5b6125c1838383612e3a565b6125cc6000826122e2565b61261d81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e4a90919063ffffffff16565b5061266f81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e6490919063ffffffff16565b5061268681836003612e7e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61270e8160008085815260200190815260200160002060000161228d90919063ffffffff16565b156127765761271b6122da565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006127898360000183612eb3565b60001c905092915050565b6127bb81600080858152602001908152602001600020600001612f3690919063ffffffff16565b15612823576127c86122da565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612832826115ff565b905061284081600084612e3a565b61284b6000836122e2565b6000600960008481526020019081526020016000208054600181600116156101000203166002900490501461289a576009600083815260200190815260200160002060006128999190613b65565b5b6128eb82600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e4a90919063ffffffff16565b50612900826003612f6690919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806000806129748660000186612f80565b915091508160001c8160001c9350935050509250929050565b60006129a0846000018460001b84613019565b60001c90509392505050565b60006129ba8260000161310f565b9050919050565b60006129d08360000183612eb3565b60001c905092915050565b6000612a03836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613120565b905092915050565b612a168484846124a4565b612a2284848484613143565b612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613caa6032913960400191505060405180910390fd5b50505050565b60606000821415612ac5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bbf565b600082905060005b60008214612aef578080600101915050600a8281612ae757fe5b049150612acd565b60008167ffffffffffffffff81118015612b0857600080fd5b506040519080825280601f01601f191660200182016040528015612b3b5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612bb757600a8481612b5c57fe5b0660300160f81b82828060019003935081518110612b7657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612baf57fe5b049350612b4a565b819450505050505b919050565b6000612bd28260000161310f565b9050919050565b600081600001549050919050565b612c0182826040518060200160405280600081525061335c565b5050565b612c0e826122bd565b612c63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613e81602c913960400191505060405180910390fd5b80600960008481526020019081526020016000209080519060200190612c8a929190613bad565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cdf57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612dab8383613120565b612e04578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e09565b600090505b92915050565b6000612e21836000018360001b6133cd565b905092915050565b600081600001805490509050919050565b612e458383836133f0565b505050565b6000612e5c836000018360001b6133f5565b905092915050565b6000612e76836000018360001b612d9f565b905092915050565b6000612eaa846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6134dd565b90509392505050565b600081836000018054905011612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613c596022913960400191505060405180910390fd5b826000018281548110612f2357fe5b9060005260206000200154905092915050565b6000612f5e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6133f5565b905092915050565b6000612f78836000018360001b6135b9565b905092915050565b60008082846000018054905011612fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613e336022913960400191505060405180910390fd5b6000846000018481548110612ff357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906130e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130a557808201518184015260208101905061308a565b50505050905090810190601f1680156130d25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106130f357fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60006131648473ffffffffffffffffffffffffffffffffffffffff166136d2565b6131715760019050613354565b60006132db63150b7a0260e01b6131866122da565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561320a5780820151818401526020810190506131ef565b50505050905090810190601f1680156132375780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001613caa603291398773ffffffffffffffffffffffffffffffffffffffff166136e59092919063ffffffff16565b905060008180602001905160208110156132f457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b61336683836136fd565b6133736000848484613143565b6133c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613caa6032913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600080836001016000848152602001908152602001600020549050600081146134d1576000600182039050600060018660000180549050039050600086600001828154811061344057fe5b906000526020600020015490508087600001848154811061345d57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061349557fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506134d7565b60009150505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613584578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506135b2565b8285600001600183038154811061359757fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146136c6576000600182039050600060018660000180549050039050600086600001828154811061360457fe5b906000526020600020906002020190508087600001848154811061362457fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061367757fe5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506136cc565b60009150505b92915050565b600080823b905060008111915050919050565b60606136f484846000856138f1565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6137a9816122bd565b1561381c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61382860008383612e3a565b61387981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e6490919063ffffffff16565b5061389081836003612e7e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60608247101561394c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613d006026913960400191505060405180910390fd5b613955856136d2565b6139c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613a1657805182526020820191506020810190506020830392506139f3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613a78576040519150601f19603f3d011682016040523d82523d6000602084013e613a7d565b606091505b5091509150613a8d828286613a99565b92505050949350505050565b60608315613aa957829050613b5e565b600083511115613abc5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b23578082015181840152602081019050613b08565b50505050905090810190601f168015613b505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b50805460018160011615610100020316600290046000825580601f10613b8b5750613baa565b601f016020900490600052602060002090810190613ba99190613c3b565b5b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613be35760008555613c2a565b82601f10613bfc57805160ff1916838001178555613c2a565b82800160010185558215613c2a579182015b82811115613c29578251825591602001919060010190613c0e565b5b509050613c379190613c3b565b5090565b5b80821115613c54576000816000905550600101613c3c565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4275726e3a2043616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656468747470733a2f2f7777772e686f67656d696e742e636f6d2f7572692f636f6e74726163742d486f67654e46547632416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212207c0d11a2c57977e7105ed6f6923de3f5d8b417d24f5b8cd66337f021bfe3f9a164736f6c63430007060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013486f676520457870616e73696f6e204d696e74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009484f47454e465476320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7777772e686f67656d696e742e636f6d2f7572692f000000

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063d547741f1161006f578063d547741f14610e50578063e63ab1e914610eab578063e8a3d48514610ed6578063e985e9c514610f66578063f2fde38b14610fed57610259565b8063c87b56dd14610c26578063ca15c87314610cda578063d0def52114610d29578063d539139314610e2557610259565b806395d89b41116100dc57806395d89b41146109fc578063a217fddf14610a8c578063a22cb46514610ab7578063b88d4fde14610b1457610259565b80638da5cb5b146108ae5780638f32d59b146108ef5780639010d07c1461091c57806391d148541461098b57610259565b80632f745c59116101905780634f6ccce71161015f5780634f6ccce7146106ee5780636352211e1461073d5780636c0360eb146107a257806370a0823114610832578063715018a61461089757610259565b80632f745c591461056e57806336568abe146105dd57806342842e0e1461063857806342966c68146106b357610259565b806318160ddd116101cc57806318160ddd1461041e57806323b872dd14610449578063248a9ca3146104c45780632f2ff15d1461051357610259565b806301ffc9a71461025e57806306fdde03146102ce578063081812fc1461035e578063095ea7b3146103c357610259565b36610259577f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f885258743334604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1005b600080fd5b34801561026a57600080fd5b506102b66004803603602081101561028157600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061103e565b60405180821515815260200191505060405180910390f35b3480156102da57600080fd5b506102e36110a6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610323578082015181840152602081019050610308565b50505050905090810190601f1680156103505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036a57600080fd5b506103976004803603602081101561038157600080fd5b8101908080359060200190929190505050611148565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b5061041c600480360360408110156103e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111e3565b005b34801561042a57600080fd5b50610433611327565b6040518082815260200191505060405180910390f35b34801561045557600080fd5b506104c26004803603606081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611338565b005b3480156104d057600080fd5b506104fd600480360360208110156104e757600080fd5b81019080803590602001909291905050506113ae565b6040518082815260200191505060405180910390f35b34801561051f57600080fd5b5061056c6004803603604081101561053657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113cd565b005b34801561057a57600080fd5b506105c76004803603604081101561059157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611456565b6040518082815260200191505060405180910390f35b3480156105e957600080fd5b506106366004803603604081101561060057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114b1565b005b34801561064457600080fd5b506106b16004803603606081101561065b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154a565b005b3480156106bf57600080fd5b506106ec600480360360208110156106d657600080fd5b810190808035906020019092919050505061156a565b005b3480156106fa57600080fd5b506107276004803603602081101561071157600080fd5b81019080803590602001909291905050506115dc565b6040518082815260200191505060405180910390f35b34801561074957600080fd5b506107766004803603602081101561076057600080fd5b81019080803590602001909291905050506115ff565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107ae57600080fd5b506107b7611636565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107f75780820151818401526020810190506107dc565b50505050905090810190601f1680156108245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561083e57600080fd5b506108816004803603602081101561085557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d8565b6040518082815260200191505060405180910390f35b3480156108a357600080fd5b506108ac6117ad565b005b3480156108ba57600080fd5b506108c361187f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108fb57600080fd5b506109046118a9565b60405180821515815260200191505060405180910390f35b34801561092857600080fd5b5061095f6004803603604081101561093f57600080fd5b810190808035906020019092919080359060200190929190505050611901565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561099757600080fd5b506109e4600480360360408110156109ae57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611932565b60405180821515815260200191505060405180910390f35b348015610a0857600080fd5b50610a11611963565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a51578082015181840152602081019050610a36565b50505050905090810190601f168015610a7e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9857600080fd5b50610aa1611a05565b6040518082815260200191505060405180910390f35b348015610ac357600080fd5b50610b1260048036036040811015610ada57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611a0c565b005b348015610b2057600080fd5b50610c2460048036036080811015610b3757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b9e57600080fd5b820183602082011115610bb057600080fd5b80359060200191846001830284011164010000000083111715610bd257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611bc2565b005b348015610c3257600080fd5b50610c5f60048036036020811015610c4957600080fd5b8101908080359060200190929190505050611c3a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c9f578082015181840152602081019050610c84565b50505050905090810190601f168015610ccc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ce657600080fd5b50610d1360048036036020811015610cfd57600080fd5b8101908080359060200190929190505050611f0b565b6040518082815260200191505060405180910390f35b348015610d3557600080fd5b50610e0f60048036036040811015610d4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610d8957600080fd5b820183602082011115610d9b57600080fd5b80359060200191846001830284011164010000000083111715610dbd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611f31565b6040518082815260200191505060405180910390f35b348015610e3157600080fd5b50610e3a6120eb565b6040518082815260200191505060405180910390f35b348015610e5c57600080fd5b50610ea960048036036040811015610e7357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061210f565b005b348015610eb757600080fd5b50610ec0612198565b6040518082815260200191505060405180910390f35b348015610ee257600080fd5b50610eeb6121bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f2b578082015181840152602081019050610f10565b50505050905090810190601f168015610f585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f7257600080fd5b50610fd560048036036040811015610f8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121dc565b60405180821515815260200191505060405180910390f35b348015610ff957600080fd5b5061103c6004803603602081101561101057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612270565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561113e5780601f106111135761010080835404028352916020019161113e565b820191906000526020600020905b81548152906001019060200180831161112157829003601f168201915b5050505050905090565b6000611153826122bd565b6111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613e55602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006111ee826115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611275576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613f056021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166112946122da565b73ffffffffffffffffffffffffffffffffffffffff1614806112c357506112c2816112bd6122da565b6121dc565b5b611318576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180613da86038913960400191505060405180910390fd5b61132283836122e2565b505050565b6000611333600361239b565b905090565b6113496113436122da565b826123b0565b61139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613f266031913960400191505060405180910390fd5b6113a98383836124a4565b505050565b6000806000838152602001908152602001600020600201549050919050565b6113f3600080848152602001908152602001600020600201546113ee6122da565b611932565b611448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613c7b602f913960400191505060405180910390fd5b61145282826126e7565b5050565b60006114a982600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061277a90919063ffffffff16565b905092915050565b6114b96122da565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613f86602f913960400191505060405180910390fd5b6115468282612794565b5050565b61156583838360405180602001604052806000815250611bc2565b505050565b61157b6115756122da565b826123b0565b6115d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613d266026913960400191505060405180910390fd5b6115d981612827565b50565b6000806115f383600361296190919063ffffffff16565b50905080915050919050565b600061162f82604051806060016040528060298152602001613e0a60299139600361298d9092919063ffffffff16565b9050919050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116ce5780601f106116a3576101008083540402835291602001916116ce565b820191906000526020600020905b8154815290600101906020018083116116b157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613de0602a913960400191505060405180910390fd5b6117a6600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129ac565b9050919050565b6117b56118a9565b6117be57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600061192a826000808681526020019081526020016000206000016129c190919063ffffffff16565b905092915050565b600061195b826000808681526020019081526020016000206000016129db90919063ffffffff16565b905092915050565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119fb5780601f106119d0576101008083540402835291602001916119fb565b820191906000526020600020905b8154815290600101906020018083116119de57829003601f168201915b5050505050905090565b6000801b81565b611a146122da565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060066000611ac26122da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b6f6122da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b611bd3611bcd6122da565b836123b0565b611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613f266031913960400191505060405180910390fd5b611c3484848484612a0b565b50505050565b6060611c45826122bd565b611c9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613ed6602f913960400191505060405180910390fd5b6000600960008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d435780601f10611d1857610100808354040283529160200191611d43565b820191906000526020600020905b815481529060010190602001808311611d2657829003601f168201915b505050505090506000611d54611636565b9050600081511415611d6a578192505050611f06565b600082511115611e3b5780826040516020018083805190602001908083835b60208310611dac5780518252602082019150602081019050602083039250611d89565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310611dfd5780518252602082019150602081019050602083039250611dda565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050611f06565b80611e4585612a7d565b6040516020018083805190602001908083835b60208310611e7b5780518252602082019150602081019050602083039250611e58565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310611ecc5780518252602082019150602081019050602083039250611ea9565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6000611f2a600080848152602001908152602001600020600001612bc4565b9050919050565b60007f9b2e32f2691b16092ad4ec8aef92ebd5c81672220a833beabd824963cb770184611f5c6122da565b8484604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611fd6578082015181840152602081019050611fbb565b50505050905090810190601f1680156120035780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a16120437f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661203e6122da565b611932565b6120b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4d7573742068617665206d696e74657220726f6c6520746f206d696e7400000081525060200191505060405180910390fd5b6120c8836120c3600b612bd9565b612be7565b6120db6120d5600b612bd9565b83612c05565b6120e5600b612c8f565b92915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b612135600080848152602001908152602001600020600201546121306122da565b611932565b61218a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613d786030913960400191505060405180910390fd5b6121948282612794565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60606040518060600160405280602f8152602001613f57602f9139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122786118a9565b61228157600080fd5b61228a81612ca5565b50565b60006122b5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d9f565b905092915050565b60006122d3826003612e0f90919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612355836115ff565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123a982600001612e29565b9050919050565b60006123bb826122bd565b612410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613d4c602c913960400191505060405180910390fd5b600061241b836115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061248a57508373ffffffffffffffffffffffffffffffffffffffff1661247284611148565b73ffffffffffffffffffffffffffffffffffffffff16145b8061249b575061249a81856121dc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124c4826115ff565b73ffffffffffffffffffffffffffffffffffffffff1614612530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613ead6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613cdc6024913960400191505060405180910390fd5b6125c1838383612e3a565b6125cc6000826122e2565b61261d81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e4a90919063ffffffff16565b5061266f81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e6490919063ffffffff16565b5061268681836003612e7e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61270e8160008085815260200190815260200160002060000161228d90919063ffffffff16565b156127765761271b6122da565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006127898360000183612eb3565b60001c905092915050565b6127bb81600080858152602001908152602001600020600001612f3690919063ffffffff16565b15612823576127c86122da565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612832826115ff565b905061284081600084612e3a565b61284b6000836122e2565b6000600960008481526020019081526020016000208054600181600116156101000203166002900490501461289a576009600083815260200190815260200160002060006128999190613b65565b5b6128eb82600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e4a90919063ffffffff16565b50612900826003612f6690919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806000806129748660000186612f80565b915091508160001c8160001c9350935050509250929050565b60006129a0846000018460001b84613019565b60001c90509392505050565b60006129ba8260000161310f565b9050919050565b60006129d08360000183612eb3565b60001c905092915050565b6000612a03836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613120565b905092915050565b612a168484846124a4565b612a2284848484613143565b612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613caa6032913960400191505060405180910390fd5b50505050565b60606000821415612ac5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bbf565b600082905060005b60008214612aef578080600101915050600a8281612ae757fe5b049150612acd565b60008167ffffffffffffffff81118015612b0857600080fd5b506040519080825280601f01601f191660200182016040528015612b3b5781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612bb757600a8481612b5c57fe5b0660300160f81b82828060019003935081518110612b7657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612baf57fe5b049350612b4a565b819450505050505b919050565b6000612bd28260000161310f565b9050919050565b600081600001549050919050565b612c0182826040518060200160405280600081525061335c565b5050565b612c0e826122bd565b612c63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613e81602c913960400191505060405180910390fd5b80600960008481526020019081526020016000209080519060200190612c8a929190613bad565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cdf57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612dab8383613120565b612e04578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e09565b600090505b92915050565b6000612e21836000018360001b6133cd565b905092915050565b600081600001805490509050919050565b612e458383836133f0565b505050565b6000612e5c836000018360001b6133f5565b905092915050565b6000612e76836000018360001b612d9f565b905092915050565b6000612eaa846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6134dd565b90509392505050565b600081836000018054905011612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613c596022913960400191505060405180910390fd5b826000018281548110612f2357fe5b9060005260206000200154905092915050565b6000612f5e836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6133f5565b905092915050565b6000612f78836000018360001b6135b9565b905092915050565b60008082846000018054905011612fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613e336022913960400191505060405180910390fd5b6000846000018481548110612ff357fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906130e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130a557808201518184015260208101905061308a565b50505050905090810190601f1680156130d25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106130f357fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60006131648473ffffffffffffffffffffffffffffffffffffffff166136d2565b6131715760019050613354565b60006132db63150b7a0260e01b6131866122da565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561320a5780820151818401526020810190506131ef565b50505050905090810190601f1680156132375780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001613caa603291398773ffffffffffffffffffffffffffffffffffffffff166136e59092919063ffffffff16565b905060008180602001905160208110156132f457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b61336683836136fd565b6133736000848484613143565b6133c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613caa6032913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b600080836001016000848152602001908152602001600020549050600081146134d1576000600182039050600060018660000180549050039050600086600001828154811061344057fe5b906000526020600020015490508087600001848154811061345d57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061349557fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506134d7565b60009150505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613584578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506135b2565b8285600001600183038154811061359757fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146136c6576000600182039050600060018660000180549050039050600086600001828154811061360457fe5b906000526020600020906002020190508087600001848154811061362457fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061367757fe5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506136cc565b60009150505b92915050565b600080823b905060008111915050919050565b60606136f484846000856138f1565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6137a9816122bd565b1561381c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61382860008383612e3a565b61387981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e6490919063ffffffff16565b5061389081836003612e7e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60608247101561394c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613d006026913960400191505060405180910390fd5b613955856136d2565b6139c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613a1657805182526020820191506020810190506020830392506139f3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613a78576040519150601f19603f3d011682016040523d82523d6000602084013e613a7d565b606091505b5091509150613a8d828286613a99565b92505050949350505050565b60608315613aa957829050613b5e565b600083511115613abc5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b23578082015181840152602081019050613b08565b50505050905090810190601f168015613b505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b50805460018160011615610100020316600290046000825580601f10613b8b5750613baa565b601f016020900490600052602060002090810190613ba99190613c3b565b5b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613be35760008555613c2a565b82601f10613bfc57805160ff1916838001178555613c2a565b82800160010185558215613c2a579182015b82811115613c29578251825591602001919060010190613c0e565b5b509050613c379190613c3b565b5090565b5b80821115613c54576000816000905550600101613c3c565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4275726e3a2043616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656468747470733a2f2f7777772e686f67656d696e742e636f6d2f7572692f636f6e74726163742d486f67654e46547632416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212207c0d11a2c57977e7105ed6f6923de3f5d8b417d24f5b8cd66337f021bfe3f9a164736f6c63430007060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013486f676520457870616e73696f6e204d696e74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009484f47454e465476320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f7777772e686f67656d696e742e636f6d2f7572692f000000

-----Decoded View---------------
Arg [0] : name (string): Hoge Expansion Mint
Arg [1] : symbol (string): HOGENFTv2
Arg [2] : baseURI (string): https://www.hogemint.com/uri/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 486f676520457870616e73696f6e204d696e7400000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 484f47454e465476320000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [8] : 68747470733a2f2f7777772e686f67656d696e742e636f6d2f7572692f000000


Deployed Bytecode Sourcemap

66399:2492:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66935:31;66944:10;66956:9;66935:31;;;;;;;;;;;;;;;;;;;;;;;;;;66399:2492;;;;;42320:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53550:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56336:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55866:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55344:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57226:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37912:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38288:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55106:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39497:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57602:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67624:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55632:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53306:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54925:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53023:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68378:120;;;;;;;;;;;;;:::i;:::-;;68169:67;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68294:80;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37585:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36546:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53719:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35291:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56629:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57824:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53894:792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36859:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67313:307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66503:62;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38760:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66572:62;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68766:122;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56995:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68502:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42320:150;42405:4;42429:20;:33;42450:11;42429:33;;;;;;;;;;;;;;;;;;;;;;;;;;;42422:40;;42320:150;;;:::o;53550:100::-;53604:13;53637:5;53630:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53550:100;:::o;56336:221::-;56412:7;56440:16;56448:7;56440;:16::i;:::-;56432:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56525:15;:24;56541:7;56525:24;;;;;;;;;;;;;;;;;;;;;56518:31;;56336:221;;;:::o;55866:404::-;55947:13;55963:23;55978:7;55963:14;:23::i;:::-;55947:39;;56011:5;56005:11;;:2;:11;;;;55997:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56091:5;56075:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;56100:44;56124:5;56131:12;:10;:12::i;:::-;56100:23;:44::i;:::-;56075:69;56067:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56241:21;56250:2;56254:7;56241:8;:21::i;:::-;55866:404;;;:::o;55344:211::-;55405:7;55526:21;:12;:19;:21::i;:::-;55519:28;;55344:211;:::o;57226:305::-;57387:41;57406:12;:10;:12::i;:::-;57420:7;57387:18;:41::i;:::-;57379:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57495:28;57505:4;57511:2;57515:7;57495:9;:28::i;:::-;57226:305;;;:::o;37912:114::-;37969:7;37996:6;:12;38003:4;37996:12;;;;;;;;;;;:22;;;37989:29;;37912:114;;;:::o;38288:227::-;38372:45;38380:6;:12;38387:4;38380:12;;;;;;;;;;;:22;;;38404:12;:10;:12::i;:::-;38372:7;:45::i;:::-;38364:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38482:25;38493:4;38499:7;38482:10;:25::i;:::-;38288:227;;:::o;55106:162::-;55203:7;55230:30;55254:5;55230:13;:20;55244:5;55230:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;55223:37;;55106:162;;;;:::o;39497:209::-;39595:12;:10;:12::i;:::-;39584:23;;:7;:23;;;39576:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39672:26;39684:4;39690:7;39672:11;:26::i;:::-;39497:209;;:::o;57602:151::-;57706:39;57723:4;57729:2;57733:7;57706:39;;;;;;;;;;;;:16;:39::i;:::-;57602:151;;;:::o;67624:162::-;67681:41;67700:12;:10;:12::i;:::-;67714:7;67681:18;:41::i;:::-;67673:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67768:14;67774:7;67768:5;:14::i;:::-;67624:162;:::o;55632:172::-;55707:7;55728:15;55749:22;55765:5;55749:12;:15;;:22;;;;:::i;:::-;55727:44;;;55789:7;55782:14;;;55632:172;;;:::o;53306:177::-;53378:7;53405:70;53422:7;53405:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;53398:77;;53306:177;;;:::o;54925:97::-;54973:13;55006:8;54999:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54925:97;:::o;53023:221::-;53095:7;53140:1;53123:19;;:5;:19;;;;53115:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53207:29;:13;:20;53221:5;53207:20;;;;;;;;;;;;;;;:27;:29::i;:::-;53200:36;;53023:221;;;:::o;68378:120::-;68272:9;:7;:9::i;:::-;68264:18;;;;;;68469:1:::1;68432:40;;68453:6;;;;;;;;;;;68432:40;;;;;;;;;;;;68492:1;68475:6;;:19;;;;;;;;;;;;;;;;;;68378:120::o:0;68169:67::-;68207:7;68226:6;;;;;;;;;;;68219:13;;68169:67;:::o;68294:80::-;68334:4;68364:6;;;;;;;;;;;68350:20;;:10;:20;;;68343:27;;68294:80;:::o;37585:138::-;37658:7;37685:30;37709:5;37685:6;:12;37692:4;37685:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;37678:37;;37585:138;;;;:::o;36546:139::-;36615:4;36639:38;36669:7;36639:6;:12;36646:4;36639:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;36632:45;;36546:139;;;;:::o;53719:104::-;53775:13;53808:7;53801:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53719:104;:::o;35291:49::-;35336:4;35291:49;;;:::o;56629:295::-;56744:12;:10;:12::i;:::-;56732:24;;:8;:24;;;;56724:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56844:8;56799:18;:32;56818:12;:10;:12::i;:::-;56799:32;;;;;;;;;;;;;;;:42;56832:8;56799:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;56897:8;56868:48;;56883:12;:10;:12::i;:::-;56868:48;;;56907:8;56868:48;;;;;;;;;;;;;;;;;;;;56629:295;;:::o;57824:285::-;57956:41;57975:12;:10;:12::i;:::-;57989:7;57956:18;:41::i;:::-;57948:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58062:39;58076:4;58082:2;58086:7;58095:5;58062:13;:39::i;:::-;57824:285;;;;:::o;53894:792::-;53967:13;54001:16;54009:7;54001;:16::i;:::-;53993:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54082:23;54108:10;:19;54119:7;54108:19;;;;;;;;;;;54082:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54138:18;54159:9;:7;:9::i;:::-;54138:30;;54266:1;54250:4;54244:18;:23;54240:72;;;54291:9;54284:16;;;;;;54240:72;54442:1;54422:9;54416:23;:27;54412:108;;;54491:4;54497:9;54474:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54460:48;;;;;;54412:108;54652:4;54658:18;:7;:16;:18::i;:::-;54635:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54621:57;;;;53894:792;;;;:::o;36859:127::-;36922:7;36949:29;:6;:12;36956:4;36949:12;;;;;;;;;;;:20;;:27;:29::i;:::-;36942:36;;36859:127;;;:::o;67313:307::-;67374:4;67388:27;67393:12;:10;:12::i;:::-;67407:2;67411:3;67388:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67426:34;66541:24;67447:12;:10;:12::i;:::-;67426:7;:34::i;:::-;67418:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67499:40;67509:2;67513:25;:15;:23;:25::i;:::-;67499:9;:40::i;:::-;67542:44;67555:25;:15;:23;:25::i;:::-;67582:3;67542:12;:44::i;:::-;67589:27;:15;:25;:27::i;:::-;67313:307;;;;:::o;66503:62::-;66541:24;66503:62;:::o;38760:230::-;38845:45;38853:6;:12;38860:4;38853:12;;;;;;;;;;;:22;;;38877:12;:10;:12::i;:::-;38845:7;:45::i;:::-;38837:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38956:26;38968:4;38974:7;38956:11;:26::i;:::-;38760:230;;:::o;66572:62::-;66610:24;66572:62;:::o;68766:122::-;68810:13;68828:56;;;;;;;;;;;;;;;;;;;68766:122;:::o;56995:164::-;57092:4;57116:18;:25;57135:5;57116:25;;;;;;;;;;;;;;;:35;57142:8;57116:35;;;;;;;;;;;;;;;;;;;;;;;;;57109:42;;56995:164;;;;:::o;68502:97::-;68272:9;:7;:9::i;:::-;68264:18;;;;;;68567:28:::1;68586:8;68567:18;:28::i;:::-;68502:97:::0;:::o;31918:152::-;31988:4;32012:50;32017:3;:10;;32053:5;32037:23;;32029:32;;32012:4;:50::i;:::-;32005:57;;31918:152;;;;:::o;59576:127::-;59641:4;59665:30;59687:7;59665:12;:21;;:30;;;;:::i;:::-;59658:37;;59576:127;;;:::o;68:106::-;121:15;156:10;149:17;;68:106;:::o;65503:183::-;65596:2;65569:15;:24;65585:7;65569:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;65652:7;65648:2;65614:46;;65623:23;65638:7;65623:14;:23::i;:::-;65614:46;;;;;;;;;;;;65503:183;;:::o;7668:123::-;7737:7;7764:19;7772:3;:10;;7764:7;:19::i;:::-;7757:26;;7668:123;;;:::o;59870:355::-;59963:4;59988:16;59996:7;59988;:16::i;:::-;59980:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60064:13;60080:23;60095:7;60080:14;:23::i;:::-;60064:39;;60133:5;60122:16;;:7;:16;;;:51;;;;60166:7;60142:31;;:20;60154:7;60142:11;:20::i;:::-;:31;;;60122:51;:94;;;;60177:39;60201:5;60208:7;60177:23;:39::i;:::-;60122:94;60114:103;;;59870:355;;;;:::o;63006:599::-;63131:4;63104:31;;:23;63119:7;63104:14;:23::i;:::-;:31;;;63096:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63232:1;63218:16;;:2;:16;;;;63210:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63288:39;63309:4;63315:2;63319:7;63288:20;:39::i;:::-;63392:29;63409:1;63413:7;63392:8;:29::i;:::-;63434:35;63461:7;63434:13;:19;63448:4;63434:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;63480:30;63502:7;63480:13;:17;63494:2;63480:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;63523:29;63540:7;63549:2;63523:12;:16;;:29;;;;;:::i;:::-;;63589:7;63585:2;63570:27;;63579:4;63570:27;;;;;;;;;;;;63006:599;;;:::o;40740:188::-;40814:33;40839:7;40814:6;:12;40821:4;40814:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;40810:111;;;40896:12;:10;:12::i;:::-;40869:40;;40887:7;40869:40;;40881:4;40869:40;;;;;;;;;;40810:111;40740:188;;:::o;34852:137::-;34923:7;34958:22;34962:3;:10;;34974:5;34958:3;:22::i;:::-;34950:31;;34943:38;;34852:137;;;;:::o;40936:192::-;41011:36;41039:7;41011:6;:12;41018:4;41011:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;41007:114;;;41096:12;:10;:12::i;:::-;41069:40;;41087:7;41069:40;;41081:4;41069:40;;;;;;;;;;41007:114;40936:192;;:::o;62124:545::-;62184:13;62200:23;62215:7;62200:14;:23::i;:::-;62184:39;;62254:48;62275:5;62290:1;62294:7;62254:20;:48::i;:::-;62343:29;62360:1;62364:7;62343:8;:29::i;:::-;62462:1;62431:10;:19;62442:7;62431:19;;;;;;;;;;;62425:33;;;;;;;;;;;;;;;;:38;62421:97;;62487:10;:19;62498:7;62487:19;;;;;;;;;;;;62480:26;;;;:::i;:::-;62421:97;62530:36;62558:7;62530:13;:20;62544:5;62530:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;62579:28;62599:7;62579:12;:19;;:28;;;;:::i;:::-;;62653:7;62649:1;62625:36;;62634:5;62625:36;;;;;;;;;;;;62124:545;;:::o;8139:236::-;8219:7;8228;8249:11;8262:13;8279:22;8283:3;:10;;8295:5;8279:3;:22::i;:::-;8248:53;;;;8328:3;8320:12;;8358:5;8350:14;;8312:55;;;;;;8139:236;;;;;:::o;9425:213::-;9532:7;9583:44;9588:3;:10;;9608:3;9600:12;;9614;9583:4;:44::i;:::-;9575:53;;9552:78;;9425:213;;;;;:::o;34384:114::-;34444:7;34471:19;34479:3;:10;;34471:7;:19::i;:::-;34464:26;;34384:114;;;:::o;33214:158::-;33288:7;33339:22;33343:3;:10;;33355:5;33339:3;:22::i;:::-;33331:31;;33308:56;;33214:158;;;;:::o;32490:167::-;32570:4;32594:55;32604:3;:10;;32640:5;32624:23;;32616:32;;32594:9;:55::i;:::-;32587:62;;32490:167;;;;:::o;58991:272::-;59105:28;59115:4;59121:2;59125:7;59105:9;:28::i;:::-;59152:48;59175:4;59181:2;59185:7;59194:5;59152:22;:48::i;:::-;59144:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58991:272;;;;:::o;9758:746::-;9814:13;10044:1;10035:5;:10;10031:53;;;10062:10;;;;;;;;;;;;;;;;;;;;;10031:53;10094:12;10109:5;10094:20;;10125:14;10150:78;10165:1;10157:4;:9;10150:78;;10183:8;;;;;;;10214:2;10206:10;;;;;;;;;10150:78;;;10238:19;10270:6;10260:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10238:39;;10288:13;10313:1;10304:6;:10;10288:26;;10332:5;10325:12;;10348:117;10363:1;10355:4;:9;10348:117;;10424:2;10417:4;:9;;;;;;10412:2;:14;10399:29;;10381:6;10388:7;;;;;;;10381:15;;;;;;;;;;;:47;;;;;;;;;;;10451:2;10443:10;;;;;;;;;10348:117;;;10489:6;10475:21;;;;;;9758:746;;;;:::o;32743:117::-;32806:7;32833:19;32841:3;:10;;32833:7;:19::i;:::-;32826:26;;32743:117;;;:::o;18828:114::-;18893:7;18920;:14;;;18913:21;;18828:114;;;:::o;60568:110::-;60644:26;60654:2;60658:7;60644:26;;;;;;;;;;;;:9;:26::i;:::-;60568:110;;:::o;63761:215::-;63861:16;63869:7;63861;:16::i;:::-;63853:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63959:9;63937:10;:19;63948:7;63937:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;63761:215;;:::o;18950:181::-;19122:1;19104:7;:14;;;:19;;;;;;;;;;;18950:181;:::o;68603:159::-;68689:1;68669:22;;:8;:22;;;;68661:31;;;;;;68729:8;68700:38;;68721:6;;;;;;;;;;;68700:38;;;;;;;;;;;;68750:8;68741:6;;:17;;;;;;;;;;;;;;;;;;68603:159;:::o;26962:414::-;27025:4;27047:21;27057:3;27062:5;27047:9;:21::i;:::-;27042:327;;27085:3;:11;;27102:5;27085:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27268:3;:11;;:18;;;;27246:3;:12;;:19;27259:5;27246:19;;;;;;;;;;;:40;;;;27308:4;27301:11;;;;27042:327;27352:5;27345:12;;26962:414;;;;;:::o;7429:151::-;7513:4;7537:35;7547:3;:10;;7567:3;7559:12;;7537:9;:35::i;:::-;7530:42;;7429:151;;;;:::o;4237:110::-;4293:7;4320:3;:12;;:19;;;;4313:26;;4237:110;;;:::o;67790:159::-;67900:45;67927:4;67933:2;67937:7;67900:26;:45::i;:::-;67790:159;;;:::o;33929:137::-;33999:4;34023:35;34031:3;:10;;34051:5;34043:14;;34023:7;:35::i;:::-;34016:42;;33929:137;;;;:::o;33622:131::-;33689:4;33713:32;33718:3;:10;;33738:5;33730:14;;33713:4;:32::i;:::-;33706:39;;33622:131;;;;:::o;6852:185::-;6941:4;6965:64;6970:3;:10;;6990:3;6982:12;;7020:5;7004:23;;6996:32;;6965:4;:64::i;:::-;6958:71;;6852:185;;;;;:::o;29860:204::-;29927:7;29976:5;29955:3;:11;;:18;;;;:26;29947:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30038:3;:11;;30050:5;30038:18;;;;;;;;;;;;;;;;30031:25;;29860:204;;;;:::o;32246:158::-;32319:4;32343:53;32351:3;:10;;32387:5;32371:23;;32363:32;;32343:7;:53::i;:::-;32336:60;;32246:158;;;;:::o;7203:142::-;7280:4;7304:33;7312:3;:10;;7332:3;7324:12;;7304:7;:33::i;:::-;7297:40;;7203:142;;;;:::o;4712:279::-;4779:7;4788;4838:5;4816:3;:12;;:19;;;;:27;4808:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4895:22;4920:3;:12;;4933:5;4920:19;;;;;;;;;;;;;;;;;;4895:44;;4958:5;:10;;;4970:5;:12;;;4950:33;;;;;4712:279;;;;;:::o;6209:319::-;6303:7;6323:16;6342:3;:12;;:17;6355:3;6342:17;;;;;;;;;;;;6323:36;;6390:1;6378:8;:13;;6393:12;6370:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6460:3;:12;;6484:1;6473:8;:12;6460:26;;;;;;;;;;;;;;;;;;:33;;;6453:40;;;6209:319;;;;;:::o;29397:109::-;29453:7;29480:3;:11;;:18;;;;29473:25;;29397:109;;;:::o;29182:129::-;29255:4;29302:1;29279:3;:12;;:19;29292:5;29279:19;;;;;;;;;;;;:24;;29272:31;;29182:129;;;;:::o;64871:624::-;64988:4;65015:15;:2;:13;;;:15::i;:::-;65010:60;;65054:4;65047:11;;;;65010:60;65080:23;65106:276;65163:45;;;65227:12;:10;:12::i;:::-;65258:4;65281:7;65307:5;65122:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65106:276;;;;;;;;;;;;;;;;;:2;:15;;;;:276;;;;;:::i;:::-;65080:302;;65393:13;65420:10;65409:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65393:48;;50020:10;65470:16;;65460:26;;;:6;:26;;;;65452:35;;;;64871:624;;;;;;;:::o;60905:250::-;61001:18;61007:2;61011:7;61001:5;:18::i;:::-;61038:54;61069:1;61073:2;61077:7;61086:5;61038:22;:54::i;:::-;61030:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60905:250;;;:::o;4017:125::-;4088:4;4133:1;4112:3;:12;;:17;4125:3;4112:17;;;;;;;;;;;;:22;;4105:29;;4017:125;;;;:::o;66299:93::-;;;;:::o;27552:1544::-;27618:4;27736:18;27757:3;:12;;:19;27770:5;27757:19;;;;;;;;;;;;27736:40;;27807:1;27793:10;:15;27789:1300;;28155:21;28192:1;28179:10;:14;28155:38;;28208:17;28249:1;28228:3;:11;;:18;;;;:22;28208:42;;28495:17;28515:3;:11;;28527:9;28515:22;;;;;;;;;;;;;;;;28495:42;;28661:9;28632:3;:11;;28644:13;28632:26;;;;;;;;;;;;;;;:38;;;;28780:1;28764:13;:17;28738:3;:12;;:23;28751:9;28738:23;;;;;;;;;;;:43;;;;28890:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;28985:3;:12;;:19;28998:5;28985:19;;;;;;;;;;;28978:26;;;29028:4;29021:11;;;;;;;;27789:1300;29072:5;29065:12;;;27552:1544;;;;;:::o;1517:692::-;1593:4;1709:16;1728:3;:12;;:17;1741:3;1728:17;;;;;;;;;;;;1709:36;;1774:1;1762:8;:13;1758:444;;;1829:3;:12;;1847:38;;;;;;;;1864:3;1847:38;;;;1877:5;1847:38;;;1829:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2044:3;:12;;:19;;;;2024:3;:12;;:17;2037:3;2024:17;;;;;;;;;;;:39;;;;2085:4;2078:11;;;;;1758:444;2158:5;2122:3;:12;;2146:1;2135:8;:12;2122:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;2185:5;2178:12;;;1517:692;;;;;;:::o;2384:1549::-;2448:4;2564:16;2583:3;:12;;:17;2596:3;2583:17;;;;;;;;;;;;2564:36;;2629:1;2617:8;:13;2613:1313;;2978:21;3013:1;3002:8;:12;2978:36;;3029:17;3071:1;3049:3;:12;;:19;;;;:23;3029:43;;3317:26;3346:3;:12;;3359:9;3346:23;;;;;;;;;;;;;;;;;;3317:52;;3494:9;3464:3;:12;;3477:13;3464:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;3618:1;3602:13;:17;3571:3;:12;;:28;3584:9;:14;;;3571:28;;;;;;;;;;;:48;;;;3728:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3824:3;:12;;:17;3837:3;3824:17;;;;;;;;;;;3817:24;;;3865:4;3858:11;;;;;;;;2613:1313;3909:5;3902:12;;;2384:1549;;;;;:::o;11121:422::-;11181:4;11389:12;11500:7;11488:20;11480:28;;11534:1;11527:4;:8;11520:15;;;11121:422;;;:::o;14041:195::-;14144:12;14176:52;14198:6;14206:4;14212:1;14215:12;14176:21;:52::i;:::-;14169:59;;14041:195;;;;;:::o;61491:404::-;61585:1;61571:16;;:2;:16;;;;61563:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61644:16;61652:7;61644;:16::i;:::-;61643:17;61635:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61706:45;61735:1;61739:2;61743:7;61706:20;:45::i;:::-;61764:30;61786:7;61764:13;:17;61778:2;61764:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61807:29;61824:7;61833:2;61807:12;:16;;:29;;;;;:::i;:::-;;61879:7;61875:2;61854:33;;61871:1;61854:33;;;;;;;;;;;;61491:404;;:::o;15093:530::-;15220:12;15278:5;15253:21;:30;;15245:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15345:18;15356:6;15345:10;:18::i;:::-;15337:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15471:12;15485:23;15512:6;:11;;15532:5;15540:4;15512:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15470:75;;;;15563:52;15581:7;15590:10;15602:12;15563:17;:52::i;:::-;15556:59;;;;15093:530;;;;;;:::o;17633:742::-;17748:12;17777:7;17773:595;;;17808:10;17801:17;;;;17773:595;17942:1;17922:10;:17;:21;17918:439;;;18185:10;18179:17;18246:15;18233:10;18229:2;18225:19;18218:44;18133:148;18328:12;18321:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17633:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://7c0d11a2c57977e7105ed6f6923de3f5d8b417d24f5b8cd66337f021bfe3f9a1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.