ETH Price: $3,272.07 (-4.06%)
Gas: 8 Gwei

Token

NonFunGerbils v2 (NFGv2)
 

Overview

Max Total Supply

421 NFGv2

Holders

229

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NFGv2
0x558bc05e6aacac3dda96c43fcd242a11afd3865c
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:
ERC721Printable

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 16 of 18: PrintableNonFungerbils.sol
  // SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./ERC721Royalties.sol";
import "./ERC721NonFunGerbils.sol";
/**
 * @title ERC721 Printable Token
 * @dev ERC721 Token that can be be printed before being sold and not incur high gas fees 
 */
 contract ERC721Printable is ERC721, Royalties {
     bytes4 private constant _INTERFACE_ID_ERC721ROYALTIES = 0x46e80720;


  uint256 public totalSeries;
  address payable public MintableAddress;
  mapping(uint256 => PreMint) public PreMintData;
  mapping(uint256 => bool) public PrintSeries;
  struct PreMint {
      uint256 amount_of_tokens_left;
      uint256 price;
      address payable creator;
      string url;
      
    }  
  event SeriesMade(address indexed creator, uint256 indexed price, uint256 indexed amount_made);
  event SeriesPurchased(address indexed buyer, uint256 indexed token_id, uint256 indexed price); 
  event TransferPayment(address indexed to, uint256 indexed amount); 
  event TransferFee(address indexed to, uint256 indexed fee); 
  
  
   constructor(
        string memory name,
        string memory symbol,
        string memory baseURI,
        uint256 batch_amount,
        uint256 royalty_amount,
        address creator
    ) public  ERC721(name, symbol, baseURI, batch_amount) Royalties(royalty_amount, creator) {
        MintableAddress = msg.sender;
        _registerInterface(_INTERFACE_ID_ERC721ROYALTIES);
    }
    
   function _createPrintSeries(uint256 _totalAmount, uint256 _price, string memory _url) internal returns (bool){
        totalSeries = totalSeries.add(1);
          PrintSeries[totalSeries] = true;
          
          PreMintData[totalSeries].amount_of_tokens_left = _totalAmount;
              PreMintData[totalSeries].price = _price;
                 PreMintData[totalSeries].url = _url;
                PreMintData[totalSeries].creator = msg.sender;
                
                emit SeriesMade(msg.sender, _price, _totalAmount);
                return true;
 }
 
    function createPrintSeries(uint256 _amount, uint256 _price, string memory _url) public onlyOwner returns (bool){
        return _createPrintSeries(_amount, _price, _url);
        
    }
    function mintSeries(uint256 _seriesID, address _to) public payable returns (bool){
     require(PrintSeries[_seriesID], "Not a valid series");
     require(PreMintData[_seriesID].amount_of_tokens_left >= 1, "Series is SOLD OUT!");
     require(msg.value >= PreMintData[_seriesID].price, "Invalid amount sent to purchase this NFT");
     //get total supply
     //change the amount of tokens left to be one less
     PreMintData[_seriesID].amount_of_tokens_left =  PreMintData[_seriesID].amount_of_tokens_left.sub(1);
     //check if tokens left are 0 if so, set to sold out
     if(PreMintData[_seriesID].amount_of_tokens_left == 0){
         PrintSeries[_seriesID] = false;
     }
     emit SeriesPurchased( msg.sender, super.totalSupply().add(1), msg.value); 
     //mint tokens and send to buyer
     super._mintWithURI(_to, PreMintData[_seriesID].url);
     //calculate fees to be removed
     uint256 fee = (msg.value.mul(5)).div(100);
     uint256 creatorsPayment = msg.value.sub(fee);
     //transfer payment to creator's address
     PreMintData[_seriesID].creator.transfer(creatorsPayment);
    require(address(this).balance >= fee, "Not enough balance to send fee");
    emit TransferPayment( PreMintData[_seriesID].creator,  creatorsPayment);
    MintableAddress.transfer(fee);
    emit TransferFee(MintableAddress, fee); 
    return true;
 }
 
}

  

File 1 of 18: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;

            bytes32 accountHash
         = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 18: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

File 3 of 18: EnumerableMap.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

File 4 of 18: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

File 5 of 18: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
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
        override
        view
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

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

File 6 of 18: ERC721NonFunGerbils.sol

pragma solidity ^0.6.0;

import "./Context.sol";
import "./IERC721.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Receiver.sol";
import "./ERC165.sol";
import "./SafeMath.sol";
import "./Address.sol";
import "./EnumerableSet.sol";
import "./EnumerableMap.sol";
import "./Strings.sol";
import "./Ownable.sol";

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
 
contract ERC721 is
    Context,
    Ownable,
    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;

    // Mapping showing the addresses batch numbers in a set
    mapping(address => EnumerableSet.UintSet) private _ownersBatches;
    mapping(address => uint256) public BalancesMap;
    mapping(uint256 => EnumerableSet.UintSet) private _batchMax;
    mapping(uint256 => owners) public _batchMintOwnersMap;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;
    uint8 MIN_MINT = 2;
    uint256 public MAX_MINT;
    uint256 public _totalSupply = 0;
    uint256 public _totalBatches;
    struct owners {
        uint256 start;
        uint256 end;
        address owner;
        string URL;
    }

    // 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 ^ 0xe985e9c ^ 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,
        string memory baseURI,
        uint256 batch_amount
    ) public {
        _name = name;
        _symbol = symbol;
        _setBaseURI(baseURI);
        MAX_MINT = batch_amount;
        // 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 override view returns (uint256) {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
      
        return BalancesMap[owner];
        //return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public override view returns (address) {
        
        if (_tokenOwners.contains(tokenId)) {
            return _tokenOwners.get(tokenId);
        } else {
            uint256 min = tokenId.div(MAX_MINT);
           
            uint256 max = (tokenId.div(MIN_MINT)).add(1);
            if (max > _totalBatches) {
                max = _totalBatches;
            }

            
            address temp = address(0x0);
            for (uint256 i = min; i < max; i++) {
           
                if (_batchMax[i].length() >= 1) {
                   
                    if (_batchMax[i].at(1) >= tokenId) {
                    
                        if (
                            _batchMintOwnersMap[i].start <= tokenId &&
                            _batchMintOwnersMap[i].end >= tokenId
                        ) {
                           

                            temp = _batchMintOwnersMap[i].owner;
                            return temp;
                        }
                    }
                }
            }
            return temp;
        }
        //return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

    function tokenOwners(address owner, uint256 index) public view returns (uint256){
        (uint256 id) = _holderTokens[owner].at(index);
        return (id);
    }
    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public override view returns (string memory) {
        return _symbol;
    }

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

        string memory _tokenURI = _tokenURIs[tokenId];
        if(tokenId <= totalSupply()){
          
            uint256 min = tokenId.div(MAX_MINT);
           
            uint256 max = (tokenId.div(MIN_MINT)).add(1);
           
            if (max > _totalBatches) {
                max = _totalBatches;
            }

           
            for (uint256 i = min; i < max; i++) {
                
                if (_batchMax[i].length() >= 1) {
                    if (_batchMax[i].at(1) >= tokenId) {
                        
                        if (
                            _batchMintOwnersMap[i].start < tokenId &&
                            _batchMintOwnersMap[i].end >= tokenId
                        ) {
                            if(bytes(_batchMintOwnersMap[i].URL).length != 0){
                            return _batchMintOwnersMap[i].URL;
                            }
                        }
                    }
                }
            }

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

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




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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * @return tokenId at index
     */
    function tokenByIndex(uint256 index)
        public
        override
        view
        returns (uint256)
    {
       if(_exists(index)) {
                return index;
        } else {
            revert("No token found at index");
        }
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        override
        view
        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-setApprovalForAll}.
     */
    function setApprovalForExchange(address owner, address exchange, bool approved)
        public
        onlyOwner
    {
        require(exchange != owner, "ERC721: approve to caller");

        _operatorApprovals[owner][exchange] = approved;
        emit ApprovalForAll(owner, exchange, approved);
    }
    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        override
        view
        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 mecanisms 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) public view returns (bool) {
        if (_tokenOwners.contains(tokenId)) {
            return _tokenOwners.contains(tokenId);
        } else if(tokenId <= totalSupply()){
          
            uint256 min = tokenId.div(MAX_MINT);
           
            uint256 max = (tokenId.div(MIN_MINT)).add(1);
           
            if (max > _totalBatches) {
                max = _totalBatches;
            }

           
            for (uint256 i = min; i < max; i++) {
                
                if (_batchMax[i].length() >= 1) {
                    if (_batchMax[i].at(1) >= tokenId) {
                        
                        if (
                            _batchMintOwnersMap[i].start <= tokenId &&
                            _batchMintOwnersMap[i].end >= tokenId
                        ) {
                            return true;
                        }
                    }
                }
            }

            return false;
        }
    }

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



    /**
     * @dev 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) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        _totalSupply = _totalSupply.add(1); 
        _holderTokens[to].add(_totalSupply);
        _tokenOwners.set(_totalSupply, to);
        BalancesMap[to] = BalancesMap[to].add(1);
        emit Transfer(address(0), to, _totalSupply);
    }

    function mint(address to) public onlyOwner returns (bool) {
        _mint(to);
        return true;
    }

    function mintWithURI(address to, string memory url) public onlyOwner returns (bool) {
        _mint(to);
        _setTokenURI(_totalSupply, url);
        return true;
    }
    
       function _mintWithURI(address to, string memory url) internal returns (bool) {
        _mint(to);
        _setTokenURI(_totalSupply, url);
        return true;
    }
    /** BATCH MINT
     * 
     * Hey nate, ever get tired of relying on others? Ever want to create your own stuff and not copy? 
     * Eh, probably not.... everything you've done so far is riding on someone else's coat tails. 
     * 
     * @dev _batchMint `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 _batchMint(address to, uint256 count) internal virtual {
      
        require(to != address(0), "ERC721: mint to the zero address");


        for (uint16 i = 0; i < count; i++) {
            emit Transfer(address(0), to, _totalSupply.add(i+1));
        }
        _batchMintOwnersMap[_totalBatches].start = _totalSupply;
        _batchMintOwnersMap[_totalBatches].end = _totalSupply.add(count);
        _batchMintOwnersMap[_totalBatches].owner = msg.sender;
        _batchMax[_totalBatches].add(_totalSupply);
        _batchMax[_totalBatches].add(count.add(_totalSupply));
        _ownersBatches[msg.sender].add(count);
        _totalBatches = _totalBatches.add(1);
        BalancesMap[msg.sender] = BalancesMap[msg.sender].add(count);
        _totalSupply = _totalSupply.add(count); 
       
    }

   function _batchMint(address to, uint256 count, string memory _URL) internal virtual {
      
        require(to != address(0), "ERC721: mint to the zero address");


        for (uint16 i = 0; i < count; i++) {
            emit Transfer(address(0), to, _totalSupply.add(i+1));
        }
        _batchMintOwnersMap[_totalBatches].start = _totalSupply;
        _batchMintOwnersMap[_totalBatches].end = _totalSupply.add(count);
        _batchMintOwnersMap[_totalBatches].owner = msg.sender;
        _batchMintOwnersMap[_totalBatches].URL = _URL;
        _batchMax[_totalBatches].add(_totalSupply);
        _batchMax[_totalBatches].add(count.add(_totalSupply));
        _ownersBatches[msg.sender].add(count);
        _totalBatches = _totalBatches.add(1);
        BalancesMap[msg.sender] = BalancesMap[msg.sender].add(count);
        _totalSupply = _totalSupply.add(count); 
       
    }
    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        //_beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
         BalancesMap[from] =   BalancesMap[from].sub(1);
         BalancesMap[to] = BalancesMap[to].add(1);
        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (!to.isContract()) {
            return true;
        }
        bytes memory returndata = to.functionCall(
            abi.encodeWithSelector(
                IERC721Receiver(to).onERC721Received.selector,
                _msgSender(),
                from,
                tokenId,
                _data
            ),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

    function batchMint(address to, uint256 count) onlyOwner public returns (bool) {
        require(
            count >= MIN_MINT && count <= MAX_MINT,
            "Can only mint between 2 and 2000 tokens"
        );

        _batchMint(to, count);

        return true;
    }
    
     function batchMintURL(address to, uint256 count, string memory _URL) onlyOwner public returns (bool) {
        require(
            count >= MIN_MINT && count <= MAX_MINT,
            "Can only mint between 2 and 2000 tokens"
        );

        _batchMint(to, count, _URL);

        return true;
    }
}

File 7 of 18: ERC721Royalties.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;
import "./ERC165.sol";

/**
 * @dev Implementation of royalties for 721s
 *
 */
abstract contract Royalties is ERC165 {
    /*
     * ERC165 bytes to add to interface array - set in parent contract implementing this standard
     *
     * bytes4(keccak256('royaltyInfo()')) == 0x46e80720
     * bytes4 private constant _INTERFACE_ID_ERC721ROYALTIES = 0x46e80720;
     * _registerInterface(_INTERFACE_ID_ERC721ROYALTIES);
     */

    uint256 private royalty_amount;
    address private creator;
    bytes4 private constant _INTERFACE_ID_ERC721ROYALTIES = 0x46e80720;
    /**
    @notice This event is emitted when royalties are transfered.

    @dev The marketplace would emit this event from their contracts. Or they would call royaltiesRecieved() function.

    @param creator The original creator of the NFT entitled to the royalties
    @param buyer The person buying the NFT on a secondary sale
    @param amount The amount being paid to the creator
    */
    event RecievedRoyalties(
        address indexed creator,
        address indexed buyer,
        uint256 indexed amount
    );

    /**
     *  @notice Constructor called from the NFT being deployed with the value for the royalty in percentage and the creator who will recieve the royalty payment
     *
     *  @param _amount The percentage value on each sale that will be transfered to the creator
     *  @param _creator The original creator of the NFT entitled to the royalties
     *
     */

    constructor(uint256 _amount, address _creator) internal {
        royalty_amount = _amount;
        creator = _creator;
        _registerInterface(_INTERFACE_ID_ERC721ROYALTIES);
    }

    /**
     *      @notice Called to return the royalty amount that was set and only return that amount
     */
    function royaltyAmount() public view returns (uint256) {
        return royalty_amount;
    }

    /**
     *      @notice Called to return both the creator's address and the royalty percentage - this would be the main function called by marketplaces unless they specifically need just the royaltyAmount
     */
    function royaltyInfo() external view returns (uint256, address) {
        return (royalty_amount, creator);
    }

    /**
     *      @notice Called to verify if contract implements royalties - OPTIONAL as supportsInterface()  can be called as well.
     *      @param _creator The original creator of the NFT entitled to the royalties
     *      @param _buyer The buyer of the NFT in a secondary sale
     *      @param _amount The amount paid for royalties on this secondary sale. (Price of ERC721 sold * Royalty Percentage)
     */
    function royaltiesRecieved(
        address _creator,
        address _buyer,
        uint256 _amount
    ) external {
        emit RecievedRoyalties(_creator, _buyer, _amount);
    }

    /**
     *      @notice Called to verify if contract implements royalties - OPTIONAL as supportsInterface()  can be called as well.
     */
    function hasRoyalties() public pure returns (bool) {
        return true;
    }
}

File 8 of 18: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

File 9 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 11 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

import "./IERC721.sol";

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

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

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

File 12 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

File 13 of 18: IERC721Royalties.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;
import "./IERC165.sol";

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC721Royalties is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transfered 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;

    /**
    @notice This event is emitted when royalties are received.

    @dev The marketplace would call royaltiesRecieved() function so that the NFT contracts emits this event.

    @param creator The original creator of the NFT entitled to the royalties
    @param buyer The person buying the NFT on a secondary sale
    @param amount The amount being paid to the creator
  */
    event RecievedRoyalties(
        address indexed creator,
        address indexed buyer,
        uint256 indexed amount
    );

    /**
     * @dev Returns true if implemented
     *
     * @dev this is how the marketplace can see if the contract has royalties, other than using the supportsInterface() call.
     */
    function hasRoyalties() external view returns (bool);

    /**
     * @dev Returns uint256 of the amount of percentage the royalty is set to. For example, if 1%, would return "1", if 50%, would return "50"
     *
     * @dev Marketplaces would need to call this during the purchase function of their marketplace - and then implement the transfer of that amount on their end
     */
    function royaltyAmount() external view returns (uint256);

    /**
     * @dev Returns royalty amount as uint256 and address where royalties should go.
     *
     * @dev Marketplaces would need to call this during the purchase function of their marketplace - and then implement the transfer of that amount on their end
     */
    function royaltyInfo() external view returns (uint256, address);

    /**
     * @dev Called by the marketplace after the transfer of royalties has happened, so that the contract has a record
     * @dev emits RecievedRoyalties event;
     *
     * @param _creator The original creator of the NFT entitled to the royalties
     * @param _buyer The person buying the NFT on a secondary sale
     * @param _amount The amount being paid to the creator
     */
    function royaltiesRecieved(
        address _creator,
        address _buyer,
        uint256 _amount
    ) external view;
}

