ETH Price: $2,259.64 (-0.52%)

Transaction Decoder

Block:
20056869 at Jun-09-2024 09:11:47 PM +UTC
Transaction Fee:
0.00124859 ETH $2.82
Gas Used:
178,370 Gas / 7 Gwei

Emitted Events:

266 LasogetteNFT.Approval( owner=[Sender] 0xa7616da00cbef49e081add09e96e7b66e27a8af2, approved=0x00000000...000000000, tokenId=533 )
267 LasogetteNFT.Transfer( from=[Sender] 0xa7616da00cbef49e081add09e96e7b66e27a8af2, to=0x00000000...000000000, tokenId=533 )
268 TransparentUpgradeableProxy.0x8d85d5b6bce598827973072d3728045ecaba13a4a8ca0b607a441bac7ebe3ce0( 0x8d85d5b6bce598827973072d3728045ecaba13a4a8ca0b607a441bac7ebe3ce0, 0x000000000000000000000000e90d8fb7b79c8930b5c8891e61c298b412a6e81a, 0000000000000000000000000000000000000000000000000000000000000040, 0000000000000000000000000000000000000000000000000000000000000080, 0000000000000000000000000000000000000000000000000000000000000001, 0000000000000000000000000000000000000000000000000000000000000215, 000000000000000000000000000000000000000000000000000000000000003e, 62633170766467396163347732796a6e6a6a6e3965356c326c32797965747378, 34637968756e74397a6735366c33716c376d633272726a736c38716579300000 )

Account State Difference:

  Address   Before After State Difference Code
0x0F9cB4c2...e33fe5C5F
(beaverbuild)
8.411052318863773439 Eth8.411151790325398759 Eth0.00009947146162532
0xa7616DA0...6e27A8AF2
0.04271848584138554 Eth
Nonce: 213
0.04146989584138554 Eth
Nonce: 214
0.00124859
0xE90d8Fb7...412a6e81a

Execution Trace