File 14 of 18: IOwnable.sol
pragma solidity ^0.6.0;

interface IOwnable {
    function owner() external view returns (address);

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

    function renounceOwnership() external;

    function transferOwnership(address _newOwner) external;
}

File 15 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

File 18 of 18: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"batch_amount","type":"uint256"},{"internalType":"uint256","name":"royalty_amount","type":"uint256"},{"internalType":"address","name":"creator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RecievedRoyalties","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"amount_made","type":"uint256"}],"name":"SeriesMade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"token_id","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"price","type":"uint256"}],"name":"SeriesPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"TransferFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferPayment","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"BalancesMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintableAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"PreMintData","outputs":[{"internalType":"uint256","name":"amount_of_tokens_left","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address payable","name":"creator","type":"address"},{"internalType":"string","name":"url","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"PrintSeries","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_batchMintOwnersMap","outputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"URL","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"_exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBatches","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"batchMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"string","name":"_URL","type":"string"}],"name":"batchMintURL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"string","name":"_url","type":"string"}],"name":"createPrintSeries","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasRoyalties","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_seriesID","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintSeries","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"url","type":"string"}],"name":"mintWithURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_creator","type":"address"},{"internalType":"address","name":"_buyer","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"royaltiesRecieved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"exchange","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForExchange","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOwners","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":"totalSeries","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

6080604052600d805460ff191660021790556000600f553480156200002357600080fd5b5060405162003ebc38038062003ebc833981810160405260c08110156200004957600080fd5b81019080805160405193929190846401000000008211156200006a57600080fd5b9083019060208201858111156200008057600080fd5b82516401000000008111828201881017156200009b57600080fd5b82525081516020918201929091019080838360005b83811015620000ca578181015183820152602001620000b0565b50505050905090810190601f168015620000f85780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011c57600080fd5b9083019060208201858111156200013257600080fd5b82516401000000008111828201881017156200014d57600080fd5b82525081516020918201929091019080838360005b838110156200017c57818101518382015260200162000162565b50505050905090810190601f168015620001aa5780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001ce57600080fd5b908301906020820185811115620001e457600080fd5b8251640100000000811182820188101715620001ff57600080fd5b82525081516020918201929091019080838360005b838110156200022e57818101518382015260200162000214565b50505050905090810190601f1680156200025c5780820380516001836020036101000a031916815260200191505b506040908152602082015190820151606090920151909350909150818187878787600062000289620003bf565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002e56301ffc9a760e01b620003c3565b8351620002fa90600b90602087019062000464565b5082516200031090600c90602086019062000464565b506200031c826200044b565b600e819055620003336380ac58cd60e01b620003c3565b62000345635b5e139f60e01b620003c3565b6200035763780e9d6360e01b620003c3565b505050601383905550601480546001600160a01b0319166001600160a01b0383161790556200038d630237403960e51b620003c3565b5050601680546001600160a01b03191633179055620003b3630237403960e51b620003c3565b50505050505062000500565b3390565b6001600160e01b0319808216141562000423576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b80516200046090601290602084019062000464565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004a757805160ff1916838001178555620004d7565b82800160010185558215620004d7579182015b82811115620004d7578251825591602001919060010190620004ba565b50620004e5929150620004e9565b5090565b5b80821115620004e55760008155600101620004ea565b6139ac80620005106000396000f3fe6080604052600436106102515760003560e01c8063656605d61161013957806395d89b41116100b6578063b88d4fde1161007a578063b88d4fde14610b3d578063c87b56dd14610c0e578063e985e9c514610c38578063f0292a0314610c73578063f2fde38b14610c88578063f8e76cc014610cbb57610251565b806395d89b41146109cd5780639e1c3ee3146109e2578063a22cb46514610a27578063acc964e714610a62578063ad72f3f514610b2857610251565b8063715018a6116100fd578063715018a6146109125780637c6e551d1461092757806384a09c271461093c5780638b5e51d21461097f5780638da5cb5b146109b857610251565b8063656605d614610858578063662f12291461086d5780636a627842146108975780636c0360eb146108ca57806370a08231146108df57610251565b80632f745c59116101d257806346e807201161019657806346e80720146106275780634e881e201461065d5780634f6ccce7146106875780634fbe39e9146106b1578063610d107e1461076e5780636352211e1461082e57610251565b80632f745c591461052a57806338232cfe146105635780633eaaf86b1461059657806342842e0e146105ab57806343508b05146105ee57610251565b80630c6a595a116102195780630c6a595a146103d55780630e980602146103fc578063146862cc146104bd57806318160ddd146104d257806323b872dd146104e757610251565b806301ffc9a71461025657806303c3ff251461029e57806306fdde03146102ca578063081812fc14610354578063095ea7b31461039a575b600080fd5b34801561026257600080fd5b5061028a6004803603602081101561027957600080fd5b50356001600160e01b031916610ce5565b604080519115158252519081900360200190f35b61028a600480360360408110156102b457600080fd5b50803590602001356001600160a01b0316610d08565b3480156102d657600080fd5b506102df6110c1565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610319578181015183820152602001610301565b50505050905090810190601f1680156103465780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036057600080fd5b5061037e6004803603602081101561037757600080fd5b5035611157565b604080516001600160a01b039092168252519081900360200190f35b3480156103a657600080fd5b506103d3600480360360408110156103bd57600080fd5b506001600160a01b0381351690602001356111b9565b005b3480156103e157600080fd5b506103ea611294565b60408051918252519081900360200190f35b34801561040857600080fd5b5061028a6004803603604081101561041f57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561044957600080fd5b82018360208201111561045b57600080fd5b803590602001918460018302840111600160201b8311171561047c57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061129a945050505050565b3480156104c957600080fd5b506103ea611312565b3480156104de57600080fd5b506103ea611318565b3480156104f357600080fd5b506103d36004803603606081101561050a57600080fd5b506001600160a01b0381358116916020810135909116906040013561131e565b34801561053657600080fd5b506103ea6004803603604081101561054d57600080fd5b506001600160a01b038135169060200135611375565b34801561056f57600080fd5b506103ea6004803603602081101561058657600080fd5b50356001600160a01b03166113c5565b3480156105a257600080fd5b506103ea6113d7565b3480156105b757600080fd5b506103d3600480360360608110156105ce57600080fd5b506001600160a01b038135811691602081013590911690604001356113dd565b3480156105fa57600080fd5b5061028a6004803603604081101561061157600080fd5b506001600160a01b0381351690602001356113f8565b34801561063357600080fd5b5061063c6114ae565b604080519283526001600160a01b0390911660208301528051918290030190f35b34801561066957600080fd5b5061028a6004803603602081101561068057600080fd5b50356114c1565b34801561069357600080fd5b506103ea600480360360208110156106aa57600080fd5b50356114d6565b3480156106bd57600080fd5b5061028a600480360360608110156106d457600080fd5b813591602081013591810190606081016040820135600160201b8111156106fa57600080fd5b82018360208201111561070c57600080fd5b803590602001918460018302840111600160201b8311171561072d57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061153a945050505050565b34801561077a57600080fd5b506107986004803603602081101561079157600080fd5b50356115a9565b60405180858152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156107f05781810151838201526020016107d8565b50505050905090810190601f16801561081d5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b34801561083a57600080fd5b5061037e6004803603602081101561085157600080fd5b5035611667565b34801561086457600080fd5b5061028a611789565b34801561087957600080fd5b506107986004803603602081101561089057600080fd5b503561178e565b3480156108a357600080fd5b5061028a600480360360208110156108ba57600080fd5b50356001600160a01b0316611817565b3480156108d657600080fd5b506102df611882565b3480156108eb57600080fd5b506103ea6004803603602081101561090257600080fd5b50356001600160a01b03166118e3565b34801561091e57600080fd5b506103d3611946565b34801561093357600080fd5b506103ea6119e8565b34801561094857600080fd5b506103d36004803603606081101561095f57600080fd5b506001600160a01b038135811691602081013590911690604001356119ee565b34801561098b57600080fd5b506103ea600480360360408110156109a257600080fd5b506001600160a01b038135169060200135611a34565b3480156109c457600080fd5b5061037e611a60565b3480156109d957600080fd5b506102df611a6f565b3480156109ee57600080fd5b506103d360048036036060811015610a0557600080fd5b506001600160a01b038135811691602081013590911690604001351515611ad0565b348015610a3357600080fd5b506103d360048036036040811015610a4a57600080fd5b506001600160a01b0381351690602001351515611bf9565b348015610a6e57600080fd5b5061028a60048036036060811015610a8557600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b811115610ab457600080fd5b820183602082011115610ac657600080fd5b803590602001918460018302840111600160201b83111715610ae757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611cfa945050505050565b348015610b3457600080fd5b5061037e611dbb565b348015610b4957600080fd5b506103d360048036036080811015610b6057600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610b9a57600080fd5b820183602082011115610bac57600080fd5b803590602001918460018302840111600160201b83111715610bcd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611dca945050505050565b348015610c1a57600080fd5b506102df60048036036020811015610c3157600080fd5b5035611e28565b348015610c4457600080fd5b5061028a60048036036040811015610c5b57600080fd5b506001600160a01b03813581169160200135166121b7565b348015610c7f57600080fd5b506103ea6121e5565b348015610c9457600080fd5b506103d360048036036020811015610cab57600080fd5b50356001600160a01b03166121eb565b348015610cc757600080fd5b5061028a60048036036020811015610cde57600080fd5b50356122e3565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b60008281526018602052604081205460ff16610d60576040805162461bcd60e51b81526020600482015260126024820152714e6f7420612076616c69642073657269657360701b604482015290519081900360640190fd5b60008381526017602052604090205460011115610dba576040805162461bcd60e51b815260206004820152601360248201527253657269657320697320534f4c44204f55542160681b604482015290519081900360640190fd5b600083815260176020526040902060010154341015610e0a5760405162461bcd60e51b815260040180806020018281038252602881526020018061394f6028913960400191505060405180910390fd5b600083815260176020526040902054610e249060016123f1565b6000848152601760205260409020819055610e50576000838152601860205260409020805460ff191690555b34610e646001610e5e611318565b90612433565b60405133907fb0442210ef7e89767af2eeb7f3e41f8a7efeaf443711463e8d0d54106b082a0690600090a46000838152601760209081526040918290206003018054835160026001831615610100026000190190921691909104601f8101849004840282018401909452838152610f35938693919291830182828015610f2b5780601f10610f0057610100808354040283529160200191610f2b565b820191906000526020600020905b815481529060010190602001808311610f0e57829003601f168201915b505050505061248d565b506000610f4e6064610f48346005612498565b906124f1565b90506000610f5c34836123f1565b6000868152601760205260408082206002015490519293506001600160a01b03169183156108fc0291849190818181858888f19350505050158015610fa5573d6000803e3d6000fd5b5081471015610ffb576040805162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682062616c616e636520746f2073656e64206665650000604482015290519081900360640190fd5b60008581526017602052604080822060020154905183926001600160a01b03909216917f746c3bb9ca06261e1e669964e684fea88d690c158dd10019a8cd09c72fee2de291a36016546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561107b573d6000803e3d6000fd5b5060165460405183916001600160a01b0316907f88b171bb78d3ac5e1caa8e729dddce4e1322e84c80c093ebbe52507b62c77d9890600090a36001925050505b92915050565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561114d5780601f106111225761010080835404028352916020019161114d565b820191906000526020600020905b81548152906001019060200180831161113057829003601f168201915b5050505050905090565b6000611162826122e3565b61119d5760405162461bcd60e51b815260040180806020018281038252602c81526020018061380d602c913960400191505060405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006111c482611667565b9050806001600160a01b0316836001600160a01b031614156112175760405162461bcd60e51b81526004018080602001828103825260218152602001806138fd6021913960400191505060405180910390fd5b806001600160a01b0316611229612533565b6001600160a01b0316148061124a575061124a81611245612533565b6121b7565b6112855760405162461bcd60e51b81526004018080602001828103825260388152602001806137636038913960400191505060405180910390fd5b61128f8383612537565b505050565b60155481565b60006112a4612533565b6000546001600160a01b039081169116146112f4576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b6112fd836125a5565b611309600f54836126a2565b50600192915050565b60105481565b600f5490565b61132f611329612533565b82612705565b61136a5760405162461bcd60e51b815260040180806020018281038252603181526020018061391e6031913960400191505060405180910390fd5b61128f8383836127a1565b6001600160a01b038216600090815260026020526040812061139690612937565b82116110bb576001600160a01b03831660009081526002602052604090206113be9083612942565b90506110bb565b60086020526000908152604090205481565b600f5481565b61128f83838360405180602001604052806000815250611dca565b6000611402612533565b6000546001600160a01b03908116911614611452576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b600d5460ff1682108015906114695750600e548211155b6114a45760405162461bcd60e51b81526004018080602001828103825260278152602001806137c56027913960400191505060405180910390fd5b611309838361294e565b6013546014546001600160a01b03169091565b60186020526000908152604090205460ff1681565b60006114e1826122e3565b156114ed575080610d03565b6040805162461bcd60e51b815260206004820152601760248201527f4e6f20746f6b656e20666f756e6420617420696e646578000000000000000000604482015290519081900360640190fd5b6000611544612533565b6000546001600160a01b03908116911614611594576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b61159f848484612b02565b90505b9392505050565b600a60209081526000918252604091829020805460018083015460028085015460038601805489516101009682161596909602600019011692909204601f8101889004880285018801909852878452939691956001600160a01b03909416949390919083018282801561165d5780601f106116325761010080835404028352916020019161165d565b820191906000526020600020905b81548152906001019060200180831161164057829003601f168201915b5050505050905084565b6000611674600383612bc8565b1561168b57611684600383612bd4565b9050610d03565b60006116a2600e54846124f190919063ffffffff16565b600d549091506000906116c090600190610e5e90879060ff166124f1565b90506010548111156116d157506010545b6000825b8281101561177e5760008181526009602052604090206001906116f790612937565b106117765760008181526009602052604090208690611717906001612942565b10611776576000818152600a6020526040902054861080159061174b57506000818152600a60205260409020600101548611155b15611776576000908152600a60205260409020600201546001600160a01b03169350610d0392505050565b6001016116d5565b509250610d03915050565b600190565b601760209081526000918252604091829020805460018083015460028085015460038601805489516101009682161596909602600019011692909204601f8101889004880285018801909852878452939691956001600160a01b03909416949390919083018282801561165d5780601f106116325761010080835404028352916020019161165d565b6000611821612533565b6000546001600160a01b03908116911614611871576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b61187a826125a5565b506001919050565b60128054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561114d5780601f106111225761010080835404028352916020019161114d565b60006001600160a01b03821661192a5760405162461bcd60e51b815260040180806020018281038252602a81526020018061379b602a913960400191505060405180910390fd5b506001600160a01b031660009081526008602052604090205490565b61194e612533565b6000546001600160a01b0390811691161461199e576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60135490565b80826001600160a01b0316846001600160a01b03167f06cb0b9d04d0ac2a93b9b9a93ee6c2511e069efb107c06eee43c85021fbc04ed60405160405180910390a4505050565b6001600160a01b03821660009081526002602052604081208190611a589084612942565b949350505050565b6000546001600160a01b031690565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561114d5780601f106111225761010080835404028352916020019161114d565b611ad8612533565b6000546001600160a01b03908116911614611b28576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b826001600160a01b0316826001600160a01b03161415611b8b576040805162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015290519081900360640190fd5b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff1916861515908117909155825190815291517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319281900390910190a3505050565b611c01612533565b6001600160a01b0316826001600160a01b03161415611c63576040805162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015290519081900360640190fd5b8060066000611c70612533565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611cb4612533565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6000611d04612533565b6000546001600160a01b03908116911614611d54576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b600d5460ff168310801590611d6b5750600e548311155b611da65760405162461bcd60e51b81526004018080602001828103825260278152602001806137c56027913960400191505060405180910390fd5b611db1848484612be0565b5060019392505050565b6016546001600160a01b031681565b611ddb611dd5612533565b83612705565b611e165760405162461bcd60e51b815260040180806020018281038252603181526020018061391e6031913960400191505060405180910390fd5b611e2284848484612da0565b50505050565b6060611e33826122e3565b611e6e5760405162461bcd60e51b815260040180806020018281038252602f8152602001806138ae602f913960400191505060405180910390fd5b60008281526011602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611f035780601f10611ed857610100808354040283529160200191611f03565b820191906000526020600020905b815481529060010190602001808311611ee657829003601f168201915b50505050509050611f12611318565b83116120b6576000611f2f600e54856124f190919063ffffffff16565b600d54909150600090611f4d90600190610e5e90889060ff166124f1565b9050601054811115611f5e57506010545b815b818110156120b2576000818152600960205260409020600190611f8290612937565b106120aa5760008181526009602052604090208690611fa2906001612942565b106120aa576000818152600a602052604090205486118015611fd557506000818152600a60205260409020600101548611155b156120aa576000818152600a602052604090206003015460026000196101006001841615020190911604156120aa576000818152600a602090815260409182902060030180548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452909183018282801561209a5780601f1061206f5761010080835404028352916020019161209a565b820191906000526020600020905b81548152906001019060200180831161207d57829003601f168201915b5050505050945050505050610d03565b600101611f60565b5050505b601254600260001961010060018416150201909116046120d7579050610d03565b8051156120e5579050610d03565b60126120f084612df2565b604051602001808380546001816001161561010002031660029004801561214e5780601f1061212c57610100808354040283529182019161214e565b820191906000526020600020905b81548152906001019060200180831161213a575b5050825160208401908083835b6020831061217a5780518252601f19909201916020918201910161215b565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600e5481565b6121f3612533565b6000546001600160a01b03908116911614612243576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b6001600160a01b0381166122885760405162461bcd60e51b81526004018080602001828103825260268152602001806136ed6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006122f0600383612bc8565b1561230057611684600383612bc8565b612308611318565b8211610d03576000612325600e54846124f190919063ffffffff16565b600d5490915060009061234390600190610e5e90879060ff166124f1565b905060105481111561235457506010545b815b818110156123e557600081815260096020526040902060019061237890612937565b106123dd5760008181526009602052604090208590612398906001612942565b106123dd576000818152600a602052604090205485108015906123cc57506000818152600a60205260409020600101548511155b156123dd5760019350505050610d03565b600101612356565b50600092505050610d03565b60006115a283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ecd565b6000828201838110156115a2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006112fd836125a5565b6000826124a7575060006110bb565b828202828482816124b457fe5b04146115a25760405162461bcd60e51b81526004018080602001828103825260218152602001806137ec6021913960400191505060405180910390fd5b60006115a283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f64565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061256c82611667565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038116612600576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600f5461260e906001612433565b600f8190556001600160a01b038216600090815260026020526040902061263491612fc9565b50600f546126459060039083612fd5565b506001600160a01b03811660009081526008602052604090205461266a906001612433565b6001600160a01b03821660008181526008602052604080822093909355600f5492516000805160206138dd833981519152908290a450565b6126ab826122e3565b6126e65760405162461bcd60e51b815260040180806020018281038252602c815260200180613839602c913960400191505060405180910390fd5b6000828152601160209081526040909120825161128f92840190613605565b6000612710826122e3565b61274b5760405162461bcd60e51b815260040180806020018281038252602c815260200180613737602c913960400191505060405180910390fd5b600061275683611667565b9050806001600160a01b0316846001600160a01b031614806127915750836001600160a01b031661278684611157565b6001600160a01b0316145b80611a585750611a5881856121b7565b826001600160a01b03166127b482611667565b6001600160a01b0316146127f95760405162461bcd60e51b81526004018080602001828103825260298152602001806138856029913960400191505060405180910390fd5b6001600160a01b03821661283e5760405162461bcd60e51b81526004018080602001828103825260248152602001806137136024913960400191505060405180910390fd5b612849600082612537565b6001600160a01b03831660009081526008602052604090205461286d9060016123f1565b6001600160a01b03808516600090815260086020526040808220939093559084168152205461289d906001612433565b6001600160a01b0380841660009081526008602090815260408083209490945591861681526002909152206128d29082612feb565b506001600160a01b03821660009081526002602052604090206128f59082612fc9565b5061290260038284612fd5565b5080826001600160a01b0316846001600160a01b03166000805160206138dd83398151915260405160405180910390a4505050565b60006110bb82612ff7565b60006115a28383612ffb565b6001600160a01b0382166129a9576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b60005b818161ffff1610156129f857600f546129cc9061ffff6001840116612433565b6040516001600160a01b038516906000906000805160206138dd833981519152908290a46001016129ac565b50600f546010546000908152600a60205260409020819055612a1a9082612433565b601080546000908152600a60209081526040808320600101949094558254825283822060020180546001600160a01b03191633179055600f54925482526009905291909120612a6891612fc9565b50612a98612a81600f548361243390919063ffffffff16565b601054600090815260096020526040902090612fc9565b50336000908152600760205260409020612ab29082612fc9565b50601054612ac1906001612433565b60105533600090815260086020526040902054612ade9082612433565b33600090815260086020526040902055600f54612afb9082612433565b600f555050565b601554600090612b13906001612433565b60158181556000918252601860209081526040808420805460ff19166001908117909155835485526017835281852089905583548552818520018790559154835291208351612b6a92600390920191850190613605565b5060155460009081526017602052604080822060020180546001600160a01b03191633908117909155905186928692917f335cf3124d4c238e9c1bbae5ae98a445bab5de090df6b8b94e94caab3ffb45f69190a45060019392505050565b60006115a2838361305f565b60006115a28383613077565b6001600160a01b038316612c3b576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b60005b828161ffff161015612c8a57600f54612c5e9061ffff6001840116612433565b6040516001600160a01b038616906000906000805160206138dd833981519152908290a4600101612c3e565b50600f546010546000908152600a60205260409020819055612cac9083612433565b601080546000908152600a60209081526040808320600101949094558254825283822060020180546001600160a01b0319163317905591548152919091208251612cfe92600390920191840190613605565b50600f546010546000908152600960205260409020612d1c91612fc9565b50612d35612a81600f548461243390919063ffffffff16565b50336000908152600760205260409020612d4f9083612fc9565b50601054612d5e906001612433565b60105533600090815260086020526040902054612d7b9083612433565b33600090815260086020526040902055600f54612d989083612433565b600f55505050565b612dab8484846127a1565b612db7848484846130b9565b611e225760405162461bcd60e51b81526004018080602001828103825260328152602001806136bb6032913960400191505060405180910390fd5b606081612e1757506040805180820190915260018152600360fc1b6020820152610d03565b8160005b8115612e2f57600101600a82049150612e1b565b60608167ffffffffffffffff81118015612e4857600080fd5b506040519080825280601f01601f191660200182016040528015612e73576020820181803683370190505b50859350905060001982015b8315612ec457600a840660300160f81b82828060019003935081518110612ea257fe5b60200101906001600160f81b031916908160001a905350600a84049350612e7f565b50949350505050565b60008184841115612f5c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f21578181015183820152602001612f09565b50505050905090810190601f168015612f4e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183612fb35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612f21578181015183820152602001612f09565b506000838581612fbf57fe5b0495945050505050565b60006115a28383613221565b600061159f84846001600160a01b03851661326b565b60006115a28383613302565b5490565b8154600090821061303d5760405162461bcd60e51b81526004018080602001828103825260228152602001806136996022913960400191505060405180910390fd5b82600001828154811061304c57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60006115a283836040518060400160405280601e81526020017f456e756d657261626c654d61703a206e6f6e6578697374656e74206b657900008152506133c8565b60006130cd846001600160a01b0316613455565b6130d957506001611a58565b60606131e7630a85bd0160e11b6130ee612533565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561315557818101518382015260200161313d565b50505050905090810190601f1680156131825780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016136bb603291396001600160a01b038816919061348e565b9050600081806020019051602081101561320057600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b600061322d838361305f565b613263575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110bb565b5060006110bb565b6000828152600184016020526040812054806132d05750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556115a2565b828560000160018303815481106132e357fe5b90600052602060002090600202016001018190555060009150506115a2565b600081815260018301602052604081205480156133be578354600019808301919081019060009087908390811061333557fe5b906000526020600020015490508087600001848154811061335257fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061338257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110bb565b60009150506110bb565b600082815260018401602052604081205482816134265760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612f21578181015183820152602001612f09565b5084600001600182038154811061343957fe5b9060005260206000209060020201600101549150509392505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611a58575050151592915050565b606061159f848460008560606134a385613455565b6134f4576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106135335780518252601f199092019160209182019101613514565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613595576040519150601f19603f3d011682016040523d82523d6000602084013e61359a565b606091505b509150915081156135ae579150611a589050565b8051156135be5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315612f21578181015183820152602001612f09565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061364657805160ff1916838001178555613673565b82800160010185558215613673579182015b82811115613673578251825591602001919060010190613658565b5061367f929150613683565b5090565b5b8082111561367f576000815560010161368456fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f206164647265737343616e206f6e6c79206d696e74206265747765656e203220616e64203230303020746f6b656e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564496e76616c696420616d6f756e742073656e7420746f2070757263686173652074686973204e4654a2646970667358221220f60000c69859ac0e2ea760630f2d61a87726a39839bad4ffc945e2bc0588ec9d64736f6c634300060c003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000007b8405d2e5c06156c6336666a0d9029a6c3b136400000000000000000000000000000000000000000000000000000000000000104e6f6e46756e47657262696c732076320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e46477632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6d6574612e6e6f6e66756e67657262696c732e636f6d2f76322f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063656605d61161013957806395d89b41116100b6578063b88d4fde1161007a578063b88d4fde14610b3d578063c87b56dd14610c0e578063e985e9c514610c38578063f0292a0314610c73578063f2fde38b14610c88578063f8e76cc014610cbb57610251565b806395d89b41146109cd5780639e1c3ee3146109e2578063a22cb46514610a27578063acc964e714610a62578063ad72f3f514610b2857610251565b8063715018a6116100fd578063715018a6146109125780637c6e551d1461092757806384a09c271461093c5780638b5e51d21461097f5780638da5cb5b146109b857610251565b8063656605d614610858578063662f12291461086d5780636a627842146108975780636c0360eb146108ca57806370a08231146108df57610251565b80632f745c59116101d257806346e807201161019657806346e80720146106275780634e881e201461065d5780634f6ccce7146106875780634fbe39e9146106b1578063610d107e1461076e5780636352211e1461082e57610251565b80632f745c591461052a57806338232cfe146105635780633eaaf86b1461059657806342842e0e146105ab57806343508b05146105ee57610251565b80630c6a595a116102195780630c6a595a146103d55780630e980602146103fc578063146862cc146104bd57806318160ddd146104d257806323b872dd146104e757610251565b806301ffc9a71461025657806303c3ff251461029e57806306fdde03146102ca578063081812fc14610354578063095ea7b31461039a575b600080fd5b34801561026257600080fd5b5061028a6004803603602081101561027957600080fd5b50356001600160e01b031916610ce5565b604080519115158252519081900360200190f35b61028a600480360360408110156102b457600080fd5b50803590602001356001600160a01b0316610d08565b3480156102d657600080fd5b506102df6110c1565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610319578181015183820152602001610301565b50505050905090810190601f1680156103465780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036057600080fd5b5061037e6004803603602081101561037757600080fd5b5035611157565b604080516001600160a01b039092168252519081900360200190f35b3480156103a657600080fd5b506103d3600480360360408110156103bd57600080fd5b506001600160a01b0381351690602001356111b9565b005b3480156103e157600080fd5b506103ea611294565b60408051918252519081900360200190f35b34801561040857600080fd5b5061028a6004803603604081101561041f57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561044957600080fd5b82018360208201111561045b57600080fd5b803590602001918460018302840111600160201b8311171561047c57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061129a945050505050565b3480156104c957600080fd5b506103ea611312565b3480156104de57600080fd5b506103ea611318565b3480156104f357600080fd5b506103d36004803603606081101561050a57600080fd5b506001600160a01b0381358116916020810135909116906040013561131e565b34801561053657600080fd5b506103ea6004803603604081101561054d57600080fd5b506001600160a01b038135169060200135611375565b34801561056f57600080fd5b506103ea6004803603602081101561058657600080fd5b50356001600160a01b03166113c5565b3480156105a257600080fd5b506103ea6113d7565b3480156105b757600080fd5b506103d3600480360360608110156105ce57600080fd5b506001600160a01b038135811691602081013590911690604001356113dd565b3480156105fa57600080fd5b5061028a6004803603604081101561061157600080fd5b506001600160a01b0381351690602001356113f8565b34801561063357600080fd5b5061063c6114ae565b604080519283526001600160a01b0390911660208301528051918290030190f35b34801561066957600080fd5b5061028a6004803603602081101561068057600080fd5b50356114c1565b34801561069357600080fd5b506103ea600480360360208110156106aa57600080fd5b50356114d6565b3480156106bd57600080fd5b5061028a600480360360608110156106d457600080fd5b813591602081013591810190606081016040820135600160201b8111156106fa57600080fd5b82018360208201111561070c57600080fd5b803590602001918460018302840111600160201b8311171561072d57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061153a945050505050565b34801561077a57600080fd5b506107986004803603602081101561079157600080fd5b50356115a9565b60405180858152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156107f05781810151838201526020016107d8565b50505050905090810190601f16801561081d5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b34801561083a57600080fd5b5061037e6004803603602081101561085157600080fd5b5035611667565b34801561086457600080fd5b5061028a611789565b34801561087957600080fd5b506107986004803603602081101561089057600080fd5b503561178e565b3480156108a357600080fd5b5061028a600480360360208110156108ba57600080fd5b50356001600160a01b0316611817565b3480156108d657600080fd5b506102df611882565b3480156108eb57600080fd5b506103ea6004803603602081101561090257600080fd5b50356001600160a01b03166118e3565b34801561091e57600080fd5b506103d3611946565b34801561093357600080fd5b506103ea6119e8565b34801561094857600080fd5b506103d36004803603606081101561095f57600080fd5b506001600160a01b038135811691602081013590911690604001356119ee565b34801561098b57600080fd5b506103ea600480360360408110156109a257600080fd5b506001600160a01b038135169060200135611a34565b3480156109c457600080fd5b5061037e611a60565b3480156109d957600080fd5b506102df611a6f565b3480156109ee57600080fd5b506103d360048036036060811015610a0557600080fd5b506001600160a01b038135811691602081013590911690604001351515611ad0565b348015610a3357600080fd5b506103d360048036036040811015610a4a57600080fd5b506001600160a01b0381351690602001351515611bf9565b348015610a6e57600080fd5b5061028a60048036036060811015610a8557600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b811115610ab457600080fd5b820183602082011115610ac657600080fd5b803590602001918460018302840111600160201b83111715610ae757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611cfa945050505050565b348015610b3457600080fd5b5061037e611dbb565b348015610b4957600080fd5b506103d360048036036080811015610b6057600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610b9a57600080fd5b820183602082011115610bac57600080fd5b803590602001918460018302840111600160201b83111715610bcd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611dca945050505050565b348015610c1a57600080fd5b506102df60048036036020811015610c3157600080fd5b5035611e28565b348015610c4457600080fd5b5061028a60048036036040811015610c5b57600080fd5b506001600160a01b03813581169160200135166121b7565b348015610c7f57600080fd5b506103ea6121e5565b348015610c9457600080fd5b506103d360048036036020811015610cab57600080fd5b50356001600160a01b03166121eb565b348015610cc757600080fd5b5061028a60048036036020811015610cde57600080fd5b50356122e3565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b60008281526018602052604081205460ff16610d60576040805162461bcd60e51b81526020600482015260126024820152714e6f7420612076616c69642073657269657360701b604482015290519081900360640190fd5b60008381526017602052604090205460011115610dba576040805162461bcd60e51b815260206004820152601360248201527253657269657320697320534f4c44204f55542160681b604482015290519081900360640190fd5b600083815260176020526040902060010154341015610e0a5760405162461bcd60e51b815260040180806020018281038252602881526020018061394f6028913960400191505060405180910390fd5b600083815260176020526040902054610e249060016123f1565b6000848152601760205260409020819055610e50576000838152601860205260409020805460ff191690555b34610e646001610e5e611318565b90612433565b60405133907fb0442210ef7e89767af2eeb7f3e41f8a7efeaf443711463e8d0d54106b082a0690600090a46000838152601760209081526040918290206003018054835160026001831615610100026000190190921691909104601f8101849004840282018401909452838152610f35938693919291830182828015610f2b5780601f10610f0057610100808354040283529160200191610f2b565b820191906000526020600020905b815481529060010190602001808311610f0e57829003601f168201915b505050505061248d565b506000610f4e6064610f48346005612498565b906124f1565b90506000610f5c34836123f1565b6000868152601760205260408082206002015490519293506001600160a01b03169183156108fc0291849190818181858888f19350505050158015610fa5573d6000803e3d6000fd5b5081471015610ffb576040805162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682062616c616e636520746f2073656e64206665650000604482015290519081900360640190fd5b60008581526017602052604080822060020154905183926001600160a01b03909216917f746c3bb9ca06261e1e669964e684fea88d690c158dd10019a8cd09c72fee2de291a36016546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561107b573d6000803e3d6000fd5b5060165460405183916001600160a01b0316907f88b171bb78d3ac5e1caa8e729dddce4e1322e84c80c093ebbe52507b62c77d9890600090a36001925050505b92915050565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561114d5780601f106111225761010080835404028352916020019161114d565b820191906000526020600020905b81548152906001019060200180831161113057829003601f168201915b5050505050905090565b6000611162826122e3565b61119d5760405162461bcd60e51b815260040180806020018281038252602c81526020018061380d602c913960400191505060405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006111c482611667565b9050806001600160a01b0316836001600160a01b031614156112175760405162461bcd60e51b81526004018080602001828103825260218152602001806138fd6021913960400191505060405180910390fd5b806001600160a01b0316611229612533565b6001600160a01b0316148061124a575061124a81611245612533565b6121b7565b6112855760405162461bcd60e51b81526004018080602001828103825260388152602001806137636038913960400191505060405180910390fd5b61128f8383612537565b505050565b60155481565b60006112a4612533565b6000546001600160a01b039081169116146112f4576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b6112fd836125a5565b611309600f54836126a2565b50600192915050565b60105481565b600f5490565b61132f611329612533565b82612705565b61136a5760405162461bcd60e51b815260040180806020018281038252603181526020018061391e6031913960400191505060405180910390fd5b61128f8383836127a1565b6001600160a01b038216600090815260026020526040812061139690612937565b82116110bb576001600160a01b03831660009081526002602052604090206113be9083612942565b90506110bb565b60086020526000908152604090205481565b600f5481565b61128f83838360405180602001604052806000815250611dca565b6000611402612533565b6000546001600160a01b03908116911614611452576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b600d5460ff1682108015906114695750600e548211155b6114a45760405162461bcd60e51b81526004018080602001828103825260278152602001806137c56027913960400191505060405180910390fd5b611309838361294e565b6013546014546001600160a01b03169091565b60186020526000908152604090205460ff1681565b60006114e1826122e3565b156114ed575080610d03565b6040805162461bcd60e51b815260206004820152601760248201527f4e6f20746f6b656e20666f756e6420617420696e646578000000000000000000604482015290519081900360640190fd5b6000611544612533565b6000546001600160a01b03908116911614611594576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b61159f848484612b02565b90505b9392505050565b600a60209081526000918252604091829020805460018083015460028085015460038601805489516101009682161596909602600019011692909204601f8101889004880285018801909852878452939691956001600160a01b03909416949390919083018282801561165d5780601f106116325761010080835404028352916020019161165d565b820191906000526020600020905b81548152906001019060200180831161164057829003601f168201915b5050505050905084565b6000611674600383612bc8565b1561168b57611684600383612bd4565b9050610d03565b60006116a2600e54846124f190919063ffffffff16565b600d549091506000906116c090600190610e5e90879060ff166124f1565b90506010548111156116d157506010545b6000825b8281101561177e5760008181526009602052604090206001906116f790612937565b106117765760008181526009602052604090208690611717906001612942565b10611776576000818152600a6020526040902054861080159061174b57506000818152600a60205260409020600101548611155b15611776576000908152600a60205260409020600201546001600160a01b03169350610d0392505050565b6001016116d5565b509250610d03915050565b600190565b601760209081526000918252604091829020805460018083015460028085015460038601805489516101009682161596909602600019011692909204601f8101889004880285018801909852878452939691956001600160a01b03909416949390919083018282801561165d5780601f106116325761010080835404028352916020019161165d565b6000611821612533565b6000546001600160a01b03908116911614611871576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b61187a826125a5565b506001919050565b60128054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561114d5780601f106111225761010080835404028352916020019161114d565b60006001600160a01b03821661192a5760405162461bcd60e51b815260040180806020018281038252602a81526020018061379b602a913960400191505060405180910390fd5b506001600160a01b031660009081526008602052604090205490565b61194e612533565b6000546001600160a01b0390811691161461199e576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60135490565b80826001600160a01b0316846001600160a01b03167f06cb0b9d04d0ac2a93b9b9a93ee6c2511e069efb107c06eee43c85021fbc04ed60405160405180910390a4505050565b6001600160a01b03821660009081526002602052604081208190611a589084612942565b949350505050565b6000546001600160a01b031690565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561114d5780601f106111225761010080835404028352916020019161114d565b611ad8612533565b6000546001600160a01b03908116911614611b28576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b826001600160a01b0316826001600160a01b03161415611b8b576040805162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015290519081900360640190fd5b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff1916861515908117909155825190815291517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319281900390910190a3505050565b611c01612533565b6001600160a01b0316826001600160a01b03161415611c63576040805162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b604482015290519081900360640190fd5b8060066000611c70612533565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611cb4612533565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6000611d04612533565b6000546001600160a01b03908116911614611d54576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b600d5460ff168310801590611d6b5750600e548311155b611da65760405162461bcd60e51b81526004018080602001828103825260278152602001806137c56027913960400191505060405180910390fd5b611db1848484612be0565b5060019392505050565b6016546001600160a01b031681565b611ddb611dd5612533565b83612705565b611e165760405162461bcd60e51b815260040180806020018281038252603181526020018061391e6031913960400191505060405180910390fd5b611e2284848484612da0565b50505050565b6060611e33826122e3565b611e6e5760405162461bcd60e51b815260040180806020018281038252602f8152602001806138ae602f913960400191505060405180910390fd5b60008281526011602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611f035780601f10611ed857610100808354040283529160200191611f03565b820191906000526020600020905b815481529060010190602001808311611ee657829003601f168201915b50505050509050611f12611318565b83116120b6576000611f2f600e54856124f190919063ffffffff16565b600d54909150600090611f4d90600190610e5e90889060ff166124f1565b9050601054811115611f5e57506010545b815b818110156120b2576000818152600960205260409020600190611f8290612937565b106120aa5760008181526009602052604090208690611fa2906001612942565b106120aa576000818152600a602052604090205486118015611fd557506000818152600a60205260409020600101548611155b156120aa576000818152600a602052604090206003015460026000196101006001841615020190911604156120aa576000818152600a602090815260409182902060030180548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452909183018282801561209a5780601f1061206f5761010080835404028352916020019161209a565b820191906000526020600020905b81548152906001019060200180831161207d57829003601f168201915b5050505050945050505050610d03565b600101611f60565b5050505b601254600260001961010060018416150201909116046120d7579050610d03565b8051156120e5579050610d03565b60126120f084612df2565b604051602001808380546001816001161561010002031660029004801561214e5780601f1061212c57610100808354040283529182019161214e565b820191906000526020600020905b81548152906001019060200180831161213a575b5050825160208401908083835b6020831061217a5780518252601f19909201916020918201910161215b565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600e5481565b6121f3612533565b6000546001600160a01b03908116911614612243576040805162461bcd60e51b81526020600482018190526024820152600080516020613865833981519152604482015290519081900360640190fd5b6001600160a01b0381166122885760405162461bcd60e51b81526004018080602001828103825260268152602001806136ed6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006122f0600383612bc8565b1561230057611684600383612bc8565b612308611318565b8211610d03576000612325600e54846124f190919063ffffffff16565b600d5490915060009061234390600190610e5e90879060ff166124f1565b905060105481111561235457506010545b815b818110156123e557600081815260096020526040902060019061237890612937565b106123dd5760008181526009602052604090208590612398906001612942565b106123dd576000818152600a602052604090205485108015906123cc57506000818152600a60205260409020600101548511155b156123dd5760019350505050610d03565b600101612356565b50600092505050610d03565b60006115a283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ecd565b6000828201838110156115a2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006112fd836125a5565b6000826124a7575060006110bb565b828202828482816124b457fe5b04146115a25760405162461bcd60e51b81526004018080602001828103825260218152602001806137ec6021913960400191505060405180910390fd5b60006115a283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f64565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061256c82611667565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038116612600576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600f5461260e906001612433565b600f8190556001600160a01b038216600090815260026020526040902061263491612fc9565b50600f546126459060039083612fd5565b506001600160a01b03811660009081526008602052604090205461266a906001612433565b6001600160a01b03821660008181526008602052604080822093909355600f5492516000805160206138dd833981519152908290a450565b6126ab826122e3565b6126e65760405162461bcd60e51b815260040180806020018281038252602c815260200180613839602c913960400191505060405180910390fd5b6000828152601160209081526040909120825161128f92840190613605565b6000612710826122e3565b61274b5760405162461bcd60e51b815260040180806020018281038252602c815260200180613737602c913960400191505060405180910390fd5b600061275683611667565b9050806001600160a01b0316846001600160a01b031614806127915750836001600160a01b031661278684611157565b6001600160a01b0316145b80611a585750611a5881856121b7565b826001600160a01b03166127b482611667565b6001600160a01b0316146127f95760405162461bcd60e51b81526004018080602001828103825260298152602001806138856029913960400191505060405180910390fd5b6001600160a01b03821661283e5760405162461bcd60e51b81526004018080602001828103825260248152602001806137136024913960400191505060405180910390fd5b612849600082612537565b6001600160a01b03831660009081526008602052604090205461286d9060016123f1565b6001600160a01b03808516600090815260086020526040808220939093559084168152205461289d906001612433565b6001600160a01b0380841660009081526008602090815260408083209490945591861681526002909152206128d29082612feb565b506001600160a01b03821660009081526002602052604090206128f59082612fc9565b5061290260038284612fd5565b5080826001600160a01b0316846001600160a01b03166000805160206138dd83398151915260405160405180910390a4505050565b60006110bb82612ff7565b60006115a28383612ffb565b6001600160a01b0382166129a9576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b60005b818161ffff1610156129f857600f546129cc9061ffff6001840116612433565b6040516001600160a01b038516906000906000805160206138dd833981519152908290a46001016129ac565b50600f546010546000908152600a60205260409020819055612a1a9082612433565b601080546000908152600a60209081526040808320600101949094558254825283822060020180546001600160a01b03191633179055600f54925482526009905291909120612a6891612fc9565b50612a98612a81600f548361243390919063ffffffff16565b601054600090815260096020526040902090612fc9565b50336000908152600760205260409020612ab29082612fc9565b50601054612ac1906001612433565b60105533600090815260086020526040902054612ade9082612433565b33600090815260086020526040902055600f54612afb9082612433565b600f555050565b601554600090612b13906001612433565b60158181556000918252601860209081526040808420805460ff19166001908117909155835485526017835281852089905583548552818520018790559154835291208351612b6a92600390920191850190613605565b5060155460009081526017602052604080822060020180546001600160a01b03191633908117909155905186928692917f335cf3124d4c238e9c1bbae5ae98a445bab5de090df6b8b94e94caab3ffb45f69190a45060019392505050565b60006115a2838361305f565b60006115a28383613077565b6001600160a01b038316612c3b576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b60005b828161ffff161015612c8a57600f54612c5e9061ffff6001840116612433565b6040516001600160a01b038616906000906000805160206138dd833981519152908290a4600101612c3e565b50600f546010546000908152600a60205260409020819055612cac9083612433565b601080546000908152600a60209081526040808320600101949094558254825283822060020180546001600160a01b0319163317905591548152919091208251612cfe92600390920191840190613605565b50600f546010546000908152600960205260409020612d1c91612fc9565b50612d35612a81600f548461243390919063ffffffff16565b50336000908152600760205260409020612d4f9083612fc9565b50601054612d5e906001612433565b60105533600090815260086020526040902054612d7b9083612433565b33600090815260086020526040902055600f54612d989083612433565b600f55505050565b612dab8484846127a1565b612db7848484846130b9565b611e225760405162461bcd60e51b81526004018080602001828103825260328152602001806136bb6032913960400191505060405180910390fd5b606081612e1757506040805180820190915260018152600360fc1b6020820152610d03565b8160005b8115612e2f57600101600a82049150612e1b565b60608167ffffffffffffffff81118015612e4857600080fd5b506040519080825280601f01601f191660200182016040528015612e73576020820181803683370190505b50859350905060001982015b8315612ec457600a840660300160f81b82828060019003935081518110612ea257fe5b60200101906001600160f81b031916908160001a905350600a84049350612e7f565b50949350505050565b60008184841115612f5c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f21578181015183820152602001612f09565b50505050905090810190601f168015612f4e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183612fb35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612f21578181015183820152602001612f09565b506000838581612fbf57fe5b0495945050505050565b60006115a28383613221565b600061159f84846001600160a01b03851661326b565b60006115a28383613302565b5490565b8154600090821061303d5760405162461bcd60e51b81526004018080602001828103825260228152602001806136996022913960400191505060405180910390fd5b82600001828154811061304c57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60006115a283836040518060400160405280601e81526020017f456e756d657261626c654d61703a206e6f6e6578697374656e74206b657900008152506133c8565b60006130cd846001600160a01b0316613455565b6130d957506001611a58565b60606131e7630a85bd0160e11b6130ee612533565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561315557818101518382015260200161313d565b50505050905090810190601f1680156131825780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016136bb603291396001600160a01b038816919061348e565b9050600081806020019051602081101561320057600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b600061322d838361305f565b613263575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110bb565b5060006110bb565b6000828152600184016020526040812054806132d05750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556115a2565b828560000160018303815481106132e357fe5b90600052602060002090600202016001018190555060009150506115a2565b600081815260018301602052604081205480156133be578354600019808301919081019060009087908390811061333557fe5b906000526020600020015490508087600001848154811061335257fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061338257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110bb565b60009150506110bb565b600082815260018401602052604081205482816134265760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612f21578181015183820152602001612f09565b5084600001600182038154811061343957fe5b9060005260206000209060020201600101549150509392505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611a58575050151592915050565b606061159f848460008560606134a385613455565b6134f4576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106135335780518252601f199092019160209182019101613514565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613595576040519150601f19603f3d011682016040523d82523d6000602084013e61359a565b606091505b509150915081156135ae579150611a589050565b8051156135be5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315612f21578181015183820152602001612f09565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061364657805160ff1916838001178555613673565b82800160010185558215613673579182015b82811115613673578251825591602001919060010190613658565b5061367f929150613683565b5090565b5b8082111561367f576000815560010161368456fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f206164647265737343616e206f6e6c79206d696e74206265747765656e203220616e64203230303020746f6b656e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564496e76616c696420616d6f756e742073656e7420746f2070757263686173652074686973204e4654a2646970667358221220f60000c69859ac0e2ea760630f2d61a87726a39839bad4ffc945e2bc0588ec9d64736f6c634300060c0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000007b8405d2e5c06156c6336666a0d9029a6c3b136400000000000000000000000000000000000000000000000000000000000000104e6f6e46756e47657262696c732076320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e46477632000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6d6574612e6e6f6e66756e67657262696c732e636f6d2f76322f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): NonFunGerbils v2
Arg [1] : symbol (string): NFGv2
Arg [2] : baseURI (string): https://meta.nonfungerbils.com/v2/
Arg [3] : batch_amount (uint256): 2000
Arg [4] : royalty_amount (uint256): 750
Arg [5] : creator (address): 0x7B8405d2e5c06156C6336666A0d9029A6C3b1364

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000002ee
Arg [5] : 0000000000000000000000007b8405d2e5c06156c6336666a0d9029a6c3b1364
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 4e6f6e46756e47657262696c7320763200000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4e46477632000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [11] : 68747470733a2f2f6d6574612e6e6f6e66756e67657262696c732e636f6d2f76
Arg [12] : 322f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

271:3361:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;981:183:2;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;981:183:2;-1:-1:-1;;;;;;981:183:2;;:::i;:::-;;;;;;;;;;;;;;;;;;2249:1377:15;;;;;;;;;;;;;;;;-1:-1:-1;2249:1377:15;;;;;;-1:-1:-1;;;;;2249:1377:15;;:::i;6427:92:3:-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10572:291;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10572:291:3;;:::i;:::-;;;;-1:-1:-1;;;;;10572:291:3;;;;;;;;;;;;;;10102:404;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10102:404:3;;;;;;;;:::i;:::-;;400:26:15;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17053:176:3;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17053:176:3;;;;;;;;;;;;;;;-1:-1:-1;;;17053:176:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17053:176:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17053:176:3;;-1:-1:-1;17053:176:3;;-1:-1:-1;;;;;17053:176:3:i;2089:28::-;;;;;;;;;;;;;:::i;9474:194::-;;;;;;;;;;;;;:::i;11977:376::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11977:376:3;;;;;;;;;;;;;;;;;:::i;9124:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9124:274:3;;;;;;;;:::i;1717:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1717:46:3;-1:-1:-1;;;;;1717:46:3;;:::i;2051:31::-;;;;;;;;;;;;;:::i;12424:185::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12424:185:3;;;;;;;;;;;;;;;;;:::i;23023:282::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23023:282:3;;;;;;;;:::i;2204:115:4:-;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;2204:115:4;;;;;;;;;;;;;;;;525:43:15;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;525:43:15;;:::i;9778:262:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9778:262:3;;:::i;2055:188:15:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2055:188:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2055:188:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2055:188:15;;-1:-1:-1;2055:188:15;;-1:-1:-1;;;;;2055:188:15:i;1836:53:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1836:53:3;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;1836:53:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5120:1240;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5120:1240:3;;:::i;3099:81:4:-;;;;;;;;;;;;;:::i;474:46:15:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;474:46:15;;:::i;16937:108:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16937:108:3;-1:-1:-1;;;;;16937:108:3;;:::i;8945:89::-;;;;;;;;;;;;;:::i;4762:296::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4762:296:3;-1:-1:-1;;;;;4762:296:3;;:::i;1763:148:14:-;;;;;;;;;;;;;:::i;1881:95:4:-;;;;;;;;;;;;;:::i;2755:189::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2755:189:4;;;;;;;;;;;;;;;;;:::i;6527:166:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6527:166:3;;;;;;;;:::i;1121:79:14:-;;;;;;;;;;;;;:::i;6760:96:3:-;;;;;;;;;;;;;:::i;11334:310::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11334:310:3;;;;;;;;;;;;;;;;;;;:::i;10935:327::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10935:327:3;;;;;;;;;;:::i;23318:311::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23318:311:3;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23318:311:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;23318:311:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23318:311:3;;-1:-1:-1;23318:311:3;;-1:-1:-1;;;;;23318:311:3:i;431:38:15:-;;;;;;;;;;;;;:::i;12680:365:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12680:365:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12680:365:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12680:365:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12680:365:3;;-1:-1:-1;12680:365:3;;-1:-1:-1;;;;;12680:365:3:i;6927:1775::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6927:1775:3;;:::i;11713:197::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11713:197:3;;;;;;;;;;:::i;2021:23::-;;;;;;;;;;;;;:::i;2066:281:14:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2066:281:14;-1:-1:-1;;;;;2066:281:14;;:::i;14591:1037:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14591:1037:3;;:::i;981:183:2:-;-1:-1:-1;;;;;;1123:33:2;;1094:4;1123:33;;;:20;:33;;;;;;;;981:183;;;;:::o;2249:1377:15:-;2325:4;2346:22;;;:11;:22;;;;;;;;2338:53;;;;;-1:-1:-1;;;2338:53:15;;;;;;;;;;;;-1:-1:-1;;;2338:53:15;;;;;;;;;;;;;;;2407:22;;;;:11;:22;;;;;:44;2455:1;-1:-1:-1;2407:49:15;2399:81;;;;;-1:-1:-1;;;2399:81:15;;;;;;;;;;;;-1:-1:-1;;;2399:81:15;;;;;;;;;;;;;;;2509:22;;;;:11;:22;;;;;:28;;;2496:9;:41;;2488:94;;;;-1:-1:-1;;;2488:94:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:22;;;;:11;:22;;;;;:44;:51;;2768:1;2719:48;:51::i;:::-;2671:22;;;;:11;:22;;;;;:99;;;2836:104;;2926:5;2901:22;;;:11;:22;;;;;:30;;-1:-1:-1;;2901:30:15;;;2836:104;3009:9;2981:26;3005:1;2981:19;:17;:19::i;:::-;:23;;:26::i;:::-;2952:67;;2969:10;;2952:67;;;;;3090:22;;;;:11;:22;;;;;;;;;:26;;3066:51;;;;;;;;;;;-1:-1:-1;;3066:51:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;3085:3;;3066:51;;3090:26;3066:51;;3090:26;3066:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;:51::i;:::-;-1:-1:-1;3162:11:15;3176:27;3199:3;3177:16;:9;3191:1;3177:13;:16::i;:::-;3176:22;;:27::i;:::-;3162:41;-1:-1:-1;3211:23:15;3237:18;:9;3162:41;3237:13;:18::i;:::-;3309:22;;;;:11;:22;;;;;;:30;;;:56;;3211:44;;-1:-1:-1;;;;;;3309:30:15;;:56;;;;;3211:44;;3309:56;;:22;:56;3211:44;3309:30;:56;;;;;;;;;;;;;;;;;;;;;3405:3;3380:21;:28;;3372:71;;;;;-1:-1:-1;;;3372:71:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;3472:22;;;;:11;:22;;;;;;:30;;;3455:66;;3505:15;;-1:-1:-1;;;;;3472:30:15;;;;3455:66;;;3528:15;;:29;;-1:-1:-1;;;;;3528:15:15;;;;:29;;;;;3553:3;;3528:15;:29;:15;:29;3553:3;3528:15;:29;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3581:15:15;;3569:33;;3598:3;;-1:-1:-1;;;;;3581:15:15;;3569:33;;3581:15;;3569:33;3617:4;3610:11;;;;2249:1377;;;;;:::o;6427:92:3:-;6506:5;6499:12;;;;;;;;-1:-1:-1;;6499:12:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6473:13;;6499:12;;6506:5;;6499:12;;6506:5;6499:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6427:92;:::o;10572:291::-;10676:7;10723:16;10731:7;10723;:16::i;:::-;10701:110;;;;-1:-1:-1;;;10701:110:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10831:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;10831:24:3;;10572:291::o;10102:404::-;10183:13;10199:16;10207:7;10199;:16::i;:::-;10183:32;;10240:5;-1:-1:-1;;;;;10234:11:3;:2;-1:-1:-1;;;;;10234:11:3;;;10226:57;;;;-1:-1:-1;;;10226:57:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10334:5;-1:-1:-1;;;;;10318:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;10318:21:3;;:62;;;;10343:37;10360:5;10367:12;:10;:12::i;:::-;10343:16;:37::i;:::-;10296:168;;;;-1:-1:-1;;;10296:168:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10477:21;10486:2;10490:7;10477:8;:21::i;:::-;10102:404;;;:::o;400:26:15:-;;;;:::o;17053:176:3:-;17131:4;1343:12:14;:10;:12::i;:::-;1333:6;;-1:-1:-1;;;;;1333:6:14;;;:22;;;1325:67;;;;;-1:-1:-1;;;1325:67:14;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1325:67:14;;;;;;;;;;;;;;;17148:9:3::1;17154:2;17148:5;:9::i;:::-;17168:31;17181:12;;17195:3;17168:12;:31::i;:::-;-1:-1:-1::0;17217:4:3::1;17053:176:::0;;;;:::o;2089:28::-;;;;:::o;9474:194::-;9648:12;;9474:194;:::o;11977:376::-;12186:41;12205:12;:10;:12::i;:::-;12219:7;12186:18;:41::i;:::-;12164:140;;;;-1:-1:-1;;;12164:140:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12317:28;12327:4;12333:2;12337:7;12317:9;:28::i;9124:274::-;-1:-1:-1;;;;;9286:20:3;;9249:7;9286:20;;;:13;:20;;;;;:29;;:27;:29::i;:::-;9277:5;:38;9274:107;;-1:-1:-1;;;;;9339:20:3;;;;;;:13;:20;;;;;:30;;9363:5;9339:23;:30::i;:::-;9332:37;;;;1717:46;;;;;;;;;;;;;:::o;2051:31::-;;;;:::o;12424:185::-;12562:39;12579:4;12585:2;12589:7;12562:39;;;;;;;;;;;;:16;:39::i;23023:282::-;23095:4;1343:12:14;:10;:12::i;:::-;1333:6;;-1:-1:-1;;;;;1333:6:14;;;:22;;;1325:67;;;;;-1:-1:-1;;;1325:67:14;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1325:67:14;;;;;;;;;;;;;;;23143:8:3::1;::::0;::::1;;23134:17:::0;::::1;::::0;::::1;::::0;:38:::1;;;23164:8;;23155:5;:17;;23134:38;23112:127;;;;-1:-1:-1::0;;;23112:127:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23252:21;23263:2;23267:5;23252:10;:21::i;2204:115:4:-:0;2287:14;;2303:7;;-1:-1:-1;;;;;2303:7:4;2204:115;;:::o;525:43:15:-;;;;;;;;;;;;;;;:::o;9778:262:3:-;9881:7;9908:14;9916:5;9908:7;:14::i;:::-;9905:128;;;-1:-1:-1;9950:5:3;9943:12;;9905:128;9988:33;;;-1:-1:-1;;;9988:33:3;;;;;;;;;;;;;;;;;;;;;;;;;;;2055:188:15;2161:4;1343:12:14;:10;:12::i;:::-;1333:6;;-1:-1:-1;;;;;1333:6:14;;;:22;;;1325:67;;;;;-1:-1:-1;;;1325:67:14;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1325:67:14;;;;;;;;;;;;;;;2184:41:15::1;2203:7;2212:6;2220:4;2184:18;:41::i;:::-;2177:48;;1403:1:14;2055:188:15::0;;;;;:::o;1836:53:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1836:53:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1836:53:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5120:1240::-;5184:7;5218:30;:12;5240:7;5218:21;:30::i;:::-;5214:1049;;;5272:25;:12;5289:7;5272:16;:25::i;:::-;5265:32;;;;5214:1049;5330:11;5344:21;5356:8;;5344:7;:11;;:21;;;;:::i;:::-;5420:8;;5330:35;;-1:-1:-1;5393:11:3;;5407:30;;5435:1;;5408:21;;:7;;5420:8;;5408:11;:21::i;5407:30::-;5393:44;;5462:13;;5456:3;:19;5452:79;;;-1:-1:-1;5502:13:3;;5452:79;5561:12;5620:3;5603:623;5629:3;5625:1;:7;5603:623;;;5675:12;;;;:9;:12;;;;;5700:1;;5675:21;;:19;:21::i;:::-;:26;5671:540;;5751:12;;;;:9;:12;;;;;5773:7;;5751:18;;5767:1;5751:15;:18::i;:::-;:29;5747:445;;5865:22;;;;:19;:22;;;;;:28;:39;-1:-1:-1;5865:39:3;;;:109;;-1:-1:-1;5937:22:3;;;;:19;:22;;;;;:26;;;:37;-1:-1:-1;5937:37:3;5865:109;5831:338;;;6071:22;;;;:19;:22;;;;;:28;;;-1:-1:-1;;;;;6071:28:3;;-1:-1:-1;6130:11:3;;-1:-1:-1;;;6130:11:3;5831:338;5634:3;;5603:623;;;-1:-1:-1;6247:4:3;-1:-1:-1;6240:11:3;;-1:-1:-1;;6240:11:3;3099:81:4;3168:4;3099:81;:::o;474:46:15:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;474:46:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;474:46:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16937:108:3;16989:4;1343:12:14;:10;:12::i;:::-;1333:6;;-1:-1:-1;;;;;1333:6:14;;;:22;;;1325:67;;;;;-1:-1:-1;;;1325:67:14;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1325:67:14;;;;;;;;;;;;;;;17006:9:3::1;17012:2;17006:5;:9::i;:::-;-1:-1:-1::0;17033:4:3::1;16937:108:::0;;;:::o;8945:89::-;9018:8;9011:15;;;;;;;;-1:-1:-1;;9011:15:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8985:13;;9011:15;;9018:8;;9011:15;;9018:8;9011:15;;;;;;;;;;;;;;;;;;;;;;;;4762:296;4826:7;-1:-1:-1;;;;;4868:19:3;;4846:111;;;;-1:-1:-1;;;4846:111:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4983:18:3;;;;;:11;:18;;;;;;;4762:296::o;1763:148:14:-;1343:12;:10;:12::i;:::-;1333:6;;-1:-1:-1;;;;;1333:6:14;;;:22;;;1325:67;;;;;-1:-1:-1;;;1325:67:14;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1325:67:14;;;;;;;;;;;;;;;1870:1:::1;1854:6:::0;;1833:40:::1;::::0;-1:-1:-1;;;;;1854:6:14;;::::1;::::0;1833:40:::1;::::0;1870:1;;1833:40:::1;1901:1;1884:19:::0;;-1:-1:-1;;;;;;1884:19:14::1;::::0;;1763:148::o;1881:95:4:-;1954:14;;1881:95;:::o;2755:189::-;2928:7;2920:6;-1:-1:-1;;;;;2892:44:4;2910:8;-1:-1:-1;;;;;2892:44:4;;;;;;;;;;;2755:189;;;:::o;6527:166:3:-;-1:-1:-1;;;;;6633:20:3;;6599:7;6633:20;;;:13;:20;;;;;6599:7;;6633:30;;6657:5;6633:23;:30::i;:::-;6618:45;6527:166;-1:-1:-1;;;;6527:166:3:o;1121:79:14:-;1159:7;1186:6;-1:-1:-1;;;;;1186:6:14;1121:79;:::o;6760:96:3:-;6841:7;6834:14;;;;;;;;-1:-1:-1;;6834:14:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6808:13;;6834:14;;6841:7;;6834:14;;6841:7;6834:14;;;;;;;;;;;;;;;;;;;;;;;;11334:310;1343:12:14;:10;:12::i;:::-;1333:6;;-1:-1:-1;;;;;1333:6:14;;;:22;;;1325:67;;;;;-1:-1:-1;;;1325:67:14;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1325:67:14;;;;;;;;;;;;;;;11485:5:3::1;-1:-1:-1::0;;;;;11473:17:3::1;:8;-1:-1:-1::0;;;;;11473:17:3::1;;;11465:55;;;::::0;;-1:-1:-1;;;11465:55:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;11465:55:3;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;11533:25:3;;::::1;;::::0;;;:18:::1;:25;::::0;;;;;;;:35;;::::1;::::0;;;;;;;;;;:46;;-1:-1:-1;;11533:46:3::1;::::0;::::1;;::::0;;::::1;::::0;;;11595:41;;;;;;;::::1;::::0;;;;;;;;::::1;11334:310:::0;;;:::o;10935:327::-;11082:12;:10;:12::i;:::-;-1:-1:-1;;;;;11070:24:3;:8;-1:-1:-1;;;;;11070:24:3;;;11062:62;;;;;-1:-1:-1;;;11062:62:3;;;;;;;;;;;;-1:-1:-1;;;11062:62:3;;;;;;;;;;;;;;;11182:8;11137:18;:32;11156:12;:10;:12::i;:::-;-1:-1:-1;;;;;11137:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;11137:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;11137:53:3;;;;;;;;;;;11221:12;:10;:12::i;:::-;-1:-1:-1;;;;;11206:48:3;;11245:8;11206:48;;;;;;;;;;;;;;;;;;;;10935:327;;:::o;23318:311::-;23413:4;1343:12:14;:10;:12::i;:::-;1333:6;;-1:-1:-1;;;;;1333:6:14;;;:22;;;1325:67;;;;;-1:-1:-1;;;1325:67:14;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1325:67:14;;;;;;;;;;;;;;;23461:8:3::1;::::0;::::1;;23452:17:::0;::::1;::::0;::::1;::::0;:38:::1;;;23482:8;;23473:5;:17;;23452:38;23430:127;;;;-1:-1:-1::0;;;23430:127:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23570:27;23581:2;23585:5;23592:4;23570:10;:27::i;:::-;-1:-1:-1::0;23617:4:3::1;23318:311:::0;;;;;:::o;431:38:15:-;;;-1:-1:-1;;;;;431:38:15;;:::o;12680:365:3:-;12869:41;12888:12;:10;:12::i;:::-;12902:7;12869:18;:41::i;:::-;12847:140;;;;-1:-1:-1;;;12847:140:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12998:39;13012:4;13018:2;13022:7;13031:5;12998:13;:39::i;:::-;12680:365;;;;:::o;6927:1775::-;7028:13;7081:16;7089:7;7081;:16::i;:::-;7059:113;;;;-1:-1:-1;;;7059:113:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7211:19;;;;:10;:19;;;;;;;;;7185:45;;;;;;-1:-1:-1;;7185:45:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;7211:19;7185:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7255:13;:11;:13::i;:::-;7244:7;:24;7241:970;;7296:11;7310:21;7322:8;;7310:7;:11;;:21;;;;:::i;:::-;7386:8;;7296:35;;-1:-1:-1;7359:11:3;;7373:30;;7401:1;;7374:21;;:7;;7386:8;;7374:11;:21::i;7373:30::-;7359:44;;7441:13;;7435:3;:19;7431:79;;;-1:-1:-1;7481:13:3;;7431:79;7556:3;7539:646;7565:3;7561:1;:7;7539:646;;;7616:12;;;;:9;:12;;;;;7641:1;;7616:21;;:19;:21::i;:::-;:26;7612:558;;7671:12;;;;:9;:12;;;;;7693:7;;7671:18;;7687:1;7671:15;:18::i;:::-;:29;7667:484;;7789:22;;;;:19;:22;;;;;:28;:38;-1:-1:-1;7789:108:3;;;;-1:-1:-1;7860:22:3;;;;:19;:22;;;;;:26;;;:37;-1:-1:-1;7860:37:3;7789:108;7755:373;;;7965:22;;;;:19;:22;;;;;:26;;7959:40;;-1:-1:-1;;7959:40:3;;;;;;;;;;;:45;7956:145;;8043:22;;;;:19;:22;;;;;;;;;:26;;8036:33;;;;;;-1:-1:-1;;8036:33:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8043:26;;8036:33;;8043:26;8036:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7956:145;7570:3;;7539:646;;;;7241:970;;;8290:8;8284:22;;-1:-1:-1;;8284:22:3;;;;;;;;;;;8280:76;;8335:9;-1:-1:-1;8328:16:3;;8280:76;8460:23;;:27;8456:76;;8511:9;-1:-1:-1;8504:16:3;;8456:76;8664:8;8674:18;:7;:16;:18::i;:::-;8647:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8647:46:3;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8647:46:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8633:61;;;6927:1775;;;:::o;11713:197::-;-1:-1:-1;;;;;11867:25:3;;;11838:4;11867:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;11713:197::o;2021:23::-;;;;:::o;2066:281:14:-;1343:12;:10;:12::i;:::-;1333:6;;-1:-1:-1;;;;;1333:6:14;;;:22;;;1325:67;;;;;-1:-1:-1;;;1325:67:14;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1325:67:14;;;;;;;;;;;;;;;-1:-1:-1;;;;;2169:22:14;::::1;2147:110;;;;-1:-1:-1::0;;;2147:110:14::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2294:6;::::0;;2273:38:::1;::::0;-1:-1:-1;;;;;2273:38:14;;::::1;::::0;2294:6;::::1;::::0;2273:38:::1;::::0;::::1;2322:6;:17:::0;;-1:-1:-1;;;;;;2322:17:14::1;-1:-1:-1::0;;;;;2322:17:14;;;::::1;::::0;;;::::1;::::0;;2066:281::o;14591:1037:3:-;14646:4;14667:30;:12;14689:7;14667:21;:30::i;:::-;14663:958;;;14721:30;:12;14743:7;14721:21;:30::i;14663:958::-;14783:13;:11;:13::i;:::-;14772:7;:24;14769:852;;14824:11;14838:21;14850:8;;14838:7;:11;;:21;;;;:::i;:::-;14914:8;;14824:35;;-1:-1:-1;14887:11:3;;14901:30;;14929:1;;14902:21;;:7;;14914:8;;14902:11;:21::i;14901:30::-;14887:44;;14969:13;;14963:3;:19;14959:79;;;-1:-1:-1;15009:13:3;;14959:79;15084:3;15067:514;15093:3;15089:1;:7;15067:514;;;15144:12;;;;:9;:12;;;;;15169:1;;15144:21;;:19;:21::i;:::-;:26;15140:426;;15199:12;;;;:9;:12;;;;;15221:7;;15199:18;;15215:1;15199:15;:18::i;:::-;:29;15195:352;;15317:22;;;;:19;:22;;;;;:28;:39;-1:-1:-1;15317:39:3;;;:109;;-1:-1:-1;15389:22:3;;;;:19;:22;;;;;:26;;;:37;-1:-1:-1;15389:37:3;15317:109;15283:241;;;15492:4;15485:11;;;;;;;15283:241;15098:3;;15067:514;;;;15604:5;15597:12;;;;;;1366:136:16;1424:7;1451:43;1455:1;1458;1451:43;;;;;;;;;;;;;;;;;:3;:43::i;902:181::-;960:7;992:5;;;1016:6;;;;1008:46;;;;;-1:-1:-1;;;1008:46:16;;;;;;;;;;;;;;;;;;;;;;;;;;;17244:169:3;17315:4;17332:9;17338:2;17332:5;:9::i;2290:471:16:-;2348:7;2593:6;2589:47;;-1:-1:-1;2623:1:16;2616:8;;2589:47;2660:5;;;2664:1;2660;:5;:1;2684:5;;;;;:10;2676:56;;;;-1:-1:-1;;;2676:56:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3237:132;3295:7;3322:39;3326:1;3329;3322:39;;;;;;;;;;;;;;;;;:3;:39::i;605:106:1:-;693:10;605:106;:::o;22857:158:3:-;22923:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;22923:29:3;-1:-1:-1;;;;;22923:29:3;;;;;;;;:24;;22977:16;22923:24;22977:7;:16::i;:::-;-1:-1:-1;;;;;22968:39:3;;;;;;;;;;;22857:158;;:::o;16563:366::-;-1:-1:-1;;;;;16626:16:3;;16618:61;;;;;-1:-1:-1;;;16618:61:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16705:12;;:19;;16722:1;16705:16;:19::i;:::-;16690:12;:34;;;-1:-1:-1;;;;;16736:17:3;;;;;;:13;:17;;;;;:35;;:21;:35::i;:::-;-1:-1:-1;16799:12:3;;16782:34;;:12;;16813:2;16782:16;:34::i;:::-;-1:-1:-1;;;;;;16845:15:3;;;;;;:11;:15;;;;;;:22;;16865:1;16845:19;:22::i;:::-;-1:-1:-1;;;;;16827:15:3;;;;;;:11;:15;;;;;;:40;;;;16908:12;;16883:38;;-1:-1:-1;;;;;;;;;;;16883:38:3;16827:15;;16883:38;16563:366;:::o;20985:275::-;21122:16;21130:7;21122;:16::i;:::-;21100:110;;;;-1:-1:-1;;;21100:110:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21221:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;15795:428::-;15907:4;15951:16;15959:7;15951;:16::i;:::-;15929:110;;;;-1:-1:-1;;;15929:110:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16050:13;16066:16;16074:7;16066;:16::i;:::-;16050:32;;16112:5;-1:-1:-1;;;;;16101:16:3;:7;-1:-1:-1;;;;;16101:16:3;;:64;;;;16158:7;-1:-1:-1;;;;;16134:31:3;:20;16146:7;16134:11;:20::i;:::-;-1:-1:-1;;;;;16134:31:3;;16101:64;:113;;;;16182:32;16199:5;16206:7;16182:16;:32::i;20074:755::-;20240:4;-1:-1:-1;;;;;20220:24:3;:16;20228:7;20220;:16::i;:::-;-1:-1:-1;;;;;20220:24:3;;20198:115;;;;-1:-1:-1;;;20198:115:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20332:16:3;;20324:65;;;;-1:-1:-1;;;20324:65:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20508:29;20525:1;20529:7;20508:8;:29::i;:::-;-1:-1:-1;;;;;20571:17:3;;;;;;:11;:17;;;;;;:24;;20593:1;20571:21;:24::i;:::-;-1:-1:-1;;;;;20549:17:3;;;;;;;:11;:17;;;;;;:46;;;;20625:15;;;;;;;:22;;20645:1;20625:19;:22::i;:::-;-1:-1:-1;;;;;20607:15:3;;;;;;;:11;:15;;;;;;;;:40;;;;20658:19;;;;;:13;:19;;;;:35;;20685:7;20658:26;:35::i;:::-;-1:-1:-1;;;;;;20704:17:3;;;;;;:13;:17;;;;;:30;;20726:7;20704:21;:30::i;:::-;-1:-1:-1;20747:29:3;:12;20764:7;20773:2;20747:16;:29::i;:::-;;20813:7;20809:2;-1:-1:-1;;;;;20794:27:3;20803:4;-1:-1:-1;;;;;20794:27:3;-1:-1:-1;;;;;;;;;;;20794:27:3;;;;;;;;;20074:755;;;:::o;7724:114:6:-;7784:7;7811:19;7819:3;7811:7;:19::i;8192:169::-;8290:7;8330:22;8334:3;8346:5;8330:3;:22::i;18002:827:3:-;-1:-1:-1;;;;;18093:16:3;;18085:61;;;;;-1:-1:-1;;;18085:61:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18166:8;18161:114;18184:5;18180:1;:9;;;18161:114;;;18241:12;;:21;;;18260:1;18258:3;;18241:21;:16;:21::i;:::-;18216:47;;-1:-1:-1;;;;;18216:47:3;;;18233:1;;-1:-1:-1;;;;;;;;;;;18216:47:3;18233:1;;18216:47;18191:3;;18161:114;;;-1:-1:-1;18328:12:3;;18305:13;;18285:34;;;;:19;:34;;;;;:55;;;18392:23;;18409:5;18392:16;:23::i;:::-;18371:13;;;18351:34;;;;:19;:34;;;;;;;;:38;;:64;;;;18446:13;;18426:34;;;;;:40;;:53;;-1:-1:-1;;;;;;18426:53:3;18469:10;18426:53;;;18519:12;;18500:13;;18490:24;;:9;:24;;;;;;:42;;:28;:42::i;:::-;;18543:53;18572:23;18582:12;;18572:5;:9;;:23;;;;:::i;:::-;18553:13;;18543:24;;;;:9;:24;;;;;;:28;:53::i;:::-;-1:-1:-1;18622:10:3;18607:26;;;;:14;:26;;;;;:37;;18638:5;18607:30;:37::i;:::-;-1:-1:-1;18671:13:3;;:20;;18689:1;18671:17;:20::i;:::-;18655:13;:36;18740:10;18728:23;;;;:11;:23;;;;;;:34;;18756:5;18728:27;:34::i;:::-;18714:10;18702:23;;;;:11;:23;;;;;:60;18788:12;;:23;;18805:5;18788:16;:23::i;:::-;18773:12;:38;-1:-1:-1;;18002:827:3:o;1468:578:15:-;1602:11;;1572:4;;1602:18;;1618:1;1602:15;:18::i;:::-;1588:11;:32;;;1633:24;;;;:11;:24;;;;;;;;:31;;-1:-1:-1;;1633:31:15;1660:4;1633:31;;;;;;1701:11;;1689:24;;:11;:24;;;;;:61;;;1779:11;;1767:24;;;;;:30;:39;;;1838:11;;1826:24;;;;:35;;;;:28;;;;;:35;;;;:::i;:::-;-1:-1:-1;1892:11:15;;1880:24;;;;:11;:24;;;;;;:32;;:45;;-1:-1:-1;;;;;;1880:45:15;1915:10;1880:45;;;;;;1967:44;;1998:12;;1990:6;;1915:10;1967:44;;1880:24;1967:44;-1:-1:-1;2037:4:15;1468:578;;;;;:::o;7242:183:5:-;7353:4;7382:35;7392:3;7412;7382:9;:35::i;8436:194::-;8542:7;8590:30;8595:3;8615;8590:4;:30::i;18836:903:3:-;-1:-1:-1;;;;;18947:16:3;;18939:61;;;;;-1:-1:-1;;;18939:61:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19020:8;19015:114;19038:5;19034:1;:9;;;19015:114;;;19095:12;;:21;;;19114:1;19112:3;;19095:21;:16;:21::i;:::-;19070:47;;-1:-1:-1;;;;;19070:47:3;;;19087:1;;-1:-1:-1;;;;;;;;;;;19070:47:3;19087:1;;19070:47;19045:3;;19015:114;;;-1:-1:-1;19182:12:3;;19159:13;;19139:34;;;;:19;:34;;;;;:55;;;19246:23;;19263:5;19246:16;:23::i;:::-;19225:13;;;19205:34;;;;:19;:34;;;;;;;;:38;;:64;;;;19300:13;;19280:34;;;;;:40;;:53;;-1:-1:-1;;;;;;19280:53:3;19323:10;19280:53;;;19364:13;;19344:34;;;;;;:45;;;;:38;;;;;:45;;;;:::i;:::-;-1:-1:-1;19429:12:3;;19410:13;;19400:24;;;;:9;:24;;;;;:42;;:28;:42::i;:::-;;19453:53;19482:23;19492:12;;19482:5;:9;;:23;;;;:::i;19453:53::-;-1:-1:-1;19532:10:3;19517:26;;;;:14;:26;;;;;:37;;19548:5;19517:30;:37::i;:::-;-1:-1:-1;19581:13:3;;:20;;19599:1;19581:17;:20::i;:::-;19565:13;:36;19650:10;19638:23;;;;:11;:23;;;;;;:34;;19666:5;19638:27;:34::i;:::-;19624:10;19612:23;;;;:11;:23;;;;;:60;19698:12;;:23;;19715:5;19698:16;:23::i;:::-;19683:12;:38;-1:-1:-1;;;18836:903:3:o;13926:352::-;14083:28;14093:4;14099:2;14103:7;14083:9;:28::i;:::-;14144:48;14167:4;14173:2;14177:7;14186:5;14144:22;:48::i;:::-;14122:148;;;;-1:-1:-1;;;14122:148:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;213:748:17;269:13;490:10;486:53;;-1:-1:-1;517:10:17;;;;;;;;;;;;-1:-1:-1;;;517:10:17;;;;;;486:53;564:5;549:12;605:78;612:9;;605:78;;638:8;;669:2;661:10;;;;605:78;;;693:19;725:6;715:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;715:17:17;-1:-1:-1;787:5:17;;-1:-1:-1;693:39:17;-1:-1:-1;;;759:10:17;;803:119;810:9;;803:119;;880:2;873:4;:9;867:2;:16;854:31;;836:6;843:7;;;;;;;836:15;;;;;;;;;;;:49;-1:-1:-1;;;;;836:49:17;;;;;;;;-1:-1:-1;908:2:17;900:10;;;;803:119;;;-1:-1:-1;946:6:17;213:748;-1:-1:-1;;;;213:748:17:o;1805:226:16:-;1925:7;1961:12;1953:6;;;;1945:29;;;;-1:-1:-1;;;1945:29:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1997:5:16;;;1805:226::o;3865:312::-;3985:7;4020:12;4013:5;4005:28;;;;-1:-1:-1;;;4005:28:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4044:9;4060:1;4056;:5;;;;;;;3865:312;-1:-1:-1;;;;;3865:312:16:o;6907:131:6:-;6974:4;6998:32;7003:3;7023:5;6998:4;:32::i;6617:210:5:-;6740:4;6764:55;6769:3;6789;-1:-1:-1;;;;;6803:14:5;;6764:4;:55::i;7214:160:6:-;7302:4;7331:35;7339:3;7359:5;7331:7;:35::i;4141:109::-;4224:18;;4141:109::o;4604:273::-;4745:18;;4698:7;;4745:26;-1:-1:-1;4723:110:6;;;;-1:-1:-1;;;4723:110:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4851:3;:11;;4863:5;4851:18;;;;;;;;;;;;;;;;4844:25;;4604:273;;;;:::o;4442:157:5:-;4540:4;4569:17;;;:12;;;;;:17;;;;;;:22;;;4442:157::o;5678:149::-;5744:7;5771:48;5776:3;5781;5771:48;;;;;;;;;;;;;;;;;:4;:48::i;22155:694:3:-;22310:4;22332:15;:2;-1:-1:-1;;;;;22332:13:3;;:15::i;:::-;22327:60;;-1:-1:-1;22371:4:3;22364:11;;22327:60;22397:23;22423:313;-1:-1:-1;;;22558:12:3;:10;:12::i;:::-;22589:4;22612:7;22638:5;22453:205;;;;;;-1:-1:-1;;;;;22453:205:3;;;;;;-1:-1:-1;;;;;22453:205:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22453:205:3;;;;;;;-1:-1:-1;;;;;22453:205:3;;;;;;;;;;;22423:313;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22423:15:3;;;:313;:15;:313::i;:::-;22397:339;;22747:13;22774:10;22763:32;;;;;;;;;;;;;;;-1:-1:-1;22763:32:3;-1:-1:-1;;;;;;22814:26:3;-1:-1:-1;;;22814:26:3;;-1:-1:-1;;;22155:694:3;;;;;;:::o;1661:414:6:-;1724:4;1746:21;1756:3;1761:5;1746:9;:21::i;:::-;1741:327;;-1:-1:-1;1784:23:6;;;;;;;;:11;:23;;;;;;;;;;;;;1967:18;;1945:19;;;:12;;;:19;;;;;;:40;;;;2000:11;;1741:327;-1:-1:-1;2051:5:6;2044:12;;1884:737:5;1994:4;2129:17;;;:12;;;:17;;;;;;2163:13;2159:455;;-1:-1:-1;;2261:36:5;;;;;;;;;;;;;;;;;;2243:55;;;;;;;;:12;:55;;;;;;;;;;;;;;;;;;;;;;;;2456:19;;2436:17;;;:12;;;:17;;;;;;;:39;2490:11;;2159:455;2570:5;2534:3;:12;;2558:1;2547:8;:12;2534:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;2597:5;2590:12;;;;;2251:1557:6;2317:4;2456:19;;;:12;;;:19;;;;;;2492:15;;2488:1313;;2940:18;;-1:-1:-1;;2891:14:6;;;;2940:22;;;;2867:21;;2940:3;;:22;;3227;;;;;;;;;;;;;;3207:42;;3373:9;3344:3;:11;;3356:13;3344:26;;;;;;;;;;;;;;;;;;;:38;;;;3450:23;;;3492:1;3450:12;;;:23;;;;;;3476:17;;;3450:43;;3602:17;;3450:3;;3602:17;;;;;;;;;;;;;;;;;;;;;;3697:3;:12;;:19;3710:5;3697:19;;;;;;;;;;;3690:26;;;3740:4;3733:11;;;;;;;;2488:1313;3784:5;3777:12;;;;;5940:353:5;6068:7;6107:17;;;:12;;;:17;;;;;;6158:12;6143:13;6135:36;;;;-1:-1:-1;;;6135:36:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6225:3;:12;;6249:1;6238:8;:12;6225:26;;;;;;;;;;;;;;;;;;:33;;;6218:40;;;5940:353;;;;;:::o;743:657:0:-;803:4;1300:20;;1130:66;1349:23;;;;;;:42;;-1:-1:-1;;1376:15:0;;;1341:51;-1:-1:-1;;743:657:0:o;3993:230::-;4130:12;4162:53;4185:6;4193:4;4199:1;4202:12;5787;5820:18;5831:6;5820:10;:18::i;:::-;5812:60;;;;;-1:-1:-1;;;5812:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5946:12;5960:23;5987:6;-1:-1:-1;;;;;5987:11:0;6006:8;6030:4;5987:58;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5987:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5945:100;;;;6060:7;6056:595;;;6091:10;-1:-1:-1;6084:17:0;;-1:-1:-1;6084:17:0;6056:595;6205:17;;:21;6201:439;;6468:10;6462:17;6529:15;6516:10;6512:2;6508:19;6501:44;6416:148;6604:20;;-1:-1:-1;;;6604:20:0;;;;;;;;;;;;;;;;;6611:12;;6604:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

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