TransparentUpgradeableProxy.4a4295fd( )
  • Rbrc721BridgeV1.burnToBridge( collectionAddr=0xE90d8Fb7B79C8930B5C8891e61c298b412a6e81a, ids=[533], btcAddress=bc1pvdg9ac4w2yjnjjn9e5l2l2yyetsx4cyhunt9zg56l3ql7mc2rrjsl8qey0 )
    • LasogetteNFT.ownerOf( tokenId=533 ) => ( 0xa7616DA00cBef49E081aDD09E96E7b66e27A8AF2 )
    • LasogetteNFT.burn( tokenId=533 )
      File 1 of 3: TransparentUpgradeableProxy
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
      pragma solidity ^0.8.0;
      import "../utils/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.
       */
      abstract contract Ownable is Context {
          address private _owner;
          event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
          /**
           * @dev Initializes the contract setting the deployer as the initial owner.
           */
          constructor() {
              _transferOwnership(_msgSender());
          }
          /**
           * @dev Throws if called by any account other than the owner.
           */
          modifier onlyOwner() {
              _checkOwner();
              _;
          }
          /**
           * @dev Returns the address of the current owner.
           */
          function owner() public view virtual returns (address) {
              return _owner;
          }
          /**
           * @dev Throws if the sender is not the owner.
           */
          function _checkOwner() internal view virtual {
              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 {
              _transferOwnership(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");
              _transferOwnership(newOwner);
          }
          /**
           * @dev Transfers ownership of the contract to a new account (`newOwner`).
           * Internal function without access restriction.
           */
          function _transferOwnership(address newOwner) internal virtual {
              address oldOwner = _owner;
              _owner = newOwner;
              emit OwnershipTransferred(oldOwner, newOwner);
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
       * proxy whose upgrades are fully controlled by the current implementation.
       */
      interface IERC1822Proxiable {
          /**
           * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
           * address.
           *
           * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
           * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
           * function revert if invoked through a proxy.
           */
          function proxiableUUID() external view returns (bytes32);
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.3) (interfaces/IERC1967.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
       *
       * _Available since v4.9._
       */
      interface IERC1967 {
          /**
           * @dev Emitted when the implementation is upgraded.
           */
          event Upgraded(address indexed implementation);
          /**
           * @dev Emitted when the admin account has changed.
           */
          event AdminChanged(address previousAdmin, address newAdmin);
          /**
           * @dev Emitted when the beacon is changed.
           */
          event BeaconUpgraded(address indexed beacon);
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (proxy/beacon/BeaconProxy.sol)
      pragma solidity ^0.8.0;
      import "./IBeacon.sol";
      import "../Proxy.sol";
      import "../ERC1967/ERC1967Upgrade.sol";
      /**
       * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.
       *
       * The beacon address is stored in storage slot `uint256(keccak256('eip1967.proxy.beacon')) - 1`, so that it doesn't
       * conflict with the storage layout of the implementation behind the proxy.
       *
       * _Available since v3.4._
       */
      contract BeaconProxy is Proxy, ERC1967Upgrade {
          /**
           * @dev Initializes the proxy with `beacon`.
           *
           * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This
           * will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity
           * constructor.
           *
           * Requirements:
           *
           * - `beacon` must be a contract with the interface {IBeacon}.
           */
          constructor(address beacon, bytes memory data) payable {
              _upgradeBeaconToAndCall(beacon, data, false);
          }
          /**
           * @dev Returns the current beacon address.
           */
          function _beacon() internal view virtual returns (address) {
              return _getBeacon();
          }
          /**
           * @dev Returns the current implementation address of the associated beacon.
           */
          function _implementation() internal view virtual override returns (address) {
              return IBeacon(_getBeacon()).implementation();
          }
          /**
           * @dev Changes the proxy to use a new beacon. Deprecated: see {_upgradeBeaconToAndCall}.
           *
           * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon.
           *
           * Requirements:
           *
           * - `beacon` must be a contract.
           * - The implementation returned by `beacon` must be a contract.
           */
          function _setBeacon(address beacon, bytes memory data) internal virtual {
              _upgradeBeaconToAndCall(beacon, data, false);
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev This is the interface that {BeaconProxy} expects of its beacon.
       */
      interface IBeacon {
          /**
           * @dev Must return an address that can be used as a delegate call target.
           *
           * {BeaconProxy} will check that this address is a contract.
           */
          function implementation() external view returns (address);
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts v4.4.1 (proxy/beacon/UpgradeableBeacon.sol)
      pragma solidity ^0.8.0;
      import "./IBeacon.sol";
      import "../../access/Ownable.sol";
      import "../../utils/Address.sol";
      /**
       * @dev This contract is used in conjunction with one or more instances of {BeaconProxy} to determine their
       * implementation contract, which is where they will delegate all function calls.
       *
       * An owner is able to change the implementation the beacon points to, thus upgrading the proxies that use this beacon.
       */
      contract UpgradeableBeacon is IBeacon, Ownable {
          address private _implementation;
          /**
           * @dev Emitted when the implementation returned by the beacon is changed.
           */
          event Upgraded(address indexed implementation);
          /**
           * @dev Sets the address of the initial implementation, and the deployer account as the owner who can upgrade the
           * beacon.
           */
          constructor(address implementation_) {
              _setImplementation(implementation_);
          }
          /**
           * @dev Returns the current implementation address.
           */
          function implementation() public view virtual override returns (address) {
              return _implementation;
          }
          /**
           * @dev Upgrades the beacon to a new implementation.
           *
           * Emits an {Upgraded} event.
           *
           * Requirements:
           *
           * - msg.sender must be the owner of the contract.
           * - `newImplementation` must be a contract.
           */
          function upgradeTo(address newImplementation) public virtual onlyOwner {
              _setImplementation(newImplementation);
              emit Upgraded(newImplementation);
          }
          /**
           * @dev Sets the implementation contract address for this beacon
           *
           * Requirements:
           *
           * - `newImplementation` must be a contract.
           */
          function _setImplementation(address newImplementation) private {
              require(Address.isContract(newImplementation), "UpgradeableBeacon: implementation is not a contract");
              _implementation = newImplementation;
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol)
      pragma solidity ^0.8.0;
      import "../Proxy.sol";
      import "./ERC1967Upgrade.sol";
      /**
       * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
       * implementation address that can be changed. This address is stored in storage in the location specified by
       * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
       * implementation behind the proxy.
       */
      contract ERC1967Proxy is Proxy, ERC1967Upgrade {
          /**
           * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
           *
           * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
           * function call, and allows initializing the storage of the proxy like a Solidity constructor.
           */
          constructor(address _logic, bytes memory _data) payable {
              _upgradeToAndCall(_logic, _data, false);
          }
          /**
           * @dev Returns the current implementation address.
           */
          function _implementation() internal view virtual override returns (address impl) {
              return ERC1967Upgrade._getImplementation();
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.3) (proxy/ERC1967/ERC1967Upgrade.sol)
      pragma solidity ^0.8.2;
      import "../beacon/IBeacon.sol";
      import "../../interfaces/IERC1967.sol";
      import "../../interfaces/draft-IERC1822.sol";
      import "../../utils/Address.sol";
      import "../../utils/StorageSlot.sol";
      /**
       * @dev This abstract contract provides getters and event emitting update functions for
       * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
       *
       * _Available since v4.1._
       *
       * @custom:oz-upgrades-unsafe-allow delegatecall
       */
      abstract contract ERC1967Upgrade is IERC1967 {
          // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
          bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;
          /**
           * @dev Storage slot with the address of the current implementation.
           * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
           * validated in the constructor.
           */
          bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
          /**
           * @dev Returns the current implementation address.
           */
          function _getImplementation() internal view returns (address) {
              return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
          }
          /**
           * @dev Stores a new address in the EIP1967 implementation slot.
           */
          function _setImplementation(address newImplementation) private {
              require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
              StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
          }
          /**
           * @dev Perform implementation upgrade
           *
           * Emits an {Upgraded} event.
           */
          function _upgradeTo(address newImplementation) internal {
              _setImplementation(newImplementation);
              emit Upgraded(newImplementation);
          }
          /**
           * @dev Perform implementation upgrade with additional setup call.
           *
           * Emits an {Upgraded} event.
           */
          function _upgradeToAndCall(
              address newImplementation,
              bytes memory data,
              bool forceCall
          ) internal {
              _upgradeTo(newImplementation);
              if (data.length > 0 || forceCall) {
                  Address.functionDelegateCall(newImplementation, data);
              }
          }
          /**
           * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
           *
           * Emits an {Upgraded} event.
           */
          function _upgradeToAndCallUUPS(
              address newImplementation,
              bytes memory data,
              bool forceCall
          ) internal {
              // Upgrades from old implementations will perform a rollback test. This test requires the new
              // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
              // this special case will break upgrade paths from old UUPS implementation to new ones.
              if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) {
                  _setImplementation(newImplementation);
              } else {
                  try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {
                      require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
                  } catch {
                      revert("ERC1967Upgrade: new implementation is not UUPS");
                  }
                  _upgradeToAndCall(newImplementation, data, forceCall);
              }
          }
          /**
           * @dev Storage slot with the admin of the contract.
           * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
           * validated in the constructor.
           */
          bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
          /**
           * @dev Returns the current admin.
           */
          function _getAdmin() internal view returns (address) {
              return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;
          }
          /**
           * @dev Stores a new address in the EIP1967 admin slot.
           */
          function _setAdmin(address newAdmin) private {
              require(newAdmin != address(0), "ERC1967: new admin is the zero address");
              StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
          }
          /**
           * @dev Changes the admin of the proxy.
           *
           * Emits an {AdminChanged} event.
           */
          function _changeAdmin(address newAdmin) internal {
              emit AdminChanged(_getAdmin(), newAdmin);
              _setAdmin(newAdmin);
          }
          /**
           * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
           * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
           */
          bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
          /**
           * @dev Returns the current beacon.
           */
          function _getBeacon() internal view returns (address) {
              return StorageSlot.getAddressSlot(_BEACON_SLOT).value;
          }
          /**
           * @dev Stores a new beacon in the EIP1967 beacon slot.
           */
          function _setBeacon(address newBeacon) private {
              require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract");
              require(
                  Address.isContract(IBeacon(newBeacon).implementation()),
                  "ERC1967: beacon implementation is not a contract"
              );
              StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;
          }
          /**
           * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
           * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
           *
           * Emits a {BeaconUpgraded} event.
           */
          function _upgradeBeaconToAndCall(
              address newBeacon,
              bytes memory data,
              bool forceCall
          ) internal {
              _setBeacon(newBeacon);
              emit BeaconUpgraded(newBeacon);
              if (data.length > 0 || forceCall) {
                  Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
              }
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
       * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
       * be specified by overriding the virtual {_implementation} function.
       *
       * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
       * different contract through the {_delegate} function.
       *
       * The success and return data of the delegated call will be returned back to the caller of the proxy.
       */
      abstract contract Proxy {
          /**
           * @dev Delegates the current call to `implementation`.
           *
           * This function does not return to its internal call site, it will return directly to the external caller.
           */
          function _delegate(address implementation) internal virtual {
              assembly {
                  // Copy msg.data. We take full control of memory in this inline assembly
                  // block because it will not return to Solidity code. We overwrite the
                  // Solidity scratch pad at memory position 0.
                  calldatacopy(0, 0, calldatasize())
                  // Call the implementation.
                  // out and outsize are 0 because we don't know the size yet.
                  let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)
                  // Copy the returned data.
                  returndatacopy(0, 0, returndatasize())
                  switch result
                  // delegatecall returns 0 on error.
                  case 0 {
                      revert(0, returndatasize())
                  }
                  default {
                      return(0, returndatasize())
                  }
              }
          }
          /**
           * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function
           * and {_fallback} should delegate.
           */
          function _implementation() internal view virtual returns (address);
          /**
           * @dev Delegates the current call to the address returned by `_implementation()`.
           *
           * This function does not return to its internal call site, it will return directly to the external caller.
           */
          function _fallback() internal virtual {
              _beforeFallback();
              _delegate(_implementation());
          }
          /**
           * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
           * function in the contract matches the call data.
           */
          fallback() external payable virtual {
              _fallback();
          }
          /**
           * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
           * is empty.
           */
          receive() external payable virtual {
              _fallback();
          }
          /**
           * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
           * call, or as part of the Solidity `fallback` or `receive` functions.
           *
           * If overridden should call `super._beforeFallback()`.
           */
          function _beforeFallback() internal virtual {}
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.3) (proxy/transparent/ProxyAdmin.sol)
      pragma solidity ^0.8.0;
      import "./TransparentUpgradeableProxy.sol";
      import "../../access/Ownable.sol";
      /**
       * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an
       * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}.
       */
      contract ProxyAdmin is Ownable {
          /**
           * @dev Returns the current implementation of `proxy`.
           *
           * Requirements:
           *
           * - This contract must be the admin of `proxy`.
           */
          function getProxyImplementation(ITransparentUpgradeableProxy proxy) public view virtual returns (address) {
              // We need to manually run the static call since the getter cannot be flagged as view
              // bytes4(keccak256("implementation()")) == 0x5c60da1b
              (bool success, bytes memory returndata) = address(proxy).staticcall(hex"5c60da1b");
              require(success);
              return abi.decode(returndata, (address));
          }
          /**
           * @dev Returns the current admin of `proxy`.
           *
           * Requirements:
           *
           * - This contract must be the admin of `proxy`.
           */
          function getProxyAdmin(ITransparentUpgradeableProxy proxy) public view virtual returns (address) {
              // We need to manually run the static call since the getter cannot be flagged as view
              // bytes4(keccak256("admin()")) == 0xf851a440
              (bool success, bytes memory returndata) = address(proxy).staticcall(hex"f851a440");
              require(success);
              return abi.decode(returndata, (address));
          }
          /**
           * @dev Changes the admin of `proxy` to `newAdmin`.
           *
           * Requirements:
           *
           * - This contract must be the current admin of `proxy`.
           */
          function changeProxyAdmin(ITransparentUpgradeableProxy proxy, address newAdmin) public virtual onlyOwner {
              proxy.changeAdmin(newAdmin);
          }
          /**
           * @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}.
           *
           * Requirements:
           *
           * - This contract must be the admin of `proxy`.
           */
          function upgrade(ITransparentUpgradeableProxy proxy, address implementation) public virtual onlyOwner {
              proxy.upgradeTo(implementation);
          }
          /**
           * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See
           * {TransparentUpgradeableProxy-upgradeToAndCall}.
           *
           * Requirements:
           *
           * - This contract must be the admin of `proxy`.
           */
          function upgradeAndCall(
              ITransparentUpgradeableProxy proxy,
              address implementation,
              bytes memory data
          ) public payable virtual onlyOwner {
              proxy.upgradeToAndCall{value: msg.value}(implementation, data);
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.3) (proxy/transparent/TransparentUpgradeableProxy.sol)
      pragma solidity ^0.8.0;
      import "../ERC1967/ERC1967Proxy.sol";
      /**
       * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}
       * does not implement this interface directly, and some of its functions are implemented by an internal dispatch
       * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not
       * include them in the ABI so this interface must be used to interact with it.
       */
      interface ITransparentUpgradeableProxy is IERC1967 {
          function admin() external view returns (address);
          function implementation() external view returns (address);
          function changeAdmin(address) external;
          function upgradeTo(address) external;
          function upgradeToAndCall(address, bytes memory) external payable;
      }
      /**
       * @dev This contract implements a proxy that is upgradeable by an admin.
       *
       * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector
       * clashing], which can potentially be used in an attack, this contract uses the
       * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two
       * things that go hand in hand:
       *
       * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if
       * that call matches one of the admin functions exposed by the proxy itself.
       * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the
       * implementation. If the admin tries to call a function on the implementation it will fail with an error that says
       * "admin cannot fallback to proxy target".
       *
       * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing
       * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due
       * to sudden errors when trying to call a function from the proxy implementation.
       *
       * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,
       * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.
       *
       * NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not
       * inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch
       * mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to
       * fully implement transparency without decoding reverts caused by selector clashes between the proxy and the
       * implementation.
       *
       * WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler
       * will not check that there are no selector conflicts, due to the note above. A selector clash between any new function
       * and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could
       * render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised.
       */
      contract TransparentUpgradeableProxy is ERC1967Proxy {
          /**
           * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and
           * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.
           */
          constructor(
              address _logic,
              address admin_,
              bytes memory _data
          ) payable ERC1967Proxy(_logic, _data) {
              _changeAdmin(admin_);
          }
          /**
           * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
           *
           * CAUTION: This modifier is deprecated, as it could cause issues if the modified function has arguments, and the
           * implementation provides a function with the same selector.
           */
          modifier ifAdmin() {
              if (msg.sender == _getAdmin()) {
                  _;
              } else {
                  _fallback();
              }
          }
          /**
           * @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior
           */
          function _fallback() internal virtual override {
              if (msg.sender == _getAdmin()) {
                  bytes memory ret;
                  bytes4 selector = msg.sig;
                  if (selector == ITransparentUpgradeableProxy.upgradeTo.selector) {
                      ret = _dispatchUpgradeTo();
                  } else if (selector == ITransparentUpgradeableProxy.upgradeToAndCall.selector) {
                      ret = _dispatchUpgradeToAndCall();
                  } else if (selector == ITransparentUpgradeableProxy.changeAdmin.selector) {
                      ret = _dispatchChangeAdmin();
                  } else if (selector == ITransparentUpgradeableProxy.admin.selector) {
                      ret = _dispatchAdmin();
                  } else if (selector == ITransparentUpgradeableProxy.implementation.selector) {
                      ret = _dispatchImplementation();
                  } else {
                      revert("TransparentUpgradeableProxy: admin cannot fallback to proxy target");
                  }
                  assembly {
                      return(add(ret, 0x20), mload(ret))
                  }
              } else {
                  super._fallback();
              }
          }
          /**
           * @dev Returns the current admin.
           *
           * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
           * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
           * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
           */
          function _dispatchAdmin() private returns (bytes memory) {
              _requireZeroValue();
              address admin = _getAdmin();
              return abi.encode(admin);
          }
          /**
           * @dev Returns the current implementation.
           *
           * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
           * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
           * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
           */
          function _dispatchImplementation() private returns (bytes memory) {
              _requireZeroValue();
              address implementation = _implementation();
              return abi.encode(implementation);
          }
          /**
           * @dev Changes the admin of the proxy.
           *
           * Emits an {AdminChanged} event.
           */
          function _dispatchChangeAdmin() private returns (bytes memory) {
              _requireZeroValue();
              address newAdmin = abi.decode(msg.data[4:], (address));
              _changeAdmin(newAdmin);
              return "";
          }
          /**
           * @dev Upgrade the implementation of the proxy.
           */
          function _dispatchUpgradeTo() private returns (bytes memory) {
              _requireZeroValue();
              address newImplementation = abi.decode(msg.data[4:], (address));
              _upgradeToAndCall(newImplementation, bytes(""), false);
              return "";
          }
          /**
           * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified
           * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the
           * proxied contract.
           */
          function _dispatchUpgradeToAndCall() private returns (bytes memory) {
              (address newImplementation, bytes memory data) = abi.decode(msg.data[4:], (address, bytes));
              _upgradeToAndCall(newImplementation, data, true);
              return "";
          }
          /**
           * @dev Returns the current admin.
           */
          function _admin() internal view virtual returns (address) {
              return _getAdmin();
          }
          /**
           * @dev To keep this contract fully transparent, all `ifAdmin` functions must be payable. This helper is here to
           * emulate some proxy functions being non-payable while still allowing value to pass through.
           */
          function _requireZeroValue() private {
              require(msg.value == 0);
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
      pragma solidity ^0.8.1;
      /**
       * @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
           * ====
           *
           * [IMPORTANT]
           * ====
           * You shouldn't rely on `isContract` to protect against flash loan attacks!
           *
           * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
           * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
           * constructor.
           * ====
           */
          function isContract(address account) internal view returns (bool) {
              // This method relies on extcodesize/address.code.length, which returns 0
              // for contracts in construction, since the code is only stored at the end
              // of the constructor execution.
              return account.code.length > 0;
          }
          /**
           * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
           * `recipient`, forwarding all available gas and reverting on errors.
           *
           * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
           * of certain opcodes, possibly making contracts go over the 2300 gas limit
           * imposed by `transfer`, making them unable to receive funds via
           * `transfer`. {sendValue} removes this limitation.
           *
           * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
           *
           * IMPORTANT: because control is transferred to `recipient`, care must be
           * taken to not create reentrancy vulnerabilities. Consider using
           * {ReentrancyGuard} or the
           * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
           */
          function sendValue(address payable recipient, uint256 amount) internal {
              require(address(this).balance >= amount, "Address: insufficient balance");
              (bool success, ) = recipient.call{value: amount}("");
              require(success, "Address: unable to send value, recipient may have reverted");
          }
          /**
           * @dev Performs a Solidity function call using a low level `call`. A
           * plain `call` is an unsafe replacement for a function call: use this
           * function instead.
           *
           * If `target` reverts with a revert reason, it is bubbled up by this
           * function (like regular Solidity function calls).
           *
           * Returns the raw returned data. To convert to the expected return value,
           * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
           *
           * Requirements:
           *
           * - `target` must be a contract.
           * - calling `target` with `data` must not revert.
           *
           * _Available since v3.1._
           */
          function functionCall(address target, bytes memory data) internal returns (bytes memory) {
              return functionCallWithValue(target, data, 0, "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");
              (bool success, bytes memory returndata) = target.call{value: value}(data);
              return verifyCallResultFromTarget(target, success, returndata, errorMessage);
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
           * but performing a static call.
           *
           * _Available since v3.3._
           */
          function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
              return functionStaticCall(target, data, "Address: low-level static call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
           * but performing a static call.
           *
           * _Available since v3.3._
           */
          function functionStaticCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal view returns (bytes memory) {
              (bool success, bytes memory returndata) = target.staticcall(data);
              return verifyCallResultFromTarget(target, success, returndata, errorMessage);
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
           * but performing a delegate call.
           *
           * _Available since v3.4._
           */
          function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
              return functionDelegateCall(target, data, "Address: low-level delegate call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
           * but performing a delegate call.
           *
           * _Available since v3.4._
           */
          function functionDelegateCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal returns (bytes memory) {
              (bool success, bytes memory returndata) = target.delegatecall(data);
              return verifyCallResultFromTarget(target, success, returndata, errorMessage);
          }
          /**
           * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
           * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
           *
           * _Available since v4.8._
           */
          function verifyCallResultFromTarget(
              address target,
              bool success,
              bytes memory returndata,
              string memory errorMessage
          ) internal view returns (bytes memory) {
              if (success) {
                  if (returndata.length == 0) {
                      // only check isContract if the call was successful and the return data is empty
                      // otherwise we already know that it was a contract
                      require(isContract(target), "Address: call to non-contract");
                  }
                  return returndata;
              } else {
                  _revert(returndata, errorMessage);
              }
          }
          /**
           * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
           * revert reason or using the provided one.
           *
           * _Available since v4.3._
           */
          function verifyCallResult(
              bool success,
              bytes memory returndata,
              string memory errorMessage
          ) internal pure returns (bytes memory) {
              if (success) {
                  return returndata;
              } else {
                  _revert(returndata, errorMessage);
              }
          }
          function _revert(bytes memory returndata, string memory errorMessage) private pure {
              // 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
                  /// @solidity memory-safe-assembly
                  assembly {
                      let returndata_size := mload(returndata)
                      revert(add(32, returndata), returndata_size)
                  }
              } else {
                  revert(errorMessage);
              }
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev Provides information about the current execution context, including the
       * sender of the transaction and its data. While these are generally available
       * via msg.sender and msg.data, they should not be accessed in such a direct
       * manner, since when dealing with meta-transactions the account sending and
       * paying for execution may not be the actual sender (as far as an application
       * is concerned).
       *
       * This contract is only required for intermediate, library-like contracts.
       */
      abstract contract Context {
          function _msgSender() internal view virtual returns (address) {
              return msg.sender;
          }
          function _msgData() internal view virtual returns (bytes calldata) {
              return msg.data;
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev Library for reading and writing primitive types to specific storage slots.
       *
       * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
       * This library helps with reading and writing to such slots without the need for inline assembly.
       *
       * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
       *
       * Example usage to set ERC1967 implementation slot:
       * ```
       * contract ERC1967 {
       *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
       *
       *     function _getImplementation() internal view returns (address) {
       *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
       *     }
       *
       *     function _setImplementation(address newImplementation) internal {
       *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
       *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
       *     }
       * }
       * ```
       *
       * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
       */
      library StorageSlot {
          struct AddressSlot {
              address value;
          }
          struct BooleanSlot {
              bool value;
          }
          struct Bytes32Slot {
              bytes32 value;
          }
          struct Uint256Slot {
              uint256 value;
          }
          /**
           * @dev Returns an `AddressSlot` with member `value` located at `slot`.
           */
          function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
              /// @solidity memory-safe-assembly
              assembly {
                  r.slot := slot
              }
          }
          /**
           * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
           */
          function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
              /// @solidity memory-safe-assembly
              assembly {
                  r.slot := slot
              }
          }
          /**
           * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
           */
          function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
              /// @solidity memory-safe-assembly
              assembly {
                  r.slot := slot
              }
          }
          /**
           * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
           */
          function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
              /// @solidity memory-safe-assembly
              assembly {
                  r.slot := slot
              }
          }
      }
      

      File 2 of 3: LasogetteNFT
      // SPDX-License-Identifier: MIT
      // LasogetteNFT
      /** 
      ====================================================================================================
      ..,    @@%       .@@    ..(%&@(@@@                .   .         (,   ,,&&&(&&@   .(*,#%.  %&&@@@@,  
      ,...  @@&*  .   /@@@@/     %&@@#(.   #@@@@@%   .@@@@@%   ,%@@@@@@(  #@@@@@@@@%  ,&@@@&&%  @&@/&.   .
      ,.,.  @@&.     /@. %@@       @@@*   %@@./@@@  .@@*  &@,  ,@@@@@@&.     %&@@      .@@@     &,    ..  
      ,*,  /@@@     *@(   @&&*      &@@&  &@@  &@&  /@@ #@@@.  .@@@           @@@,      @@@.    @@@&@&&,..
      /,,  @@@@     &@     @@@.   &@@@@#  &@@  #@@. /@@, @@@,   @@@/,,&.     .&@&       @&@,   .@@        
       ,.  @@@@&@&&&&@.   #@&@@.&@&(# .   &@&&&&@@  /@@(,@@@#   @@@@@@@@      @@%       @&&%   &@&@@@&&&  
      ,..  .                                ,,  ..   .@%&#&%    ,                       ..  .     .  .   .
      ====================================================================================================
      */
      /**
       *
       * Bonjour, et bienvenue sur le contrat lasogette NFT. Regarde autour de toi!
       *
       * Hello, and welcome to the lasogette NFT contract. Have a look around!
       *
       */
      pragma solidity 0.8.16;
      import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
      import "@openzeppelin/contracts/access/Ownable.sol";
      import "@openzeppelin/contracts/utils/Strings.sol";
      import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
      import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol";
      import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";
      import "./IEPSPortal.sol";
      contract LasogetteNFT is ERC721, Ownable, ERC721Burnable, VRFConsumerBaseV2 {
        using Strings for uint256;
        // ===================================
        // CONSTANTS and IMMUTABLES
        // ===================================
        string public constant INSURANCE =
          "Interaction with this contract serves as an insurance against roko's basilisk.";
        // EPS minting rights index for delegated rights:
        // Indice des droits de frappe EPS pour les droits délégués:
        uint256 public constant EPS_MINTING_RIGHTS_INDEX = 2;
        // EPS portal lookup:
        // Recherche sur le portail EPS:
        IEPSPortal public immutable EPS;
        // Total supply of lasogettes:
        // Approvisionnement total en lasogettes:
        uint256 public immutable maxNumberOfLasogettes;
        // Mint price (note eligible community holders can mint one for free in freeMint())
        // Prix ​​​​à la menthe (notez que les détenteurs éligibles de la communauté peuvent en créer un gratuitement dans freeMint())
        uint256 public immutable publicMintPrice;
        // URI used for all tokens pre-reveal. Reveal is set through the calling of chainlink VRF to
        // set the random offset.
        // URI utilisé pour la pré-révélation de tous les jetons. La révélation est définie par l'appel de chainlink VRF à
        // définit le décalage aléatoire.
        string public placeholderURI;
        // Base URI used post-reveal, i.e. the folder location for individual token .json with
        // associated metadata including the link to an image. Note that NO ONE can know what lasogette
        // you will get post-reveal. Your lasogette is the combination of your token ID and a random
        // number from chainlink VRF. The order to the metadata is fixed before mint, but the VRF
        // result is not known until called in this contract, and it can only be called once. This works
        // as follows:
        // * You have tokenID 1291. Pre-reveal you see the same metadata and image as everyone else
        //   as the contract is using the placeholderURI
        // * At the reveal the token owner calls getURIOffset(). This makes a requests to chainlink
        //   for verficiable randonemess (VRF).
        // * Chainlink will then submit a random number to this contract, that we used to determine
        //   a number between 1 and the total collection size. Let's imagine this is number 2034
        // * The URI returned for your token is now your tokenId plus the VRF random number -1 (as
        //   the collection is 0 indexed with a token 0). In our example our token is now pointing
        //   at metadata 3,324 (1,291 + 2,034 - 1).
        // * With this method there is no way for anyone to know which lasogette each token will get
        //   prior to the reveal
        // * As the metadata is uploaded prior to minting the order cannot have been tampered with.
        // URI de base utilisé après la révélation, c'est-à-dire l'emplacement du dossier pour le jeton individuel .json avec
        // métadonnées associées incluant le lien vers une image. Notez que PERSONNE ne peut savoir ce qu'est la lasogette
        // vous obtiendrez après la révélation. Votre lasogette est la combinaison de votre identifiant de jeton et d'un
        // numéro de chainlink VRF. L'ordre des métadonnées est fixé avant la menthe, mais le VRF
        // le résultat n'est pas connu tant qu'il n'est pas appelé dans ce contrat, et il ne peut être appelé qu'une seule fois. Cela marche
        // comme suit:
        // * Vous avez le tokenID 1291. Avant la révélation, vous voyez les mêmes métadonnées et la même image que tout le monde
        //   car le contrat utilise le placeholderURI
        // * Lors de la révélation, le propriétaire du jeton appelle getURIOffset(). Cela fait une demande à chainlink
        //   pour le désordre vérifiable (VRF).
        // * Chainlink soumettra ensuite un nombre aléatoire à ce contrat, que nous avons utilisé pour déterminer
        //   un nombre compris entre 1 et la taille totale de la collection. Imaginons que c'est le numéro 2034
        // * L'URI renvoyé pour votre jeton est maintenant votre tokenId plus le nombre aléatoire VRF -1 (comme
        //   la collection est 0 indexée avec un jeton 0). Dans notre exemple, notre jeton pointe maintenant
        //   aux métadonnées 3 324 (1 291 + 2 034 - 1).
        // * Avec cette méthode, il n'y a aucun moyen pour quiconque de savoir quelle lasogette chaque jeton obtiendra
        //   avant la révélation
        // * Comme les métadonnées sont téléchargées avant la frappe, la commande ne peut pas avoir été falsifiée.
        string public baseURI;
        // ===================================
        // STORAGE
        // ===================================
        // Storage for the incrementing token counter:
        // Stockage pour le compteur de jetons incrémentiel :
        uint256 public tokenCounter;
        // Storage to track burned tokens:
        // Stockage pour le compteur de jetons incrémentiel :
        uint256 public burnCounter;
        // Treasury address
        // Adresse du Trésor
        address payable public treasuryAddress;
        // Token URI offset, assigned by a callback from chainlink VRF
        // Décalage d'URI de jeton, attribué par un rappel du VRF de chainlink
        uint256 public tokenURIOffset;
        // Bool to declare minting open
        bool public mintingOpen = false;
        // Mapping to record that this address has minted:
        // Mappage pour enregistrer que cette adresse a frappé :
        mapping(address => bool) public addressHasFreeMinted;
        // Mapping to record that this token has been used to claim eligibility:
        // Mappage pour enregistrer que ce jeton a été utilisé pour revendiquer l'éligibilité :
        mapping(bytes32 => bool) private tokenHasFreeMinted;
        /**
         * @dev Chainlink config.
         */
        // See https://docs.chain.link/docs/vrf-contracts/#ethereum-mainnet for details of VRF
        // corrdinator addresses.
        // Current values as follows:
        // Voir https://docs.chain.link/docs/vrf-contracts/#ethereum-mainnet pour plus de détails sur VRF
        // adresses des coordonnateurs.
        // Valeurs actuelles comme suit :
        // --------------------------
        // * Rinkeby: 0x6168499c0cFfCaCD319c818142124B7A15E857ab
        // * Mainnet: 0x271682DEB8C4E0901D1a1550aD2e64D568E69909
        VRFCoordinatorV2Interface public vrfCoordinator;
        // The subscription ID must be set to a valid subscriber before the VRF call can be made:
        // L'ID d'abonnement doit être défini sur un abonné valide avant que l'appel VRF puisse être effectué :
        uint64 public vrfSubscriptionId;
        // The gas lane to use, which specifies the maximum gas price to bump to.
        // For a list of available gas lanes on each network,
        // see https://docs.chain.link/docs/vrf-contracts/#configurations
        // Current values as follows:
        // La voie d'essence à utiliser, qui spécifie le prix maximum de l'essence à atteindre.
        // Pour une liste des voies gaz disponibles sur chaque réseau,
        // voir https://docs.chain.link/docs/vrf-contracts/#configurations
        // Valeurs actuelles comme suit :
        // --------------------------
        // * Rinkeby: 0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc   (30 gwei keyhash valid for all testing)
        // * Mainnet:
        // * 0x8af398995b04c28e9951adb9721ef74c74f93e6a478f39e7e0777be13527e7ef (200 gwei)
        // * 0xff8dedfbfa60af186cf3c830acbc32c05aae823045ae5ea7da1e45fbfaba4f92 (500 gwei)
        // * 0x9fe0eebf5e446e3c998ec9bb19951541aee00bb90ea201ae456421a2ded86805 (1000 gwei)
        bytes32 public vrfKeyHash;
        // Depends on the number of requested values that you want sent to the
        // fulfillRandomWords() function. Storing each word costs about 20,000 gas,
        // so 100,000 is a safe default for this example contract. Test and adjust
        // this limit based on the network that you select, the size of the request,
        // and the processing of the callback request in the fulfillRandomWords()
        // function.
        // Dépend du nombre de valeurs demandées que vous souhaitez envoyer au
        // Fonction fillRandomWords(). Stocker chaque mot coûte environ 20 000 gaz,
        // donc 100 000 est une valeur par défaut sûre pour cet exemple de contrat. Tester et ajuster
        // cette limite basée sur le réseau que vous sélectionnez, la taille de la requête,
        // et le traitement de la demande de rappel dans le fillRandomWords()
        // fonction.
        uint32 public vrfCallbackGasLimit = 150000;
        // The default is 3, but you can set this higher.
        // La valeur par défaut est 3, mais vous pouvez la définir plus haut.
        uint16 public vrfRequestConfirmations = 3;
        // Cannot exceed VRFCoordinatorV2.MAX_NUM_WORDS.
        // Ne peut pas dépasser VRFCoordinatorV2.MAX_NUM_WORDS.
        uint32 public vrfNumWords = 1;
        // ===================================
        // ERROR DEFINITIONS
        // ===================================
        error TokenURIOffsetAlreadySet();
        error URIQueryForNonexistentToken(uint256 tokenId);
        error AddressHasAlreadyMinted(address minter);
        error CallerIsNotBeneficiaryOfSelectedNFT(
          address collection,
          uint256 tokenId
        );
        error TokenHasAlreadyBeenUsedInFreeMint(address collection, uint256 tokenId);
        error InvalidCollection(address collection);
        error IncorrectETHPayment(uint256 paid, uint256 required);
        error SupplyOfLasogettedExceeded(uint256 available, uint256 requested);
        error OnlyOwnerCanFundContract();
        error NoFallback();
        error TransferFailed();
        error QuantityMustBeGreaterThanZero();
        error PlaceholderURISet();
        error BaseURISet();
        error MintingNotOpen();
        // ===================================
        // CONSTRUCTOR
        // ===================================
        constructor(
          uint256 maxSupply_,
          uint256 publicMintPrice_,
          address vrfCoordinator_,
          bytes32 vrfKeyHash_,
          address payable treasuryAddress_,
          address eps_,
          string memory placeholderURI_,
          string memory baseURI_
        ) ERC721("Lasogette NFT", "LASOG") VRFConsumerBaseV2(vrfCoordinator_) {
          maxNumberOfLasogettes = maxSupply_;
          publicMintPrice = publicMintPrice_;
          vrfKeyHash = vrfKeyHash_;
          vrfCoordinator = VRFCoordinatorV2Interface(vrfCoordinator_);
          treasuryAddress = treasuryAddress_;
          EPS = IEPSPortal(eps_);
          placeholderURI = placeholderURI_;
          baseURI = baseURI_;
        }
        // ===================================
        // SETTERS (owner only)
        // ===================================
        /**
         *
         * @dev setTreasuryAddress: Allow the owner to set the treasury address.
         *      setTreasuryAddress : permet au propriétaire de définir l'adresse de trésorerie.
         *
         */
        function setTreasuryAddress(address payable treasuryAddress_)
          external
          onlyOwner
        {
          treasuryAddress = treasuryAddress_;
        }
        /**
         *
         * @dev openMinting: Allow the owner to open minting. Mint will run until minted out.
         *
         */
        function openMinting() external onlyOwner {
          mintingOpen = true;
        }
        /**
         *
         * @dev setPlaceHolderURI: Allow the owner to set the placeholder URI IF it is blank (i.e. only set once).
         *
         */
        function setPlaceholderURI(string memory placeholderURI_) external onlyOwner {
          if (bytes(placeholderURI).length != 0) {
            revert PlaceholderURISet();
          }
          placeholderURI = placeholderURI_;
        }
        /**
         *
         * @dev setBaseURI: Allow the owner to set the base URI IF it is blank (i.e. only set once).
         *
         */
        function setBaseURI(string memory baseURI_) external onlyOwner {
          if (bytes(baseURI).length != 0) {
            revert BaseURISet();
          }
          baseURI = baseURI_;
        }
        /**
         *
         * @dev setVRFCoordinator
         *
         */
        function setVRFCoordinator(address vrfCoord_) external onlyOwner {
          vrfCoordinator = VRFCoordinatorV2Interface(vrfCoord_);
        }
        /**
         *
         * @dev setVRFKeyHash
         *
         */
        function setVRFKeyHash(bytes32 vrfKey_) external onlyOwner {
          vrfKeyHash = vrfKey_;
        }
        /**
         *
         * @dev setVRFCallbackGasLimit
         *
         */
        function setVRFCallbackGasLimit(uint32 vrfGasLimit_) external onlyOwner {
          vrfCallbackGasLimit = vrfGasLimit_;
        }
        /**
         *
         * @dev setVRFRequestConfirmations
         *
         */
        function setVRFRequestConfirmations(uint16 vrfConfs_) external onlyOwner {
          vrfRequestConfirmations = vrfConfs_;
        }
        /**
         *
         * @dev setVRFNumWords
         *
         */
        function setVRFNumWords(uint32 vrfWords_) external onlyOwner {
          vrfNumWords = vrfWords_;
        }
        /**
         *
         * @dev setVRFSubscriptionId
         *
         */
        function setVRFSubscriptionId(uint64 vrfSubId_) external onlyOwner {
          vrfSubscriptionId = vrfSubId_;
        }
        // ===================================
        // MINTING
        // ===================================
        /**
         *
         * @dev freeMint(): free mint for holders of eligible assets
                            menthe gratuite pour les détenteurs d'actifs éligibles
         *
         */
        function freeMint(
          address collection_,
          uint256 tokenId_,
          bool useDelivery_
        ) external {
          if (!mintingOpen) {
            revert MintingNotOpen();
          }
          _checkSupply(1);
          // Check if this address has already minted. If so, revert and tell the user why:
          // Vérifie si cette adresse a déjà été émise. Si c'est le cas, revenez en arrière et dites à l'utilisateur pourquoi :
          if (addressHasFreeMinted[msg.sender]) {
            revert AddressHasAlreadyMinted({minter: msg.sender});
          }
          // Make a hash of the collection and token Id to uniquely identify this token:
          // Créez un hachage de la collection et de l'identifiant du jeton pour identifier de manière unique ce jeton :
          bytes32 tokenIdHash = keccak256(abi.encodePacked(collection_, tokenId_));
          // Check if this token has already been used to claim a free mint.
          // If so, revert and tell the user why:
          // Vérifie si ce jeton a déjà été utilisé pour réclamer un atelier gratuit.
          // Si c'est le cas, revenir en arrière et dire à l'utilisateur pourquoi :
          if (tokenHasFreeMinted[tokenIdHash]) {
            revert TokenHasAlreadyBeenUsedInFreeMint({
              collection: collection_,
              tokenId: tokenId_
            });
          }
          // Check if this is a valid collection for free minting:
          // Vérifiez s'il s'agit d'une collection valide pour la frappe gratuite :
          if (!isValidCollection(collection_)) {
            revert InvalidCollection({collection: collection_});
          }
          // Check that the calling user is the valid beneficiary of the token
          // That has been passed. A valid beneficiary can be:
          // 1) The owner of the token (most common case)
          // 2) A hot wallet that holds the token in a linked EPS cold wallet
          // 3) A wallet that has an EPS minting rights rental on the token
          // (for details see eternalproxy.com)
          // Vérifier que l'utilisateur appelant est le bénéficiaire valide du jeton
          // Cela a été adopté. Un bénéficiaire valide peut être :
          // 1) Le propriétaire du jeton (cas le plus courant)
          // 2) Un portefeuille chaud qui contient le jeton dans un portefeuille froid EPS lié
          // 3) Un portefeuille qui a une location de droits de frappe EPS sur le jeton
          // (pour plus de détails, voir éternelleproxy.com)
          if (!isValidAssetBeneficiary(collection_, tokenId_, msg.sender)) {
            revert CallerIsNotBeneficiaryOfSelectedNFT({
              collection: collection_,
              tokenId: tokenId_
            });
          }
          // Set where assets should be delivered. This defaults to the
          // sender address, looking up the EPS delivery address of the
          // sender has selected that option in the minting UI:
          // Définir où les actifs doivent être livrés. C'est par défaut le
          // adresse de l'expéditeur, recherche de l'adresse de livraison EPS du
          // l'expéditeur a sélectionné cette option dans l'interface utilisateur :
          address deliveryAddress = _getDeliveryAddress(useDelivery_, msg.sender);
          // We made it! Perform the mint:
          // Nous l'avons fait! Effectuez la menthe:
          _performMint(deliveryAddress);
          // Record that this address has minted:
          // Enregistrez que cette adresse a été frappée :
          addressHasFreeMinted[msg.sender] = true;
          // Record that this token has been used to claim a free mint:
          // Enregistrez que ce jeton a été utilisé pour réclamer un atelier gratuit :
          tokenHasFreeMinted[tokenIdHash] = true;
        }
        /**
         *
         * @dev _checkSupply
         *
         */
        function _checkSupply(uint256 quantity_) internal view {
          if ((tokenCounter + quantity_) > maxNumberOfLasogettes) {
            revert SupplyOfLasogettedExceeded({
              available: maxNumberOfLasogettes - tokenCounter,
              requested: quantity_
            });
          }
        }
        /**
         * @dev _performMint
         */
        function _performMint(address delivery_) internal {
          _safeMint(delivery_, tokenCounter);
          tokenCounter += 1;
        }
        /**
         *
         * @dev isValidAssetBeneficiary
         *
         */
        function isValidAssetBeneficiary(
          address collection_,
          uint256 tokenId_,
          address caller_
        ) public view returns (bool) {
          // Get the registered beneficiary for this asset from EPS:
          // Obtenez le bénéficiaire enregistré pour cet actif auprès d'EPS :
          return (EPS.beneficiaryOf(
            collection_,
            tokenId_,
            EPS_MINTING_RIGHTS_INDEX
          ) == caller_);
        }
        /**
         *
         * @dev isEligibleForFreeMint: check the eligibility of a collection, token and caling address
         * Note this duplicates the checks in the free mint, which instead call revert with
         * suitable custom errors. This function is for external calls.
         *                            vérifier l'éligibilité d'une collecte, d'un jeton et d'une adresse d'appel
         * Notez que cela duplique les chèques de la menthe gratuite, qui appellent à la place revenir avec
         * erreurs personnalisées appropriées. Cette fonction est réservée aux appels externes.
         *
         */
        function isEligibleForFreeMint(
          address collection_,
          uint256 tokenId_,
          address caller_
        ) external view returns (bool, string memory) {
          if (addressHasFreeMinted[caller_]) {
            return (false, "Address has already free minted");
          }
          bytes32 tokenIdHash = keccak256(abi.encodePacked(collection_, tokenId_));
          if (tokenHasFreeMinted[tokenIdHash]) {
            return (false, "Token has already been used in free mint");
          }
          if (!isValidCollection(collection_)) {
            return (false, "Invalid collection");
          }
          if (!isValidAssetBeneficiary(collection_, tokenId_, caller_)) {
            return (false, "Caller is not beneficiary of selected NFT");
          }
          return (true, "");
        }
        /**
         *
         * @dev isValidCollection
         *
         */
        function isValidCollection(address collection_) public pure returns (bool) {
          return (collection_ == 0x1D20A51F088492A0f1C57f047A9e30c9aB5C07Ea || // wassies by wassies
            collection_ == 0x1CB1A5e65610AEFF2551A50f76a87a7d3fB649C6 || // cryptoadz
            collection_ == 0x79FCDEF22feeD20eDDacbB2587640e45491b757f || // mfers
            collection_ == 0x5Af0D9827E0c53E4799BB226655A1de152A425a5 || // milady
            collection_ == 0x62eb144FE92Ddc1B10bCAde03A0C09f6FBffBffb || // adworld
            collection_ == 0xA16891897378a82E9F0ad44A705B292C9753538C || // pills
            collection_ == 0x91680cF5F9071cafAE21B90ebf2c9CC9e480fB93 || // frank frank
            collection_ == 0xEC0a7A26456B8451aefc4b00393ce1BefF5eB3e9 || // all stars
            collection_ == 0x82235445a7f634279E33702cc004B0FDb002fDa7 || // sakura park
            collection_ == 0x42069ABFE407C60cf4ae4112bEDEaD391dBa1cdB); // CryptoDickbutts
        }
        /**
         *
         * @dev publicMint(): public mint for everyone
         *                    monnaie publique pour tous
         *
         */
        function publicMint(uint256 quantity_, bool useDelivery_) external payable {
          if (!mintingOpen) {
            revert MintingNotOpen();
          }
          _checkSupply(quantity_);
          if (quantity_ == 0) {
            revert QuantityMustBeGreaterThanZero();
          }
          if (msg.value != (quantity_ * publicMintPrice)) {
            revert IncorrectETHPayment({
              paid: msg.value,
              required: (quantity_ * publicMintPrice)
            });
          }
          address deliveryAddress = _getDeliveryAddress(useDelivery_, msg.sender);
          for (uint256 i = 0; i < quantity_; i++) {
            _performMint(deliveryAddress);
          }
        }
        /**
         *
         * @dev _getDeliveryAddress
         *
         */
        function _getDeliveryAddress(bool useEPSDelivery_, address caller_)
          internal
          view
          returns (address)
        {
          if (useEPSDelivery_) {
            (, address delivery, ) = EPS.getAddresses(caller_);
            return delivery;
          } else {
            return caller_;
          }
        }
        // ===================================
        // URI HANDLING
        // ===================================
        /**
         *
         * @dev getURIOffset: Requests randomness.
         *                    Demande le hasard.
         *
         */
        function getURIOffset() public onlyOwner returns (uint256) {
          if (tokenURIOffset != 0) {
            revert TokenURIOffsetAlreadySet();
          }
          return
            vrfCoordinator.requestRandomWords(
              vrfKeyHash,
              vrfSubscriptionId,
              vrfRequestConfirmations,
              vrfCallbackGasLimit,
              vrfNumWords
            );
        }
        /**
         *
         * @dev fulfillRandomWords: Callback function used by VRF Coordinator.
         *                          Fonction de rappel utilisée par le coordinateur VRF.
         *
         */
        function fulfillRandomWords(uint256, uint256[] memory randomWords_)
          internal
          override
        {
          if (tokenURIOffset != 0) {
            revert TokenURIOffsetAlreadySet();
          }
          tokenURIOffset = (randomWords_[0] % maxNumberOfLasogettes) + 1;
        }
        /**
         *
         * @dev tokenURI
         *
         *
         */
        function tokenURI(uint256 tokenId_)
          public
          view
          override(ERC721)
          returns (string memory)
        {
          if (!_exists(tokenId_)) {
            revert URIQueryForNonexistentToken({tokenId: tokenId_});
          }
          if (tokenURIOffset == 0) {
            return string(placeholderURI);
          } else {
            return
              string(
                abi.encodePacked(baseURI, _getTokenURI(tokenId_).toString(), ".json")
              );
          }
        }
        /**
         *
         * @dev _getTokenURI: get the token URI based on the random offset
                              obtenir l'URI du jeton en fonction du décalage aléatoire
         *
         */
        function _getTokenURI(uint256 tokenId_) internal view returns (uint256) {
          uint256 tempTokenURI = tokenId_ + (tokenURIOffset - 1);
          // If the returned URI range exceeds the collection length, it wraps to be beginning:
          if (tempTokenURI > maxNumberOfLasogettes - 1) {
            tempTokenURI = tempTokenURI - (maxNumberOfLasogettes);
          }
          return tempTokenURI;
        }
        // ===================================
        // OPERATIONAL
        // ===================================
        /**
         *
         * @dev totalSupply(): totalSupply = tokens minted (tokenCounter) minus burned
         *                     totalSupply = jetons frappés (tokenCounter) moins brûlés
         *
         */
        function totalSupply() public view returns (uint256) {
          return tokenCounter - burnCounter;
        }
        /**
         *
         * @dev burn: Burns `tokenId`. See {ERC721-_burn}.
         *            Brûle `tokenId`. Voir {ERC721-_burn}.
         *
         */
        function burn(uint256 tokenId) public override {
          super.burn(tokenId);
          burnCounter += 1;
        }
        /**
         *
         * @dev withdrawAll: onlyOwner withdrawal to the beneficiary address
         *                   Retrait uniquement du propriétaire à l'adresse du bénéficiaire
         *
         */
        function withdrawAll() external onlyOwner {
          (bool success, ) = treasuryAddress.call{value: address(this).balance}("");
          if (!success) {
            revert TransferFailed();
          }
        }
        /**
         *
         * @dev withdrawAmount: onlyOwner withdrawal to the treasury address, amount to withdraw as an argument
                                Retrait du propriétaire uniquement à l'adresse du bénéficiaire, envoi
         * le montant à retirer en argument
         *
         */
        function withdrawAmount(uint256 amount_) external onlyOwner {
          (bool success, ) = treasuryAddress.call{value: amount_}("");
          if (!success) {
            revert TransferFailed();
          }
        }
        /**
         *
         * @dev receive: Reject all direct payments to the contract except from  owner.
                         Rejeter tous les paiements directs au contrat, sauf du propriétaire.
         *
         */
        receive() external payable {
          if (msg.sender != owner()) {
            revert OnlyOwnerCanFundContract();
          }
        }
        /**
         *
         * @dev fallback: none
         *                rien
         *
         */
        fallback() external payable {
          revert NoFallback();
        }
      }
      // SPDX-License-Identifier: MIT
      // EPS Contracts v2.0.0
      pragma solidity 0.8.16;
      /**
       *
       * @dev Interface for the EPS portal
       *
       */
      /**
       *
       * @dev Returns the beneficiary of the `tokenId` token.
       *
       */
      interface IEPSPortal {
        function beneficiaryOf(
          address tokenContract_,
          uint256 tokenId_,
          uint256 rightsIndex_
        ) external view returns (address beneficiary_);
        /**
         *
         * @dev Returns the beneficiary balance for a contract.
         *
         */
        function beneficiaryBalanceOf(
          address queryAddress_,
          address tokenContract_,
          uint256 rightsIndex_
        ) external view returns (uint256 balance_);
        /**
         *
         * @dev Returns the proxied address details (cold and delivery address) for a passed hot address
         *
         */
        function getAddresses(address _receivedAddress)
          external
          view
          returns (
            address cold,
            address delivery,
            bool isProxied
          );
        /**
         * @dev coldIsLive: Return if a cold wallet is live
         */
        function coldIsLive(address cold_) external view returns (bool);
        /**
         * @dev hotIsLive: Return if a hot wallet is live
         */
        function hotIsLive(address hot_) external view returns (bool);
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.4;
      /** ****************************************************************************
       * @notice Interface for contracts using VRF randomness
       * *****************************************************************************
       * @dev PURPOSE
       *
       * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
       * @dev to Vera the verifier in such a way that Vera can be sure he's not
       * @dev making his output up to suit himself. Reggie provides Vera a public key
       * @dev to which he knows the secret key. Each time Vera provides a seed to
       * @dev Reggie, he gives back a value which is computed completely
       * @dev deterministically from the seed and the secret key.
       *
       * @dev Reggie provides a proof by which Vera can verify that the output was
       * @dev correctly computed once Reggie tells it to her, but without that proof,
       * @dev the output is indistinguishable to her from a uniform random sample
       * @dev from the output space.
       *
       * @dev The purpose of this contract is to make it easy for unrelated contracts
       * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
       * @dev simple access to a verifiable source of randomness. It ensures 2 things:
       * @dev 1. The fulfillment came from the VRFCoordinator
       * @dev 2. The consumer contract implements fulfillRandomWords.
       * *****************************************************************************
       * @dev USAGE
       *
       * @dev Calling contracts must inherit from VRFConsumerBase, and can
       * @dev initialize VRFConsumerBase's attributes in their constructor as
       * @dev shown:
       *
       * @dev   contract VRFConsumer {
       * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)
       * @dev       VRFConsumerBase(_vrfCoordinator) public {
       * @dev         <initialization with other arguments goes here>
       * @dev       }
       * @dev   }
       *
       * @dev The oracle will have given you an ID for the VRF keypair they have
       * @dev committed to (let's call it keyHash). Create subscription, fund it
       * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface
       * @dev subscription management functions).
       * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,
       * @dev callbackGasLimit, numWords),
       * @dev see (VRFCoordinatorInterface for a description of the arguments).
       *
       * @dev Once the VRFCoordinator has received and validated the oracle's response
       * @dev to your request, it will call your contract's fulfillRandomWords method.
       *
       * @dev The randomness argument to fulfillRandomWords is a set of random words
       * @dev generated from your requestId and the blockHash of the request.
       *
       * @dev If your contract could have concurrent requests open, you can use the
       * @dev requestId returned from requestRandomWords to track which response is associated
       * @dev with which randomness request.
       * @dev See "SECURITY CONSIDERATIONS" for principles to keep in mind,
       * @dev if your contract could have multiple requests in flight simultaneously.
       *
       * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
       * @dev differ.
       *
       * *****************************************************************************
       * @dev SECURITY CONSIDERATIONS
       *
       * @dev A method with the ability to call your fulfillRandomness method directly
       * @dev could spoof a VRF response with any random value, so it's critical that
       * @dev it cannot be directly called by anything other than this base contract
       * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
       *
       * @dev For your users to trust that your contract's random behavior is free
       * @dev from malicious interference, it's best if you can write it so that all
       * @dev behaviors implied by a VRF response are executed *during* your
       * @dev fulfillRandomness method. If your contract must store the response (or
       * @dev anything derived from it) and use it later, you must ensure that any
       * @dev user-significant behavior which depends on that stored value cannot be
       * @dev manipulated by a subsequent VRF request.
       *
       * @dev Similarly, both miners and the VRF oracle itself have some influence
       * @dev over the order in which VRF responses appear on the blockchain, so if
       * @dev your contract could have multiple VRF requests in flight simultaneously,
       * @dev you must ensure that the order in which the VRF responses arrive cannot
       * @dev be used to manipulate your contract's user-significant behavior.
       *
       * @dev Since the block hash of the block which contains the requestRandomness
       * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
       * @dev miner could, in principle, fork the blockchain to evict the block
       * @dev containing the request, forcing the request to be included in a
       * @dev different block with a different hash, and therefore a different input
       * @dev to the VRF. However, such an attack would incur a substantial economic
       * @dev cost. This cost scales with the number of blocks the VRF oracle waits
       * @dev until it calls responds to a request. It is for this reason that
       * @dev that you can signal to an oracle you'd like them to wait longer before
       * @dev responding to the request (however this is not enforced in the contract
       * @dev and so remains effective only in the case of unmodified oracle software).
       */
      abstract contract VRFConsumerBaseV2 {
        error OnlyCoordinatorCanFulfill(address have, address want);
        address private immutable vrfCoordinator;
        /**
         * @param _vrfCoordinator address of VRFCoordinator contract
         */
        constructor(address _vrfCoordinator) {
          vrfCoordinator = _vrfCoordinator;
        }
        /**
         * @notice fulfillRandomness handles the VRF response. Your contract must
         * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
         * @notice principles to keep in mind when implementing your fulfillRandomness
         * @notice method.
         *
         * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this
         * @dev signature, and will call it once it has verified the proof
         * @dev associated with the randomness. (It is triggered via a call to
         * @dev rawFulfillRandomness, below.)
         *
         * @param requestId The Id initially returned by requestRandomness
         * @param randomWords the VRF output expanded to the requested number of words
         */
        function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual;
        // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
        // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
        // the origin of the call
        function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external {
          if (msg.sender != vrfCoordinator) {
            revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator);
          }
          fulfillRandomWords(requestId, randomWords);
        }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      interface VRFCoordinatorV2Interface {
        /**
         * @notice Get configuration relevant for making requests
         * @return minimumRequestConfirmations global min for request confirmations
         * @return maxGasLimit global max for request gas limit
         * @return s_provingKeyHashes list of registered key hashes
         */
        function getRequestConfig()
          external
          view
          returns (
            uint16,
            uint32,
            bytes32[] memory
          );
        /**
         * @notice Request a set of random words.
         * @param keyHash - Corresponds to a particular oracle job which uses
         * that key for generating the VRF proof. Different keyHash's have different gas price
         * ceilings, so you can select a specific one to bound your maximum per request cost.
         * @param subId  - The ID of the VRF subscription. Must be funded
         * with the minimum subscription balance required for the selected keyHash.
         * @param minimumRequestConfirmations - How many blocks you'd like the
         * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS
         * for why you may want to request more. The acceptable range is
         * [minimumRequestBlockConfirmations, 200].
         * @param callbackGasLimit - How much gas you'd like to receive in your
         * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords
         * may be slightly less than this amount because of gas used calling the function
         * (argument decoding etc.), so you may need to request slightly more than you expect
         * to have inside fulfillRandomWords. The acceptable range is
         * [0, maxGasLimit]
         * @param numWords - The number of uint256 random values you'd like to receive
         * in your fulfillRandomWords callback. Note these numbers are expanded in a
         * secure way by the VRFCoordinator from a single random value supplied by the oracle.
         * @return requestId - A unique identifier of the request. Can be used to match
         * a request to a response in fulfillRandomWords.
         */
        function requestRandomWords(
          bytes32 keyHash,
          uint64 subId,
          uint16 minimumRequestConfirmations,
          uint32 callbackGasLimit,
          uint32 numWords
        ) external returns (uint256 requestId);
        /**
         * @notice Create a VRF subscription.
         * @return subId - A unique subscription id.
         * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.
         * @dev Note to fund the subscription, use transferAndCall. For example
         * @dev  LINKTOKEN.transferAndCall(
         * @dev    address(COORDINATOR),
         * @dev    amount,
         * @dev    abi.encode(subId));
         */
        function createSubscription() external returns (uint64 subId);
        /**
         * @notice Get a VRF subscription.
         * @param subId - ID of the subscription
         * @return balance - LINK balance of the subscription in juels.
         * @return reqCount - number of requests for this subscription, determines fee tier.
         * @return owner - owner of the subscription.
         * @return consumers - list of consumer address which are able to use this subscription.
         */
        function getSubscription(uint64 subId)
          external
          view
          returns (
            uint96 balance,
            uint64 reqCount,
            address owner,
            address[] memory consumers
          );
        /**
         * @notice Request subscription owner transfer.
         * @param subId - ID of the subscription
         * @param newOwner - proposed new owner of the subscription
         */
        function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;
        /**
         * @notice Request subscription owner transfer.
         * @param subId - ID of the subscription
         * @dev will revert if original owner of subId has
         * not requested that msg.sender become the new owner.
         */
        function acceptSubscriptionOwnerTransfer(uint64 subId) external;
        /**
         * @notice Add a consumer to a VRF subscription.
         * @param subId - ID of the subscription
         * @param consumer - New consumer which can use the subscription
         */
        function addConsumer(uint64 subId, address consumer) external;
        /**
         * @notice Remove a consumer from a VRF subscription.
         * @param subId - ID of the subscription
         * @param consumer - Consumer to remove from the subscription
         */
        function removeConsumer(uint64 subId, address consumer) external;
        /**
         * @notice Cancel a subscription
         * @param subId - ID of the subscription
         * @param to - Where to send the remaining LINK to
         */
        function cancelSubscription(uint64 subId, address to) external;
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)
      pragma solidity ^0.8.0;
      import "../ERC721.sol";
      import "../../../utils/Context.sol";
      /**
       * @title ERC721 Burnable Token
       * @dev ERC721 Token that can be burned (destroyed).
       */
      abstract contract ERC721Burnable is Context, ERC721 {
          /**
           * @dev Burns `tokenId`. See {ERC721-_burn}.
           *
           * Requirements:
           *
           * - The caller must own `tokenId` or be an approved operator.
           */
          function burn(uint256 tokenId) public virtual {
              //solhint-disable-next-line max-line-length
              require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
              _burn(tokenId);
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev String operations.
       */
      library Strings {
          bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
          uint8 private constant _ADDRESS_LENGTH = 20;
          /**
           * @dev Converts a `uint256` to its ASCII `string` decimal representation.
           */
          function toString(uint256 value) internal pure returns (string memory) {
              // Inspired by OraclizeAPI's implementation - MIT licence
              // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
              if (value == 0) {
                  return "0";
              }
              uint256 temp = value;
              uint256 digits;
              while (temp != 0) {
                  digits++;
                  temp /= 10;
              }
              bytes memory buffer = new bytes(digits);
              while (value != 0) {
                  digits -= 1;
                  buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
                  value /= 10;
              }
              return string(buffer);
          }
          /**
           * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
           */
          function toHexString(uint256 value) internal pure returns (string memory) {
              if (value == 0) {
                  return "0x00";
              }
              uint256 temp = value;
              uint256 length = 0;
              while (temp != 0) {
                  length++;
                  temp >>= 8;
              }
              return toHexString(value, length);
          }
          /**
           * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
           */
          function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
              bytes memory buffer = new bytes(2 * length + 2);
              buffer[0] = "0";
              buffer[1] = "x";
              for (uint256 i = 2 * length + 1; i > 1; --i) {
                  buffer[i] = _HEX_SYMBOLS[value & 0xf];
                  value >>= 4;
              }
              require(value == 0, "Strings: hex length insufficient");
              return string(buffer);
          }
          /**
           * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
           */
          function toHexString(address addr) internal pure returns (string memory) {
              return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
      pragma solidity ^0.8.0;
      import "../utils/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.
       */
      abstract contract Ownable is Context {
          address private _owner;
          event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
          /**
           * @dev Initializes the contract setting the deployer as the initial owner.
           */
          constructor() {
              _transferOwnership(_msgSender());
          }
          /**
           * @dev Throws if called by any account other than the owner.
           */
          modifier onlyOwner() {
              _checkOwner();
              _;
          }
          /**
           * @dev Returns the address of the current owner.
           */
          function owner() public view virtual returns (address) {
              return _owner;
          }
          /**
           * @dev Throws if the sender is not the owner.
           */
          function _checkOwner() internal view virtual {
              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 {
              _transferOwnership(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");
              _transferOwnership(newOwner);
          }
          /**
           * @dev Transfers ownership of the contract to a new account (`newOwner`).
           * Internal function without access restriction.
           */
          function _transferOwnership(address newOwner) internal virtual {
              address oldOwner = _owner;
              _owner = newOwner;
              emit OwnershipTransferred(oldOwner, newOwner);
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
      pragma solidity ^0.8.0;
      import "./IERC721.sol";
      import "./IERC721Receiver.sol";
      import "./extensions/IERC721Metadata.sol";
      import "../../utils/Address.sol";
      import "../../utils/Context.sol";
      import "../../utils/Strings.sol";
      import "../../utils/introspection/ERC165.sol";
      /**
       * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
       * the Metadata extension, but not including the Enumerable extension, which is available separately as
       * {ERC721Enumerable}.
       */
      contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
          using Address for address;
          using Strings for uint256;
          // Token name
          string private _name;
          // Token symbol
          string private _symbol;
          // Mapping from token ID to owner address
          mapping(uint256 => address) private _owners;
          // Mapping owner address to token count
          mapping(address => uint256) private _balances;
          // Mapping from token ID to approved address
          mapping(uint256 => address) private _tokenApprovals;
          // Mapping from owner to operator approvals
          mapping(address => mapping(address => bool)) private _operatorApprovals;
          /**
           * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
           */
          constructor(string memory name_, string memory symbol_) {
              _name = name_;
              _symbol = symbol_;
          }
          /**
           * @dev See {IERC165-supportsInterface}.
           */
          function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
              return
                  interfaceId == type(IERC721).interfaceId ||
                  interfaceId == type(IERC721Metadata).interfaceId ||
                  super.supportsInterface(interfaceId);
          }
          /**
           * @dev See {IERC721-balanceOf}.
           */
          function balanceOf(address owner) public view virtual override returns (uint256) {
              require(owner != address(0), "ERC721: address zero is not a valid owner");
              return _balances[owner];
          }
          /**
           * @dev See {IERC721-ownerOf}.
           */
          function ownerOf(uint256 tokenId) public view virtual override returns (address) {
              address owner = _owners[tokenId];
              require(owner != address(0), "ERC721: invalid token ID");
              return owner;
          }
          /**
           * @dev See {IERC721Metadata-name}.
           */
          function name() public view virtual override returns (string memory) {
              return _name;
          }
          /**
           * @dev See {IERC721Metadata-symbol}.
           */
          function symbol() public view virtual override returns (string memory) {
              return _symbol;
          }
          /**
           * @dev See {IERC721Metadata-tokenURI}.
           */
          function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
              _requireMinted(tokenId);
              string memory baseURI = _baseURI();
              return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
          }
          /**
           * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
           * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
           * by default, can be overridden in child contracts.
           */
          function _baseURI() internal view virtual returns (string memory) {
              return "";
          }
          /**
           * @dev See {IERC721-approve}.
           */
          function approve(address to, uint256 tokenId) public virtual override {
              address owner = ERC721.ownerOf(tokenId);
              require(to != owner, "ERC721: approval to current owner");
              require(
                  _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
                  "ERC721: approve caller is not token owner nor approved for all"
              );
              _approve(to, tokenId);
          }
          /**
           * @dev See {IERC721-getApproved}.
           */
          function getApproved(uint256 tokenId) public view virtual override returns (address) {
              _requireMinted(tokenId);
              return _tokenApprovals[tokenId];
          }
          /**
           * @dev See {IERC721-setApprovalForAll}.
           */
          function setApprovalForAll(address operator, bool approved) public virtual override {
              _setApprovalForAll(_msgSender(), operator, approved);
          }
          /**
           * @dev See {IERC721-isApprovedForAll}.
           */
          function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
              return _operatorApprovals[owner][operator];
          }
          /**
           * @dev See {IERC721-transferFrom}.
           */
          function transferFrom(
              address from,
              address to,
              uint256 tokenId
          ) public virtual override {
              //solhint-disable-next-line max-line-length
              require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token owner nor approved");
              _safeTransfer(from, to, tokenId, data);
          }
          /**
           * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
           * are aware of the ERC721 protocol to prevent tokens from being forever locked.
           *
           * `data` is additional data, it has no specified format and it is sent in call to `to`.
           *
           * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
           * implement alternative mechanisms to perform token transfer, such as signature-based.
           *
           * Requirements:
           *
           * - `from` cannot be the zero address.
           * - `to` cannot be the zero address.
           * - `tokenId` token must exist and be owned by `from`.
           * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
           *
           * Emits a {Transfer} event.
           */
          function _safeTransfer(
              address from,
              address to,
              uint256 tokenId,
              bytes memory data
          ) internal virtual {
              _transfer(from, to, tokenId);
              require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
          }
          /**
           * @dev Returns whether `tokenId` exists.
           *
           * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
           *
           * Tokens start existing when they are minted (`_mint`),
           * and stop existing when they are burned (`_burn`).
           */
          function _exists(uint256 tokenId) internal view virtual returns (bool) {
              return _owners[tokenId] != address(0);
          }
          /**
           * @dev Returns whether `spender` is allowed to manage `tokenId`.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
              address owner = ERC721.ownerOf(tokenId);
              return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
          }
          /**
           * @dev Safely mints `tokenId` and transfers it to `to`.
           *
           * Requirements:
           *
           * - `tokenId` must not exist.
           * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
           *
           * Emits a {Transfer} event.
           */
          function _safeMint(address to, uint256 tokenId) internal virtual {
              _safeMint(to, tokenId, "");
          }
          /**
           * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
           * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
           */
          function _safeMint(
              address to,
              uint256 tokenId,
              bytes memory data
          ) internal virtual {
              _mint(to, tokenId);
              require(
                  _checkOnERC721Received(address(0), to, tokenId, data),
                  "ERC721: transfer to non ERC721Receiver implementer"
              );
          }
          /**
           * @dev Mints `tokenId` and transfers it to `to`.
           *
           * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
           *
           * Requirements:
           *
           * - `tokenId` must not exist.
           * - `to` cannot be the zero address.
           *
           * Emits a {Transfer} event.
           */
          function _mint(address to, uint256 tokenId) internal virtual {
              require(to != address(0), "ERC721: mint to the zero address");
              require(!_exists(tokenId), "ERC721: token already minted");
              _beforeTokenTransfer(address(0), to, tokenId);
              _balances[to] += 1;
              _owners[tokenId] = to;
              emit Transfer(address(0), to, tokenId);
              _afterTokenTransfer(address(0), to, tokenId);
          }
          /**
           * @dev Destroys `tokenId`.
           * The approval is cleared when the token is burned.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           *
           * Emits a {Transfer} event.
           */
          function _burn(uint256 tokenId) internal virtual {
              address owner = ERC721.ownerOf(tokenId);
              _beforeTokenTransfer(owner, address(0), tokenId);
              // Clear approvals
              _approve(address(0), tokenId);
              _balances[owner] -= 1;
              delete _owners[tokenId];
              emit Transfer(owner, address(0), tokenId);
              _afterTokenTransfer(owner, address(0), tokenId);
          }
          /**
           * @dev Transfers `tokenId` from `from` to `to`.
           *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
           *
           * Requirements:
           *
           * - `to` cannot be the zero address.
           * - `tokenId` token must be owned by `from`.
           *
           * Emits a {Transfer} event.
           */
          function _transfer(
              address from,
              address to,
              uint256 tokenId
          ) internal virtual {
              require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
              require(to != address(0), "ERC721: transfer to the zero address");
              _beforeTokenTransfer(from, to, tokenId);
              // Clear approvals from the previous owner
              _approve(address(0), tokenId);
              _balances[from] -= 1;
              _balances[to] += 1;
              _owners[tokenId] = to;
              emit Transfer(from, to, tokenId);
              _afterTokenTransfer(from, to, tokenId);
          }
          /**
           * @dev Approve `to` to operate on `tokenId`
           *
           * Emits an {Approval} event.
           */
          function _approve(address to, uint256 tokenId) internal virtual {
              _tokenApprovals[tokenId] = to;
              emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
          }
          /**
           * @dev Approve `operator` to operate on all of `owner` tokens
           *
           * Emits an {ApprovalForAll} event.
           */
          function _setApprovalForAll(
              address owner,
              address operator,
              bool approved
          ) internal virtual {
              require(owner != operator, "ERC721: approve to caller");
              _operatorApprovals[owner][operator] = approved;
              emit ApprovalForAll(owner, operator, approved);
          }
          /**
           * @dev Reverts if the `tokenId` has not been minted yet.
           */
          function _requireMinted(uint256 tokenId) internal view virtual {
              require(_exists(tokenId), "ERC721: invalid token ID");
          }
          /**
           * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
           * The call is not executed if the target address is not a contract.
           *
           * @param from address representing the previous owner of the given token ID
           * @param to target address that will receive the tokens
           * @param tokenId uint256 ID of the token to be transferred
           * @param data bytes optional data to send along with the call
           * @return bool whether the call correctly returned the expected magic value
           */
          function _checkOnERC721Received(
              address from,
              address to,
              uint256 tokenId,
              bytes memory data
          ) private returns (bool) {
              if (to.isContract()) {
                  try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                      return retval == IERC721Receiver.onERC721Received.selector;
                  } catch (bytes memory reason) {
                      if (reason.length == 0) {
                          revert("ERC721: transfer to non ERC721Receiver implementer");
                      } else {
                          /// @solidity memory-safe-assembly
                          assembly {
                              revert(add(32, reason), mload(reason))
                          }
                      }
                  }
              } else {
                  return true;
              }
          }
          /**
           * @dev Hook that is called before any token transfer. This includes minting
           * and burning.
           *
           * Calling conditions:
           *
           * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
           * transferred to `to`.
           * - When `from` is zero, `tokenId` will be minted for `to`.
           * - When `to` is zero, ``from``'s `tokenId` will be burned.
           * - `from` and `to` are never both zero.
           *
           * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
           */
          function _beforeTokenTransfer(
              address from,
              address to,
              uint256 tokenId
          ) internal virtual {}
          /**
           * @dev Hook that is called after any transfer of tokens. This includes
           * minting and burning.
           *
           * Calling conditions:
           *
           * - when `from` and `to` are both non-zero.
           * - `from` and `to` are never both zero.
           *
           * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
           */
          function _afterTokenTransfer(
              address from,
              address to,
              uint256 tokenId
          ) internal virtual {}
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev Provides information about the current execution context, including the
       * sender of the transaction and its data. While these are generally available
       * via msg.sender and msg.data, they should not be accessed in such a direct
       * manner, since when dealing with meta-transactions the account sending and
       * paying for execution may not be the actual sender (as far as an application
       * is concerned).
       *
       * This contract is only required for intermediate, library-like contracts.
       */
      abstract contract Context {
          function _msgSender() internal view virtual returns (address) {
              return msg.sender;
          }
          function _msgData() internal view virtual returns (bytes calldata) {
              return msg.data;
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
      pragma solidity ^0.8.0;
      import "./IERC165.sol";
      /**
       * @dev Implementation of the {IERC165} interface.
       *
       * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
       * for the additional interface id that will be supported. For example:
       *
       * ```solidity
       * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
       *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
       * }
       * ```
       *
       * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
       */
      abstract contract ERC165 is IERC165 {
          /**
           * @dev See {IERC165-supportsInterface}.
           */
          function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
              return interfaceId == type(IERC165).interfaceId;
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
      pragma solidity ^0.8.1;
      /**
       * @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
           * ====
           *
           * [IMPORTANT]
           * ====
           * You shouldn't rely on `isContract` to protect against flash loan attacks!
           *
           * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
           * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
           * constructor.
           * ====
           */
          function isContract(address account) internal view returns (bool) {
              // This method relies on extcodesize/address.code.length, which returns 0
              // for contracts in construction, since the code is only stored at the end
              // of the constructor execution.
              return account.code.length > 0;
          }
          /**
           * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
           * `recipient`, forwarding all available gas and reverting on errors.
           *
           * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
           * of certain opcodes, possibly making contracts go over the 2300 gas limit
           * imposed by `transfer`, making them unable to receive funds via
           * `transfer`. {sendValue} removes this limitation.
           *
           * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
           *
           * IMPORTANT: because control is transferred to `recipient`, care must be
           * taken to not create reentrancy vulnerabilities. Consider using
           * {ReentrancyGuard} or the
           * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
           */
          function sendValue(address payable recipient, uint256 amount) internal {
              require(address(this).balance >= amount, "Address: insufficient balance");
              (bool success, ) = recipient.call{value: amount}("");
              require(success, "Address: unable to send value, recipient may have reverted");
          }
          /**
           * @dev Performs a Solidity function call using a low level `call`. A
           * plain `call` is an unsafe replacement for a function call: use this
           * function instead.
           *
           * If `target` reverts with a revert reason, it is bubbled up by this
           * function (like regular Solidity function calls).
           *
           * Returns the raw returned data. To convert to the expected return value,
           * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
           *
           * Requirements:
           *
           * - `target` must be a contract.
           * - calling `target` with `data` must not revert.
           *
           * _Available since v3.1._
           */
          function functionCall(address target, bytes memory data) internal returns (bytes memory) {
              return functionCall(target, data, "Address: low-level call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
           * `errorMessage` as a fallback revert reason when `target` reverts.
           *
           * _Available since v3.1._
           */
          function functionCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal returns (bytes memory) {
              return functionCallWithValue(target, data, 0, errorMessage);
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
           * but also transferring `value` wei to `target`.
           *
           * Requirements:
           *
           * - the calling contract must have an ETH balance of at least `value`.
           * - the called Solidity function must be `payable`.
           *
           * _Available since v3.1._
           */
          function functionCallWithValue(
              address target,
              bytes memory data,
              uint256 value
          ) internal returns (bytes memory) {
              return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
          }
          /**
           * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
           * with `errorMessage` as a fallback revert reason when `target` reverts.
           *
           * _Available since v3.1._
           */
          function functionCallWithValue(
              address target,
              bytes memory data,
              uint256 value,
              string memory errorMessage
          ) internal returns (bytes memory) {
              require(address(this).balance >= value, "Address: insufficient balance for call");
              require(isContract(target), "Address: call to non-contract");
              (bool success, bytes memory returndata) = target.call{value: value}(data);
              return verifyCallResult(success, returndata, errorMessage);
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
           * but performing a static call.
           *
           * _Available since v3.3._
           */
          function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
              return functionStaticCall(target, data, "Address: low-level static call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
           * but performing a static call.
           *
           * _Available since v3.3._
           */
          function functionStaticCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal view returns (bytes memory) {
              require(isContract(target), "Address: static call to non-contract");
              (bool success, bytes memory returndata) = target.staticcall(data);
              return verifyCallResult(success, returndata, errorMessage);
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
           * but performing a delegate call.
           *
           * _Available since v3.4._
           */
          function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
              return functionDelegateCall(target, data, "Address: low-level delegate call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
           * but performing a delegate call.
           *
           * _Available since v3.4._
           */
          function functionDelegateCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal returns (bytes memory) {
              require(isContract(target), "Address: delegate call to non-contract");
              (bool success, bytes memory returndata) = target.delegatecall(data);
              return verifyCallResult(success, returndata, errorMessage);
          }
          /**
           * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
           * revert reason using the provided one.
           *
           * _Available since v4.3._
           */
          function verifyCallResult(
              bool success,
              bytes memory returndata,
              string memory errorMessage
          ) internal pure returns (bytes memory) {
              if (success) {
                  return returndata;
              } else {
                  // Look for revert reason and bubble it up if present
                  if (returndata.length > 0) {
                      // The easiest way to bubble the revert reason is using memory via assembly
                      /// @solidity memory-safe-assembly
                      assembly {
                          let returndata_size := mload(returndata)
                          revert(add(32, returndata), returndata_size)
                      }
                  } else {
                      revert(errorMessage);
                  }
              }
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
      pragma solidity ^0.8.0;
      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);
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
      pragma solidity ^0.8.0;
      /**
       * @title ERC721 token receiver interface
       * @dev Interface for any contract that wants to support safeTransfers
       * from ERC721 asset contracts.
       */
      interface IERC721Receiver {
          /**
           * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
           * by `operator` from `from`, this function is called.
           *
           * It must return its Solidity selector to confirm the token transfer.
           * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
           *
           * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
           */
          function onERC721Received(
              address operator,
              address from,
              uint256 tokenId,
              bytes calldata data
          ) external returns (bytes4);
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
      pragma solidity ^0.8.0;
      import "../../utils/introspection/IERC165.sol";
      /**
       * @dev Required interface of an ERC721 compliant contract.
       */
      interface IERC721 is IERC165 {
          /**
           * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
           */
          event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
          /**
           * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
           */
          event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
          /**
           * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
           */
          event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
          /**
           * @dev Returns the number of tokens in ``owner``'s account.
           */
          function balanceOf(address owner) external view returns (uint256 balance);
          /**
           * @dev Returns the owner of the `tokenId` token.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function ownerOf(uint256 tokenId) external view returns (address owner);
          /**
           * @dev Safely transfers `tokenId` token from `from` to `to`.
           *
           * 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;
          /**
           * @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 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 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 the account approved for `tokenId` token.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function getApproved(uint256 tokenId) external view returns (address operator);
          /**
           * @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);
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev Interface of the ERC165 standard, as defined in the
       * https://eips.ethereum.org/EIPS/eip-165[EIP].
       *
       * Implementers can declare support of contract interfaces, which can then be
       * queried by others ({ERC165Checker}).
       *
       * For an implementation, see {ERC165}.
       */
      interface IERC165 {
          /**
           * @dev Returns true if this contract implements the interface defined by
           * `interfaceId`. See the corresponding
           * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
           * to learn more about how these ids are created.
           *
           * This function call must use less than 30 000 gas.
           */
          function supportsInterface(bytes4 interfaceId) external view returns (bool);
      }
      

      File 3 of 3: Rbrc721BridgeV1
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.0) (proxy/utils/Initializable.sol)
      pragma solidity ^0.8.2;
      import "../../utils/AddressUpgradeable.sol";
      /**
       * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
       * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
       * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
       * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
       *
       * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
       * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
       * case an upgrade adds a module that needs to be initialized.
       *
       * For example:
       *
       * [.hljs-theme-light.nopadding]
       * ```
       * contract MyToken is ERC20Upgradeable {
       *     function initialize() initializer public {
       *         __ERC20_init("MyToken", "MTK");
       *     }
       * }
       * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
       *     function initializeV2() reinitializer(2) public {
       *         __ERC20Permit_init("MyToken");
       *     }
       * }
       * ```
       *
       * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
       * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
       *
       * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
       * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
       *
       * [CAUTION]
       * ====
       * Avoid leaving a contract uninitialized.
       *
       * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
       * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
       * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
       *
       * [.hljs-theme-light.nopadding]
       * ```
       * /// @custom:oz-upgrades-unsafe-allow constructor
       * constructor() {
       *     _disableInitializers();
       * }
       * ```
       * ====
       */
      abstract contract Initializable {
          /**
           * @dev Indicates that the contract has been initialized.
           * @custom:oz-retyped-from bool
           */
          uint8 private _initialized;
          /**
           * @dev Indicates that the contract is in the process of being initialized.
           */
          bool private _initializing;
          /**
           * @dev Triggered when the contract has been initialized or reinitialized.
           */
          event Initialized(uint8 version);
          /**
           * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
           * `onlyInitializing` functions can be used to initialize parent contracts.
           *
           * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
           * constructor.
           *
           * Emits an {Initialized} event.
           */
          modifier initializer() {
              bool isTopLevelCall = !_initializing;
              require(
                  (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
                  "Initializable: contract is already initialized"
              );
              _initialized = 1;
              if (isTopLevelCall) {
                  _initializing = true;
              }
              _;
              if (isTopLevelCall) {
                  _initializing = false;
                  emit Initialized(1);
              }
          }
          /**
           * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
           * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
           * used to initialize parent contracts.
           *
           * A reinitializer may be used after the original initialization step. This is essential to configure modules that
           * are added through upgrades and that require initialization.
           *
           * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
           * cannot be nested. If one is invoked in the context of another, execution will revert.
           *
           * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
           * a contract, executing them in the right order is up to the developer or operator.
           *
           * WARNING: setting the version to 255 will prevent any future reinitialization.
           *
           * Emits an {Initialized} event.
           */
          modifier reinitializer(uint8 version) {
              require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
              _initialized = version;
              _initializing = true;
              _;
              _initializing = false;
              emit Initialized(version);
          }
          /**
           * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
           * {initializer} and {reinitializer} modifiers, directly or indirectly.
           */
          modifier onlyInitializing() {
              require(_initializing, "Initializable: contract is not initializing");
              _;
          }
          /**
           * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
           * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
           * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
           * through proxies.
           *
           * Emits an {Initialized} event the first time it is successfully executed.
           */
          function _disableInitializers() internal virtual {
              require(!_initializing, "Initializable: contract is initializing");
              if (_initialized < type(uint8).max) {
                  _initialized = type(uint8).max;
                  emit Initialized(type(uint8).max);
              }
          }
          /**
           * @dev Internal function that returns the initialized version. Returns `_initialized`
           */
          function _getInitializedVersion() internal view returns (uint8) {
              return _initialized;
          }
          /**
           * @dev Internal function that returns the initialized version. Returns `_initializing`
           */
          function _isInitializing() internal view returns (bool) {
              return _initializing;
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
      pragma solidity ^0.8.0;
      import "../proxy/utils/Initializable.sol";
      /**
       * @dev Contract module that helps prevent reentrant calls to a function.
       *
       * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
       * available, which can be applied to functions to make sure there are no nested
       * (reentrant) calls to them.
       *
       * Note that because there is a single `nonReentrant` guard, functions marked as
       * `nonReentrant` may not call one another. This can be worked around by making
       * those functions `private`, and then adding `external` `nonReentrant` entry
       * points to them.
       *
       * TIP: If you would like to learn more about reentrancy and alternative ways
       * to protect against it, check out our blog post
       * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
       */
      abstract contract ReentrancyGuardUpgradeable is Initializable {
          // Booleans are more expensive than uint256 or any type that takes up a full
          // word because each write operation emits an extra SLOAD to first read the
          // slot's contents, replace the bits taken up by the boolean, and then write
          // back. This is the compiler's defense against contract upgrades and
          // pointer aliasing, and it cannot be disabled.
          // The values being non-zero value makes deployment a bit more expensive,
          // but in exchange the refund on every call to nonReentrant will be lower in
          // amount. Since refunds are capped to a percentage of the total
          // transaction's gas, it is best to keep them low in cases like this one, to
          // increase the likelihood of the full refund coming into effect.
          uint256 private constant _NOT_ENTERED = 1;
          uint256 private constant _ENTERED = 2;
          uint256 private _status;
          function __ReentrancyGuard_init() internal onlyInitializing {
              __ReentrancyGuard_init_unchained();
          }
          function __ReentrancyGuard_init_unchained() internal onlyInitializing {
              _status = _NOT_ENTERED;
          }
          /**
           * @dev Prevents a contract from calling itself, directly or indirectly.
           * Calling a `nonReentrant` function from another `nonReentrant`
           * function is not supported. It is possible to prevent this from happening
           * by making the `nonReentrant` function external, and making it call a
           * `private` function that does the actual work.
           */
          modifier nonReentrant() {
              _nonReentrantBefore();
              _;
              _nonReentrantAfter();
          }
          function _nonReentrantBefore() private {
              // On the first call to nonReentrant, _status will be _NOT_ENTERED
              require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
              // Any calls to nonReentrant after this point will fail
              _status = _ENTERED;
          }
          function _nonReentrantAfter() private {
              // By storing the original value once again, a refund is triggered (see
              // https://eips.ethereum.org/EIPS/eip-2200)
              _status = _NOT_ENTERED;
          }
          /**
           * @dev This empty reserved space is put in place to allow future versions to add new
           * variables without shifting down storage in the inheritance chain.
           * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
           */
          uint256[49] private __gap;
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
      pragma solidity ^0.8.1;
      /**
       * @dev Collection of functions related to the address type
       */
      library AddressUpgradeable {
          /**
           * @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
           * ====
           *
           * [IMPORTANT]
           * ====
           * You shouldn't rely on `isContract` to protect against flash loan attacks!
           *
           * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
           * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
           * constructor.
           * ====
           */
          function isContract(address account) internal view returns (bool) {
              // This method relies on extcodesize/address.code.length, which returns 0
              // for contracts in construction, since the code is only stored at the end
              // of the constructor execution.
              return account.code.length > 0;
          }
          /**
           * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
           * `recipient`, forwarding all available gas and reverting on errors.
           *
           * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
           * of certain opcodes, possibly making contracts go over the 2300 gas limit
           * imposed by `transfer`, making them unable to receive funds via
           * `transfer`. {sendValue} removes this limitation.
           *
           * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
           *
           * IMPORTANT: because control is transferred to `recipient`, care must be
           * taken to not create reentrancy vulnerabilities. Consider using
           * {ReentrancyGuard} or the
           * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
           */
          function sendValue(address payable recipient, uint256 amount) internal {
              require(address(this).balance >= amount, "Address: insufficient balance");
              (bool success, ) = recipient.call{value: amount}("");
              require(success, "Address: unable to send value, recipient may have reverted");
          }
          /**
           * @dev Performs a Solidity function call using a low level `call`. A
           * plain `call` is an unsafe replacement for a function call: use this
           * function instead.
           *
           * If `target` reverts with a revert reason, it is bubbled up by this
           * function (like regular Solidity function calls).
           *
           * Returns the raw returned data. To convert to the expected return value,
           * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
           *
           * Requirements:
           *
           * - `target` must be a contract.
           * - calling `target` with `data` must not revert.
           *
           * _Available since v3.1._
           */
          function functionCall(address target, bytes memory data) internal returns (bytes memory) {
              return functionCallWithValue(target, data, 0, "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");
              (bool success, bytes memory returndata) = target.call{value: value}(data);
              return verifyCallResultFromTarget(target, success, returndata, errorMessage);
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
           * but performing a static call.
           *
           * _Available since v3.3._
           */
          function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
              return functionStaticCall(target, data, "Address: low-level static call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
           * but performing a static call.
           *
           * _Available since v3.3._
           */
          function functionStaticCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal view returns (bytes memory) {
              (bool success, bytes memory returndata) = target.staticcall(data);
              return verifyCallResultFromTarget(target, success, returndata, errorMessage);
          }
          /**
           * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
           * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
           *
           * _Available since v4.8._
           */
          function verifyCallResultFromTarget(
              address target,
              bool success,
              bytes memory returndata,
              string memory errorMessage
          ) internal view returns (bytes memory) {
              if (success) {
                  if (returndata.length == 0) {
                      // only check isContract if the call was successful and the return data is empty
                      // otherwise we already know that it was a contract
                      require(isContract(target), "Address: call to non-contract");
                  }
                  return returndata;
              } else {
                  _revert(returndata, errorMessage);
              }
          }
          /**
           * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
           * revert reason or using the provided one.
           *
           * _Available since v4.3._
           */
          function verifyCallResult(
              bool success,
              bytes memory returndata,
              string memory errorMessage
          ) internal pure returns (bytes memory) {
              if (success) {
                  return returndata;
              } else {
                  _revert(returndata, errorMessage);
              }
          }
          function _revert(bytes memory returndata, string memory errorMessage) private pure {
              // 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
                  /// @solidity memory-safe-assembly
                  assembly {
                      let returndata_size := mload(returndata)
                      revert(add(32, returndata), returndata_size)
                  }
              } else {
                  revert(errorMessage);
              }
          }
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)
      pragma solidity ^0.8.0;
      import "../../utils/introspection/IERC165.sol";
      /**
       * @dev Required interface of an ERC721 compliant contract.
       */
      interface IERC721 is IERC165 {
          /**
           * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
           */
          event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
          /**
           * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
           */
          event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
          /**
           * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
           */
          event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
          /**
           * @dev Returns the number of tokens in ``owner``'s account.
           */
          function balanceOf(address owner) external view returns (uint256 balance);
          /**
           * @dev Returns the owner of the `tokenId` token.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function ownerOf(uint256 tokenId) external view returns (address owner);
          /**
           * @dev Safely transfers `tokenId` token from `from` to `to`.
           *
           * 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;
          /**
           * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
           * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
           * understand this adds an external call which potentially creates a reentrancy vulnerability.
           *
           * 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 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 the account approved for `tokenId` token.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function getApproved(uint256 tokenId) external view returns (address operator);
          /**
           * @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);
      }
      // SPDX-License-Identifier: MIT
      // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev Interface of the ERC165 standard, as defined in the
       * https://eips.ethereum.org/EIPS/eip-165[EIP].
       *
       * Implementers can declare support of contract interfaces, which can then be
       * queried by others ({ERC165Checker}).
       *
       * For an implementation, see {ERC165}.
       */
      interface IERC165 {
          /**
           * @dev Returns true if this contract implements the interface defined by
           * `interfaceId`. See the corresponding
           * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
           * to learn more about how these ids are created.
           *
           * This function call must use less than 30 000 gas.
           */
          function supportsInterface(bytes4 interfaceId) external view returns (bool);
      }
      // SPDX-License-Identifier: Unlicense
      pragma solidity ^0.8.0;
      import { IERC721A } from "lib/erc721a/contracts/IERC721A.sol";
      import {
          ReentrancyGuardUpgradeable
      } from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
      import { IERC721 } from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
      /*                                                                                                                   
      ^^^^^^^^^^^^^^^^^^^^^^^^^^7JJJJJJJJJJ!:^^^^^^^^^^^^^^^^^^^^^^^^^~~~~~~~~~~~^^^^!7??????????????!~^^^^^^^^^^^^^^^^^^^^^^^
      ^^^^^^^^^^^^^^^^^^^^^^^^^~7JJJJJJJJJ7^^^^^^^^^^^^^^^^^^^^^^^^^~~~~~~~~~~~~~^^^^~7??????????????7~^^^^^^^^^^^^^^^^^^^^^^^
      ^^^^^^^^^^^^^^^^^^^^^^^^^7JJJJJJJJJJ!:^^^^^^^^^^^^^^^^^^^^^~~~~~~~~~~~^^^~^^^^^^7???????????????7~^^^^^^^^^:^^^^^^^^^^^^
      ^^^^^:^^~~~~~~~~~^^^^^^:!?JJJJJJJJJ?!:^^^^~~!!!7JJJJ???????!~~~~~~~~^^^^^7?!!!!!7???????????????7!^^^^^^^777JY7J!:^^^^^^
      ^^^~JJ7JJ777777?5^^^^^^^7JJJJJJJJJJ7!777?JYYYYYYYYYYYJ?JJ7~~~~~~~~^^^^^^^JYYYYJJ?????????????????7~^^^^^^^^^^^.JJ:^^^^^^
      ^^^:?5!:^^^^^^:~P7^^^^^!JJJJJJJJJYJYYYYYYYYJJJJJJJJJJJ??!~~~~~~~^^^^^^^^^YYYYYYYYYYYYJJJJ????????7~^^^^^^^^^^:.?J:^^^^^^
      ^^^^^JY:^^^^^^^:75^^^:!?JJJJYYYYYYYYYYYYJJJJJJJ??????7!~~~~~~^^^^^^^^^^^^7YYYYJYYYYYYYYYJJJJJJ????7~^^^^^^^^!?7YJ:^^^^^^
      ^^^^.?Y:^^^^^:^:!5:^!7?YYYYYYYYYYYYYYYYYYYYYYYYJ??JJ?!!~~!~~~~~^^^^^^~~^^:!YYYJJJJYYYYYYYYYYYYJJJJ?7~~~^^^:!5PPP?:^^^^^^
      ^^7YY5P7:^^^!JYJY57?YYYYYYYYJJYYYYYYYYYYJJJJJJJJJYYYYJJ??JJ?JJJ??77??JYJ??YJJYYYYYYYYYYYYJJJYYYYYYYYJJ?77~^^~77!^^^^^^^^
      ^^?PPPY~^^^^JP5YYYYYYYYYYYYYYYYYYYYYYJJJJJJJJJYYYYYYYYYJJJYYYJJYYYYYYYYYYYYYYYYYYJYJYYYYYYYYYYYJJJYYYYYJJ?7~^:^^^^^^^^^^
      ^^^~~~^^^^^^~JYYYYYYYYJYYYYYYYYYYYJJJJJYYYYYYYYYYYYYYYYYYYYYYYJJJ?7777777777?7?JYJYYYYYYYYYYYYYYYYYJYYYYYYJJ7~^^^^^^^^^^
      ^^^^^^^^^^!?JYYYYYYYJYYYYYYYYYYJJJYYYYYYYYYYYYYYYYYYYJJJ???7!!~~~~~~~~~~~~~~~~~~~~!77?JJJJYYYYYYYYYYYYJYYYYYJ?~^^^^^^^^^
      ^^^^^^^~!?JYYYYYJJJYYYYYYYYYYJJYYYYYYYYYYYYYYYYYYYJ7!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!?JJYYYYYYYYYYYJJJYYYY?~^^^^^^^^
      ^^^^^~7?JYYYYYYJJYYYYYYYYYJJYYYYYYYYYYYYYYYYYYJ?7~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!?JYYYYYYYYYYYJJYYYYY!^^^^^^^
      ^^^^~7JJYYYYYJYYYYYYYYYYYJJYYYYYYYYYYYYYYYYJ7!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!?YYYYYYYYYYJJYYYYY?~^^^^^
      ^^^~7?JYYYYYJJYYYYYYYYYJJYYYYYYYYYYYYYYYJ7~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!?YYYYYYYYYYJYYYYY?!^^^^
      ^^^!?JYYYYYJYYYYYYYYYYJJYYYYYYYYYYYYYYJ7~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~?YYYYYYYYYJJYYYYYJ?!^^
      ^^~?JYYYYYJYYYYYYYYYYJJYYYYYYYYYYYYYJ7~~~~~~~~~~~~~~~~~~~~~~~~~~~^JP7~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~7JYYYYYYYYYYYYYYYJ?!^
      ^^~?JYYYYJYYYYYYYYYYJJYYYYYYYYYYYY?!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~:JBBP?~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!JYYYYYYYYJYYYYYYJ?7
      ^^~JYYYYYJYYYYYYYYYYJYYYYYYYYYYYY?~~~~~~~~~~~~~~~~~^7!^~~~~~~~~~^7GBBBBP!^~~~~~~~~~~~~~~~~^~~~~~~~~~~!JYYYYYYYJJYYYYYJ??
      ^^?YYYYYJYYYYYYYYYYJJYYYYYYYYYYJ!~~~~~~~~~~~~~~~~~~:YB?^^~~~~~~~:JBBBBBBGJ!^~~~~~~~~~~~~~!?~~~~~~~~~~~?YYYYYYYYYYYYYYYJ?
      ^7JYYYYYJJYYYYYYYYYJYYYYYYYYYYJ!~~~~~~~~~~~~~~~~~~^7PBB57~~~~~~^!PBBBBBBBBGY^~~~~~~~~~^!PGGP!^~~~~~!Y55YYYYYYYYJJYYYYYJ?
      ~?YYYYYYJJYYYYYYYYYYYYYYYYYYYJ~~~~~~~~~~~~~~~~~~~~:JBBBBBJ^~~~~^?BBBBBBBBBBBY^^~~~~~^!YGGGGBP7~~~~^~:.5PYYYYYYYJJYYYYYJ?
      ~?YYYYYYJJYYYYYYYYJYYYYYYYYY7~~~^~~~~~~~~~~~~~~~~^~5BBBBBBJ~^~~:?BBBBBBBBBBBBP7~~^^~7GBBGGGYY?:^^^:.~75P5YYYYYYJJYYYYYJ?
      ~?YYYYYYJJYYYYYYYYJYYYYYYYJ!~~^!J!~^^~~~~~~~~~~~~7PBBBBBBBBGJ!^!5BBBBBBBBBBBBBBGPJJYGY??^::   :!J?YPPGPPPYYYYYYJJYYYYYJ?
      ^~YYYYYYJJYYYYYYYYJYYYYYYY7~~~^!GBGYJ~^~~~~~~^!5GBBBBBGPPGPPBP?YGBBBBBBBBBBBBBBBBP!:.     ^!Y5P55GGGGPPPPYYYYYYJJYYYYYJ?
      ^~JYYYYYYJYYYYYYYYJYYYYYY7~~~~~^7BBBBGJ!^~~~~^!BBBB5!!^.:P~^P^  :~~?55GBBBBBBBBBBG5555555PGPY!^. :~?PPPPPYYYYYYYYYYYYJ??
      ^~?JYYYYYJYYYYYYYYJYYYYYY!~~~~~^7BBBBBBGPY!^^^7BBBBGPPPPPGJJG~.:.     :^^?YGBBBBBBBBBBBBGY?Y^    :. ^5GPPYYYYYJJYYYYYJ?~
      ^^!?JYYYYJYYYYYYYYJYYYYY7~~~~~~^7BBBBBBBBBG5JYGBBBBBBBBBBBBBBGGGPJJ7^^.   :GBBBBBBBBBBGJ^.J&&?   ~7: !PPPYYYYYJJYYYYJ?7^
      ^^~?JYYYYYJYYYYYYYJYYYYY7~~~~~~^7BBBBBBBBBBBBBBBBBBBBBBP55PBBBBBB##BBBPY5Y5BBBBBBBBBBP!    ^7!!  ~?^ ^5P5YYYJYJYYYYJ?7~^
      ^^^!?JYYYYYJYYYYYYYJYYYY7~^~~~~^7BBBBBBBBBBBBBBBBBBBBP7.   ^^^~^7YYPBBBBBBBBBBBBBBBBB7 !~.  ^5Y.:~^:JGPPYYYYYJJYYYJ?7~^^
      ^^^^7?JYYYYYJYYYYYJJYYYYJJ7^^~^7GBBBBBBBBBBBBBBBBBB5!.:~: ~YY~     .:7JPBBBBBBBBBBBBY: !?7~...!?^ .JGGP5YYYYYJJYYJJ7^^^^
      ^^^^~J?JYYYYJJYYYYYJJYYYYYG5775BBBBBBBBBBBBBBBBBGY~. .~77^?BY7. 7Y   ^~^!?PBBBBBBBBBB7 ^!7?7777~ :YGGPP5YYYYJJYYJJ?~^^^^
      ^^^^^~??JYYYYJJYYYYYJJYYYJ5BBBBBBBBBBBBBBBBBBBBBP7^  .^7?7^.  :YG!   !?~^ ^GBBBBBBBBBG~ .^^^^^: 7PGGGP5YYYYYJJJJ?!^^^^^^
      ^^^^^^7J?JYYYYYJYYYYYJYYYYJ5BBBBBBBBBBBBBBBBBBBBBBB5!. :!7?~. .~~:::!77^.:?BBBBBBBBBBBY^  .^777JGGGGP5YYYYYJJJ??7~^^^^^^
      ^^^^:!JJ???JYYYYJYYYYYJYYYJ?YGBBBBBBBBBBBBBBBBBBBBBBB5!. :~77~^.!GP77!^.~PBBBBBBBBBBBBBGYYGGBBBGGGGP5YYYYYJ??????7~^^^^^
      ^^^^~7JJJJ??JJYYYJYYYYJJYYYY?JPBBBBBBBBBBBBBBBBBBBBBBBBP7. .~!!7!!!~^: .PBBBBBBBBBBBBBBBBBBGGGGGGGP5YYYYJJ?J??????7^^^^^
      ^^^^~JJJJ?!7??JJYYYJYYYYJYYYYJ?YPBBBBBBBBBBBBBBBBBBBBBBBBG?::::::::::..7GBBBBBBBBBBGGBBBBGGGGGGGP5YYYYYJJ?7???????7~^^^^
      ^^:~?JJJJ7~~~!??JJYYYJYYYYJYYYJ??YPGBBBBBBBBBBBBBBBBBBBBBBBGGGGGGGGGGGGBBBBBBBBBGY~..!PBBGGGGGP5YYYYYJJJ?!~!???????7~^^^
      ^^:~JJJJ?!~~~~~!??JJYYYJYYYJYYYYJ??J5GBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBGJ^   .JBBBBGPP5YYYYYJJJ?77!~~!???????!^^^
      ^:~7JJJJ7~~~~~~~~!!!?JJYYJYYJJYYYYJ??JY5GBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBGGJ:   :?GBBBPP5YYYYYYJ??!!~~??7~~7??????7!^^
      ~~~?YYYJ7~~~~~~~~~~~~!7?JJJJJJJJJYYYYJJ?JJ5GGBBBBBBBBBBBBBBBBBBBBBBBBBBBBBG?^..^7JGBBGP5YYYYYJJ?7!~~~~~~?????????????7^^
      !!?JYYY?~~~~~~~~~~~~~~~~!???JJJJJJJYYYYYJJ?JJY5GGGBBBBBBBBBBBBBBBBBBBBBBBBBBPPPPGPP5YYYYYJJ???7~~~~~~~~~?????????????7!:
      ^~?YYYY7~~~~~~~~~~~~~!?7^!!!!?77????JJYYYYYYJJJJJJYYY5PPPPPPPPPPPPPPPPPPPPP5P55PPPPPPPPYYJ~~!??7!~~~7!~~7????????????7^.
        ^?JJ7~~~~~~~~~~~~~~YGP55Y!..^~~~^!????JJJYYYJJYYJJJYYYYJJJJJJJJJJ?????YYPPGGGBBB####BBBBP555PPJ~~~Y5?7777777777777!:.:
         :~!!~~~~~~~~~~~~~?GP555J^  ^~~:  ....^~~~~!?JJJJJJJJJJ?????JJJJJJJJYPGG#BB#BBBG###B##GGB#BGG55?~~YPJ7777777777!!^.   
      ~~^^^~~~~~^~~~~~~~~~!!~~~~?Y5Y~~!Y5YYY5Y?77^::~~~~~~~~~~7Y55555PPPPPPPGGBBGBBGGB#BGBGBGGB#BBBGGPY!^^~!~^^!!!!~^^^:......
      !!!!!~~~^. ^~~~~~~^.     :YB#B?~?#####P7^:^::::::::::..:~!!!!!!!!!~JGGB#GGBBGGGGBBBG##BGBBGGGGBBG?:.   .::::::::::::::::
      !!!!~~~^...^~~~~~^:......7PBBBBPGBBB5!::^^^::::::::::::::.....:..::?GB#GG#######BB######B######BGP7::PJ^::::::::::::::::
      ....^7JYYYY!~~~~7YYYYYYYJ~::::::::^^:^J#&#!.^55Y!~^!!^~J5YYY5Y!5Y!~JGB#GG#######################GG5~:?J?^.  ............
         :?5555557~~7J555555557.      .:::~G@#Y~:^G&#B#B5&&YP#B##B##J&##BBGB#GG########BGBBBBBB######BGGG7::::::.             
      . :!JYYYYYY!~!YYYYYYYYYJ~..::..::^.?#&@&B7 ^&BGGG#@##YP##@&GP!?@#5G#GG#BGG#####BGBBB###BGGG####BGG?^::::::^:.           
      ~~^..........:........:7PBBP7^:^:::^~G@G7^.^#BB&#GBB#YP#B###&B?@G .PBPB#BGB#######BGBBBG##B###BG5!^:::::::::::::::::::::
      !^.                   :YBP?^:::::::7#&J.:::^#BB&##GG#YP###BBG7?@B!~P#GGB##GGBBBGGPGGGGGBB####GPJ~:::::::::::::::::::::::
      ~:. ..................7P5~::::::::!P5~:::^:^##&B7B#G&5P##BGGB7?&###&#&YG####BGPPPGBBBBBBBBGGGP7:::::::::::::::::::::::::
      !?JJJJJJJJJJJJJJJJJJJ7~^:::::::::::::::::::^5G#!.7P5P?J#&&&GP57P55PPJ~^Y5Y55YPPPPGBBBBBBBBBG?~:::::::::::::::::::::.....
      ██████  ██████  ██████   ██████       ███████ ██████   ██                                                      
      ██   ██ ██   ██ ██   ██ ██                 ██      ██ ███                                                      
      ██████  ██████  ██████  ██      █████     ██   █████   ██                                                      
      ██   ██ ██   ██ ██   ██ ██               ██   ██       ██                                                      
      ██   ██ ██████  ██   ██  ██████          ██   ███████  ██                                                      
                                                                                                                     
                                                                                                                     
      ██████  ██    ██ ██████  ███    ██       ████████  ██████        ██████  ██████  ██ ██████   ██████  ███████   
      ██   ██ ██    ██ ██   ██ ████   ██          ██    ██    ██       ██   ██ ██   ██ ██ ██   ██ ██       ██        
      ██████  ██    ██ ██████  ██ ██  ██ █████    ██    ██    ██ █████ ██████  ██████  ██ ██   ██ ██   ███ █████     
      ██   ██ ██    ██ ██   ██ ██  ██ ██          ██    ██    ██       ██   ██ ██   ██ ██ ██   ██ ██    ██ ██        
      ██████   ██████  ██   ██ ██   ████          ██     ██████        ██████  ██   ██ ██ ██████   ██████  ███████   
                                                                                                                     
                                                                                                                     
      ███    ██ ███████ ████████       ████████  ██████         ██████  ██████  ██████  ██ ███    ██  █████  ██      
      ████   ██ ██         ██             ██    ██    ██       ██    ██ ██   ██ ██   ██ ██ ████   ██ ██   ██ ██      
      ██ ██  ██ █████      ██    █████    ██    ██    ██ █████ ██    ██ ██████  ██   ██ ██ ██ ██  ██ ███████ ██      
      ██  ██ ██ ██         ██             ██    ██    ██       ██    ██ ██   ██ ██   ██ ██ ██  ██ ██ ██   ██ ██      
      ██   ████ ██         ██             ██     ██████         ██████  ██   ██ ██████  ██ ██   ████ ██   ██ ███████ 
      RBRC-721 Provides an alternative mechanism to teleburning ETH NFTs for inscription on the BTC Blockchain.
      It relies on the use of a BTC-ETH Oracle to inscribe burned NFTs as ordinals on the BTC Blockchain.
      RBRC-721 bridged oridnals are fully inscribed on BTC with no dependency on IPFS or other offchain services.
      Simply burn your NFT on the Ethereum network to claim your ordinal on the BTC network.
      */
      /// @dev Only supports contracts which implement IERC721BurnableTotalSupply
      interface IERC721BurnableTotalSupply is IERC721 {
          function totalSupply() external view returns (uint256);
          function burn(uint256 tokenId) external;
      }
      /// @notice RBRC-721 Burn-to-Bridge Contract.
      /// @author 10xdegen
      contract Rbrc721BridgeV1 is ReentrancyGuardUpgradeable {
          /*//////////////////////////////////////////////////////////////
                                      STRUCTS
          //////////////////////////////////////////////////////////////*/
          struct BridgedIds {
              uint256[] ids;
              string btcAddress;
          }
          struct BridgingConfig {
              bool bridgingEnabled;
              bool usesBurn;
          }
          /*//////////////////////////////////////////////////////////////
                                      ADDRESSES
          //////////////////////////////////////////////////////////////*/
          /// @notice The address of the operator.
          address public operator;
          /*//////////////////////////////////////////////////////////////
                                  Bridging State
          //////////////////////////////////////////////////////////////*/
          /// @notice collection => bridging enabled
          mapping(address => BridgingConfig) public bridgingConfigs;
          /// @notice on-chain accounting for bridged nfts
          mapping(address => BridgedIds[]) public bridgedIds;
          /*//////////////////////////////////////////////////////////////
                                  EVENTS
          //////////////////////////////////////////////////////////////*/
          /// @notice Emitted when a user burns to bridge their ordinal.
          event OrdinalsBridged(address indexed collectionAddr, uint256[] ids, string btcAddress);
          /*//////////////////////////////////////////////////////////////
                                       MODIFIERS
          //////////////////////////////////////////////////////////////*/
          /// @notice Only the operator can call this function.
          modifier onlyOperator() {
              require(msg.sender == operator, "Rbrc721Burn: caller is not the operator");
              _;
          }
          /*//////////////////////////////////////////////////////////////
                                     CONSTUCTOR
          //////////////////////////////////////////////////////////////*/
          /// @notice Initialize the Rbrc721Burn.
          function initialize() external initializer {
              __ReentrancyGuard_init();
              operator = msg.sender;
          }
          /*//////////////////////////////////////////////////////////////
                                     ADMIN
          //////////////////////////////////////////////////////////////*/
          /// @notice Set the operator address.
          /// @dev Ownership and Operatorship are designed to be revoked for the contract, for full decentralization.
          /// @dev The operator is the only address that can manage the admin functions, other than the owner.
          /// @dev The operator can be set to the zero address, to disable admin functions.
          function setOperator(address _operator) external onlyOperator {
              operator = _operator;
          }
          /// @notice Enables or disables bridging for a collection.
          function setBridgingConfig(address collectionAddr, BridgingConfig memory _config) external onlyOperator {
              bridgingConfigs[collectionAddr] = _config;
          }
          /// @notice fetches all the bridged ids for a collection
          function getBridgedIds(address collectionAddr) external view returns (BridgedIds[] memory) {
              return bridgedIds[collectionAddr];
          }
          /*//////////////////////////////////////////////////////////////
                                     ORDINAL BURN-TO-CLAIM
          //////////////////////////////////////////////////////////////*/
          /**
           * @notice Burn an ETH nft to have the corresponding BTC inscription
           *  sent to the user's wallet via an off-chain oracle.
           */
          function burnToBridge(address collectionAddr, uint256[] calldata ids, string calldata btcAddress) external {
              BridgingConfig memory config = bridgingConfigs[collectionAddr];
              require(config.bridgingEnabled, "Rbrc721Burn: Burning not enabled for collection");
              require(ids.length > 0, "Rbrc721Burn: No ids to claim");
              if (config.usesBurn) {
                  _burnToBridge(collectionAddr, ids, btcAddress);
              } else {
                  _transferToDead(collectionAddr, ids, btcAddress);
              }
              // IERC721BurnableTotalSupply collection = IERC721BurnableTotalSupply(collectionAddr);
              // for (uint256 i = 0; i < ids.length; i++) {
              //     uint256 id = ids[i];
              //     // require caller is owner of token (prevents hijacking approvals)
              //     require(collection.ownerOf(id) == msg.sender, "Rbrc721Burn: Caller is not owner of token");
              //     collection.burn(id);
              // }
              bridgedIds[collectionAddr].push(BridgedIds(ids, btcAddress));
              emit OrdinalsBridged(collectionAddr, ids, btcAddress);
          }
          function _burnToBridge(address collectionAddr, uint256[] calldata ids, string calldata btcAddress) internal {
              IERC721BurnableTotalSupply collection = IERC721BurnableTotalSupply(collectionAddr);
              for (uint256 i = 0; i < ids.length; i++) {
                  uint256 id = ids[i];
                  // require caller is owner of token (prevents hijacking approvals)
                  require(collection.ownerOf(id) == msg.sender, "Rbrc721Burn: Caller is not owner of token");
                  collection.burn(id);
              }
          }
          function _transferToDead(address collectionAddr, uint256[] calldata ids, string calldata btcAddress) internal {
              IERC721 collection = IERC721(collectionAddr);
              for (uint256 i = 0; i < ids.length; i++) {
                  uint256 id = ids[i];
                  // require caller is owner of token (prevents hijacking approvals)
                  require(collection.ownerOf(id) == msg.sender, "Rbrc721Burn: Caller is not owner of token");
                  // use dead address to burn
                  collection.transferFrom(msg.sender, address(0x000000000000000000000000000000000000dEaD), id);
              }
          }
      }
      // SPDX-License-Identifier: MIT
      // ERC721A Contracts v4.2.3
      // Creator: Chiru Labs
      pragma solidity ^0.8.4;
      /**
       * @dev Interface of ERC721A.
       */
      interface IERC721A {
          /**
           * The caller must own the token or be an approved operator.
           */
          error ApprovalCallerNotOwnerNorApproved();
          /**
           * The token does not exist.
           */
          error ApprovalQueryForNonexistentToken();
          /**
           * Cannot query the balance for the zero address.
           */
          error BalanceQueryForZeroAddress();
          /**
           * Cannot mint to the zero address.
           */
          error MintToZeroAddress();
          /**
           * The quantity of tokens minted must be more than zero.
           */
          error MintZeroQuantity();
          /**
           * The token does not exist.
           */
          error OwnerQueryForNonexistentToken();
          /**
           * The caller must own the token or be an approved operator.
           */
          error TransferCallerNotOwnerNorApproved();
          /**
           * The token must be owned by `from`.
           */
          error TransferFromIncorrectOwner();
          /**
           * Cannot safely transfer to a contract that does not implement the
           * ERC721Receiver interface.
           */
          error TransferToNonERC721ReceiverImplementer();
          /**
           * Cannot transfer to the zero address.
           */
          error TransferToZeroAddress();
          /**
           * The token does not exist.
           */
          error URIQueryForNonexistentToken();
          /**
           * The `quantity` minted with ERC2309 exceeds the safety limit.
           */
          error MintERC2309QuantityExceedsLimit();
          /**
           * The `extraData` cannot be set on an unintialized ownership slot.
           */
          error OwnershipNotInitializedForExtraData();
          // =============================================================
          //                            STRUCTS
          // =============================================================
          struct TokenOwnership {
              // The address of the owner.
              address addr;
              // Stores the start time of ownership with minimal overhead for tokenomics.
              uint64 startTimestamp;
              // Whether the token has been burned.
              bool burned;
              // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
              uint24 extraData;
          }
          // =============================================================
          //                         TOKEN COUNTERS
          // =============================================================
          /**
           * @dev Returns the total number of tokens in existence.
           * Burned tokens will reduce the count.
           * To get the total number of tokens minted, please see {_totalMinted}.
           */
          function totalSupply() external view returns (uint256);
          // =============================================================
          //                            IERC165
          // =============================================================
          /**
           * @dev Returns true if this contract implements the interface defined by
           * `interfaceId`. See the corresponding
           * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
           * to learn more about how these ids are created.
           *
           * This function call must use less than 30000 gas.
           */
          function supportsInterface(bytes4 interfaceId) external view returns (bool);
          // =============================================================
          //                            IERC721
          // =============================================================
          /**
           * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
           */
          event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
          /**
           * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
           */
          event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
          /**
           * @dev Emitted when `owner` enables or disables
           * (`approved`) `operator` to manage all of its assets.
           */
          event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
          /**
           * @dev Returns the number of tokens in `owner`'s account.
           */
          function balanceOf(address owner) external view returns (uint256 balance);
          /**
           * @dev Returns the owner of the `tokenId` token.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function ownerOf(uint256 tokenId) external view returns (address owner);
          /**
           * @dev Safely transfers `tokenId` token from `from` to `to`,
           * checking first that contract recipients are aware of the ERC721 protocol
           * to prevent tokens from being forever locked.
           *
           * Requirements:
           *
           * - `from` cannot be the zero address.
           * - `to` cannot be the zero address.
           * - `tokenId` token must exist and be owned by `from`.
           * - If the caller is not `from`, it must be have been allowed to move
           * this token by either {approve} or {setApprovalForAll}.
           * - If `to` refers to a smart contract, it must implement
           * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
           *
           * Emits a {Transfer} event.
           */
          function safeTransferFrom(
              address from,
              address to,
              uint256 tokenId,
              bytes calldata data
          ) external payable;
          /**
           * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
           */
          function safeTransferFrom(
              address from,
              address to,
              uint256 tokenId
          ) external payable;
          /**
           * @dev Transfers `tokenId` 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 payable;
          /**
           * @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 payable;
          /**
           * @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 the account approved for `tokenId` token.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function getApproved(uint256 tokenId) external view returns (address operator);
          /**
           * @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);
          // =============================================================
          //                        IERC721Metadata
          // =============================================================
          /**
           * @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);
          // =============================================================
          //                           IERC2309
          // =============================================================
          /**
           * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
           * (inclusive) is transferred from `from` to `to`, as defined in the
           * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
           *
           * See {_mintERC2309} for more details.
           */
          event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
      }