ETH Price: $3,469.11 (+1.79%)
Gas: 8 Gwei

Token

Guilty Elixir (GE)
 

Overview

Max Total Supply

6,939 GE

Holders

165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdrfkr.eth
Balance
10 GE
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GuiltyElixir

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 4 of 8: GuiltyElixir.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "./ERC721A.sol";
import "./MerkleProof.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./ReentrancyGuard.sol";

contract GuiltyElixir is ERC721A, ReentrancyGuard, Ownable {

  event SetMaximumAllowedTokens(uint256 _count);
  event SetMaximumAllowedTokensPerPurchase(uint256 _count);
  event SetMaxSupply(uint256 _count);
  event SetPrice(uint256 _price);
  event SetBaseUri(string baseURI);
  event Mint(address userAddress, uint256 _count);
  
  uint256 public mintPrice = 0.069 ether;

  uint256 private reserveAtATime = 87;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 696;

  string _baseTokenURI;

  bool public isActive = false;

  uint256 public MAX_SUPPLY = 6969;
  uint256 public maximumAllowedTokensPerPurchase = 2;
  uint256 public maximumAllowedTokensPerWallet = 2;

  constructor(string memory baseURI) ERC721A("Guilty Elixir", "GE") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen(uint256 _mintAmount) {
    uint256 currentSupply = totalSupply();

    require(currentSupply <= MAX_SUPPLY, "Sale has ended.");
    require(currentSupply + _mintAmount <= MAX_SUPPLY, "All CNR minted.");
    _;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(tx.origin == msg.sender, "Calling from other contract is not allowed.");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maximumAllowedTokensPerWallet,
       "Invalid mint amount or minted max amount already."
    );
    _;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setMaxReserve(uint256 val) public onlyOwner {
    maxReserveCount = val;
  }

  function setReserveAtATime(uint256 val) public onlyOwner {
    reserveAtATime = val;
  }

  function getReserveAtATime() external view returns (uint256) {
    return reserveAtATime;
  }


  function setMaximumAllowedTokens(uint256 _count) public onlyOwner {
    maximumAllowedTokensPerPurchase = _count;
    emit SetMaximumAllowedTokensPerPurchase(_count);
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyOwner {
    maximumAllowedTokensPerWallet = _count;
    emit SetMaximumAllowedTokens(_count);
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyOwner {
    MAX_SUPPLY = maxMintSupply;
    emit SetMaxSupply(maxMintSupply);
  }

  function setPrice(uint256 _price) public onlyOwner {
    mintPrice = _price;
    emit SetPrice(_price);
  }

  function toggleSaleStatus() public onlyOwner {
    isActive = !isActive;
  }

  function setBaseURI(string memory baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
    emit SetBaseUri(baseURI);
  }


  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function airdrop(uint256 _count, address _address) external onlyOwner {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(supply <= MAX_SUPPLY, "Total supply spent.");

    _safeMint(_address, _count);
  }

  function batchAirdrop(uint256 _count, address[] calldata addresses) external onlyOwner {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(supply <= MAX_SUPPLY, "Total supply spent.");

    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _safeMint(addresses[i], _count);
    }
  }

  function mint(uint256 _count) public payable mintCompliance(_count) saleIsOpen(_count) nonReentrant {
     if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    require( _count <= maximumAllowedTokensPerPurchase, "Exceeds maximum allowed tokens");
    require(msg.value >= (mintPrice * _count), "Insufficient ETH amount sent.");

    _safeMint(msg.sender, _count);
     emit Mint(msg.sender, _count);
  }

  function burnToken(uint256 tokenId) external onlyOwner {
      _burn(tokenId);
  }

  function batchBurn(uint256[] memory tokenIds) external onlyOwner {
        uint256 len = tokenIds.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenIds[i];
            _burn(tokenid);
        }
  }

  function withdraw() external onlyOwner nonReentrant{
    uint balance = address(this).balance;
     Address.sendValue(payable(owner()), balance);  
  }
}

File 1 of 8: Address.sol
// 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);
            }
        }
    }
}

File 2 of 8: Context.sol
// 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;
    }
}

File 3 of 8: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @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() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            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) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 5 of 8: IERC721A.sol
// 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);
}

File 6 of 8: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 8: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

File 8 of 8: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @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].
 */
/**
 * @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 ReentrancyGuard {
    // 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;

    constructor() {
        _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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"SetBaseUri","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"}],"name":"SetMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"}],"name":"SetMaximumAllowedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"}],"name":"SetMaximumAllowedTokensPerPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"SetPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f5232269808000600a556057600b556000600c556102b8600d556000600f60006101000a81548160ff021916908315150217905550611b39601055600260115560026012553480156200005757600080fd5b50604051620046883803806200468883398181016040528101906200007d9190620004e4565b6040518060400160405280600d81526020017f4775696c747920456c69786972000000000000000000000000000000000000008152506040518060400160405280600281526020017f47450000000000000000000000000000000000000000000000000000000000008152508160029081620000fa919062000780565b5080600390816200010c919062000780565b506200011d6200016560201b60201c565b600081905550505060016008819055506200014d620001416200016a60201b60201c565b6200017260201b60201c565b6200015e816200023860201b60201c565b506200094f565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002486200029660201b60201c565b80600e908162000259919062000780565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d5816040516200028b9190620008b9565b60405180910390a150565b620002a66200016a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002cc6200032760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000325576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031c906200092d565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003ba826200036f565b810181811067ffffffffffffffff82111715620003dc57620003db62000380565b5b80604052505050565b6000620003f162000351565b9050620003ff8282620003af565b919050565b600067ffffffffffffffff82111562000422576200042162000380565b5b6200042d826200036f565b9050602081019050919050565b60005b838110156200045a5780820151818401526020810190506200043d565b60008484015250505050565b60006200047d620004778462000404565b620003e5565b9050828152602081018484840111156200049c576200049b6200036a565b5b620004a98482856200043a565b509392505050565b600082601f830112620004c957620004c862000365565b5b8151620004db84826020860162000466565b91505092915050565b600060208284031215620004fd57620004fc6200035b565b5b600082015167ffffffffffffffff8111156200051e576200051d62000360565b5b6200052c84828501620004b1565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058857607f821691505b6020821081036200059e576200059d62000540565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005c9565b620006148683620005c9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006616200065b62000655846200062c565b62000636565b6200062c565b9050919050565b6000819050919050565b6200067d8362000640565b620006956200068c8262000668565b848454620005d6565b825550505050565b600090565b620006ac6200069d565b620006b981848462000672565b505050565b5b81811015620006e157620006d5600082620006a2565b600181019050620006bf565b5050565b601f8211156200073057620006fa81620005a4565b6200070584620005b9565b8101602085101562000715578190505b6200072d6200072485620005b9565b830182620006be565b50505b505050565b600082821c905092915050565b6000620007556000198460080262000735565b1980831691505092915050565b600062000770838362000742565b9150826002028217905092915050565b6200078b8262000535565b67ffffffffffffffff811115620007a757620007a662000380565b5b620007b382546200056f565b620007c0828285620006e5565b600060209050601f831160018114620007f85760008415620007e3578287015190505b620007ef858262000762565b8655506200085f565b601f1984166200080886620005a4565b60005b8281101562000832578489015182556001820191506020850194506020810190506200080b565b868310156200085257848901516200084e601f89168262000742565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b6000620008858262000535565b62000891818562000867565b9350620008a38185602086016200043a565b620008ae816200036f565b840191505092915050565b60006020820190508181036000830152620008d5818462000878565b905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200091560208362000867565b91506200092282620008dd565b602082019050919050565b60006020820190508181036000830152620009488162000906565b9050919050565b613d29806200095f6000396000f3fe6080604052600436106102255760003560e01c80637b47ec1a11610123578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c514610788578063ea6eb836146107c5578063f2fde38b146107ee578063f6c9d9e314610817578063fb7e6ccb1461084057610225565b8063c87b56dd1461068f578063cadf8818146106cc578063dc33e681146106f7578063dc8e92ea14610734578063e7b62d961461075d57610225565b80639a3bf728116100f25780639a3bf728146105da578063a0712d6814610605578063a22cb46514610621578063b88d4fde1461064a578063bc63f02e1461066657610225565b80637b47ec1a146105325780638da5cb5b1461055b57806391b7f5ed1461058657806395d89b41146105af57610225565b80633ccfd60b116101b15780636352211e116101755780636352211e1461044d5780636817c76c1461048a57806370a08231146104b5578063715018a6146104f25780637389fbb71461050957610225565b80633ccfd60b1461039f57806342842e0e146103b65780634dfea627146103d257806355f804b3146103fb57806356a87caa1461042457610225565b8063095ea7b3116101f8578063095ea7b3146102e657806318160ddd1461030257806322f3e2d41461032d57806323b872dd1461035857806332cb6b0c1461037457610225565b806301ffc9a71461022a578063049c5c491461026757806306fdde031461027e578063081812fc146102a9575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612817565b610869565b60405161025e919061285f565b60405180910390f35b34801561027357600080fd5b5061027c6108fb565b005b34801561028a57600080fd5b5061029361092f565b6040516102a0919061290a565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190612962565b6109c1565b6040516102dd91906129d0565b60405180910390f35b61030060048036038101906102fb9190612a17565b610a40565b005b34801561030e57600080fd5b50610317610b84565b6040516103249190612a66565b60405180910390f35b34801561033957600080fd5b50610342610b9b565b60405161034f919061285f565b60405180910390f35b610372600480360381019061036d9190612a81565b610bae565b005b34801561038057600080fd5b50610389610ed0565b6040516103969190612a66565b60405180910390f35b3480156103ab57600080fd5b506103b4610ed6565b005b6103d060048036038101906103cb9190612a81565b610f4c565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612962565b610f6c565b005b34801561040757600080fd5b50610422600480360381019061041d9190612c09565b610fb5565b005b34801561043057600080fd5b5061044b60048036038101906104469190612962565b611007565b005b34801561045957600080fd5b50610474600480360381019061046f9190612962565b611019565b60405161048191906129d0565b60405180910390f35b34801561049657600080fd5b5061049f61102b565b6040516104ac9190612a66565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612c52565b611031565b6040516104e99190612a66565b60405180910390f35b3480156104fe57600080fd5b506105076110e9565b005b34801561051557600080fd5b50610530600480360381019061052b9190612962565b6110fd565b005b34801561053e57600080fd5b5061055960048036038101906105549190612962565b611146565b005b34801561056757600080fd5b5061057061115a565b60405161057d91906129d0565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612962565b611184565b005b3480156105bb57600080fd5b506105c46111cd565b6040516105d1919061290a565b60405180910390f35b3480156105e657600080fd5b506105ef61125f565b6040516105fc9190612a66565b60405180910390f35b61061f600480360381019061061a9190612962565b611265565b005b34801561062d57600080fd5b5061064860048036038101906106439190612cab565b611597565b005b610664600480360381019061065f9190612d8c565b6116a2565b005b34801561067257600080fd5b5061068d60048036038101906106889190612e0f565b611715565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612962565b6117cd565b6040516106c3919061290a565b60405180910390f35b3480156106d857600080fd5b506106e161186b565b6040516106ee9190612a66565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190612c52565b611871565b60405161072b9190612a66565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190612f17565b611883565b005b34801561076957600080fd5b506107726118dd565b60405161077f9190612a66565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612f60565b6118e7565b6040516107bc919061285f565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612962565b61197b565b005b3480156107fa57600080fd5b5061081560048036038101906108109190612c52565b6119c4565b005b34801561082357600080fd5b5061083e60048036038101906108399190612962565b611a47565b005b34801561084c57600080fd5b5061086760048036038101906108629190612ffb565b611a59565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610903611bf1565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b60606002805461093e9061308a565b80601f016020809104026020016040519081016040528092919081815260200182805461096a9061308a565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b5050505050905090565b60006109cc82611c6f565b610a02576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4b82611019565b90508073ffffffffffffffffffffffffffffffffffffffff16610a6c611cce565b73ffffffffffffffffffffffffffffffffffffffff1614610acf57610a9881610a93611cce565b6118e7565b610ace576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b8e611cd6565b6001546000540303905090565b600f60009054906101000a900460ff1681565b6000610bb982611cdb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c20576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c2c84611da7565b91509150610c428187610c3d611cce565b611dce565b610c8e57610c5786610c52611cce565b6118e7565b610c8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cf4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d018686866001611e12565b8015610d0c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dda85610db6888887611e18565b7c020000000000000000000000000000000000000000000000000000000017611e40565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e605760006001850190506000600460008381526020019081526020016000205403610e5e576000548114610e5d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ec88686866001611e6b565b505050505050565b60105481565b610ede611bf1565b600260085403610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613107565b60405180910390fd5b60026008819055506000479050610f41610f3b61115a565b82611e71565b506001600881905550565b610f67838383604051806020016040528060008152506116a2565b505050565b610f74611bf1565b806011819055507f2721fa37346dd22e4efeccef3ba09c3a6a1ed728a25745709c850d754d1c113881604051610faa9190612a66565b60405180910390a150565b610fbd611bf1565b80600e9081610fcc91906132d3565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d581604051610ffc919061290a565b60405180910390a150565b61100f611bf1565b80600d8190555050565b600061102482611cdb565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611098576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110f1611bf1565b6110fb6000611f65565b565b611105611bf1565b806010819055507f3f8118fc46e72ecde0c5e090803cad8c88e817b2f1e93e820aa9bfbf51f2468d8160405161113b9190612a66565b60405180910390a150565b61114e611bf1565b6111578161202b565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61118c611bf1565b80600a819055507f4f5539c0409dfc4cb06f64cbd31237e1fbfe443f531584bf4dd77ec7fc5ba7b1816040516111c29190612a66565b60405180910390a150565b6060600380546111dc9061308a565b80601f01602080910402602001604051908101604052809291908181526020018280546112089061308a565b80156112555780601f1061122a57610100808354040283529160200191611255565b820191906000526020600020905b81548152906001019060200180831161123857829003601f168201915b5050505050905090565b60115481565b803373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90613417565b60405180910390fd5b6000811180156112f95750601254816112ec33611871565b6112f69190613466565b11155b611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f9061350c565b60405180910390fd5b816000611343610b84565b905060105481111561138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613578565b60405180910390fd5b60105482826113999190613466565b11156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906135e4565b60405180910390fd5b60026008540361141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690613107565b60405180910390fd5b600260088190555061142f61115a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114b157600f60009054906101000a900460ff166114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790613650565b60405180910390fd5b5b6011548411156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed906136bc565b60405180910390fd5b83600a5461150491906136dc565b341015611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d9061376a565b60405180910390fd5b6115503385612039565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885338560405161158192919061378a565b60405180910390a1600160088190555050505050565b80600760006115a4611cce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611651611cce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611696919061285f565b60405180910390a35050565b6116ad848484610bae565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461170f576116d884848484612057565b61170e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61171d611bf1565b6000611727610b84565b905060105483826117389190613466565b1115611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906137ff565b60405180910390fd5b6010548111156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061386b565b60405180910390fd5b6117c88284612039565b505050565b60606117d882611c6f565b61180e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118186121a7565b905060008151036118385760405180602001604052806000815250611863565b8061184284612239565b6040516020016118539291906138c7565b6040516020818303038152906040525b915050919050565b60125481565b600061187c82612289565b9050919050565b61188b611bf1565b60008151905060005b818110156118d85760008382815181106118b1576118b06138eb565b5b602002602001015190506118c48161202b565b5080806118d09061391a565b915050611894565b505050565b6000600b54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611983611bf1565b806012819055507f71bc795b7d05fc9a5fe835ea7565de00e48de52fc5384846bc9add7a0f6b5866816040516119b99190612a66565b60405180910390a150565b6119cc611bf1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a32906139d4565b60405180910390fd5b611a4481611f65565b50565b611a4f611bf1565b80600b8190555050565b611a61611bf1565b6000611a6b610b84565b90506010548482611a7c9190613466565b1115611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906137ff565b60405180910390fd5b601054811115611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af99061386b565b60405180910390fd5b60005b83839050811015611bea57600073ffffffffffffffffffffffffffffffffffffffff16848483818110611b3b57611b3a6138eb565b5b9050602002016020810190611b509190612c52565b73ffffffffffffffffffffffffffffffffffffffff1603611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613a40565b60405180910390fd5b611bd7848483818110611bbc57611bbb6138eb565b5b9050602002016020810190611bd19190612c52565b86612039565b8080611be29061391a565b915050611b05565b5050505050565b611bf96122e0565b73ffffffffffffffffffffffffffffffffffffffff16611c1761115a565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490613aac565b60405180910390fd5b565b600081611c7a611cd6565b11158015611c89575060005482105b8015611cc7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611cea611cd6565b11611d7057600054811015611d6f5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d6d575b60008103611d63576004600083600190039350838152602001908152602001600020549050611d39565b8092505050611da2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e2f8686846122e8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90613b18565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611eda90613b69565b60006040518083038185875af1925050503d8060008114611f17576040519150601f19603f3d011682016040523d82523d6000602084013e611f1c565b606091505b5050905080611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790613bf0565b60405180910390fd5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120368160006122f1565b50565b612053828260405180602001604052806000815250612543565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261207d611cce565b8786866040518563ffffffff1660e01b815260040161209f9493929190613c65565b6020604051808303816000875af19250505080156120db57506040513d601f19601f820116820180604052508101906120d89190613cc6565b60015b612154573d806000811461210b576040519150601f19603f3d011682016040523d82523d6000602084013e612110565b606091505b50600081510361214c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546121b69061308a565b80601f01602080910402602001604051908101604052809291908181526020018280546121e29061308a565b801561222f5780601f106122045761010080835404028352916020019161222f565b820191906000526020600020905b81548152906001019060200180831161221257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561227457600184039350600a81066030018453600a8104905080612252575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60006122fc83611cdb565b9050600081905060008061230f86611da7565b9150915084156123785761232b8184612326611cce565b611dce565b612377576123408361233b611cce565b6118e7565b612376576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612386836000886001611e12565b801561239157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612439836123f685600088611e18565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611e40565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036124bf57600060018701905060006004600083815260200190815260200160002054036124bd5760005481146124bc578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612529836000886001611e6b565b600160008154809291906001019190505550505050505050565b61254d83836125e0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125db57600080549050600083820390505b61258d6000868380600101945086612057565b6125c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061257a5781600054146125d857600080fd5b50505b505050565b60008054905060008203612620576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61262d6000848385611e12565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126a4836126956000866000611e18565b61269e8561279b565b17611e40565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461274557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061270a565b5060008203612780576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127966000848385611e6b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127f4816127bf565b81146127ff57600080fd5b50565b600081359050612811816127eb565b92915050565b60006020828403121561282d5761282c6127b5565b5b600061283b84828501612802565b91505092915050565b60008115159050919050565b61285981612844565b82525050565b60006020820190506128746000830184612850565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128b4578082015181840152602081019050612899565b60008484015250505050565b6000601f19601f8301169050919050565b60006128dc8261287a565b6128e68185612885565b93506128f6818560208601612896565b6128ff816128c0565b840191505092915050565b6000602082019050818103600083015261292481846128d1565b905092915050565b6000819050919050565b61293f8161292c565b811461294a57600080fd5b50565b60008135905061295c81612936565b92915050565b600060208284031215612978576129776127b5565b5b60006129868482850161294d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129ba8261298f565b9050919050565b6129ca816129af565b82525050565b60006020820190506129e560008301846129c1565b92915050565b6129f4816129af565b81146129ff57600080fd5b50565b600081359050612a11816129eb565b92915050565b60008060408385031215612a2e57612a2d6127b5565b5b6000612a3c85828601612a02565b9250506020612a4d8582860161294d565b9150509250929050565b612a608161292c565b82525050565b6000602082019050612a7b6000830184612a57565b92915050565b600080600060608486031215612a9a57612a996127b5565b5b6000612aa886828701612a02565b9350506020612ab986828701612a02565b9250506040612aca8682870161294d565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b16826128c0565b810181811067ffffffffffffffff82111715612b3557612b34612ade565b5b80604052505050565b6000612b486127ab565b9050612b548282612b0d565b919050565b600067ffffffffffffffff821115612b7457612b73612ade565b5b612b7d826128c0565b9050602081019050919050565b82818337600083830152505050565b6000612bac612ba784612b59565b612b3e565b905082815260208101848484011115612bc857612bc7612ad9565b5b612bd3848285612b8a565b509392505050565b600082601f830112612bf057612bef612ad4565b5b8135612c00848260208601612b99565b91505092915050565b600060208284031215612c1f57612c1e6127b5565b5b600082013567ffffffffffffffff811115612c3d57612c3c6127ba565b5b612c4984828501612bdb565b91505092915050565b600060208284031215612c6857612c676127b5565b5b6000612c7684828501612a02565b91505092915050565b612c8881612844565b8114612c9357600080fd5b50565b600081359050612ca581612c7f565b92915050565b60008060408385031215612cc257612cc16127b5565b5b6000612cd085828601612a02565b9250506020612ce185828601612c96565b9150509250929050565b600067ffffffffffffffff821115612d0657612d05612ade565b5b612d0f826128c0565b9050602081019050919050565b6000612d2f612d2a84612ceb565b612b3e565b905082815260208101848484011115612d4b57612d4a612ad9565b5b612d56848285612b8a565b509392505050565b600082601f830112612d7357612d72612ad4565b5b8135612d83848260208601612d1c565b91505092915050565b60008060008060808587031215612da657612da56127b5565b5b6000612db487828801612a02565b9450506020612dc587828801612a02565b9350506040612dd68782880161294d565b925050606085013567ffffffffffffffff811115612df757612df66127ba565b5b612e0387828801612d5e565b91505092959194509250565b60008060408385031215612e2657612e256127b5565b5b6000612e348582860161294d565b9250506020612e4585828601612a02565b9150509250929050565b600067ffffffffffffffff821115612e6a57612e69612ade565b5b602082029050602081019050919050565b600080fd5b6000612e93612e8e84612e4f565b612b3e565b90508083825260208201905060208402830185811115612eb657612eb5612e7b565b5b835b81811015612edf5780612ecb888261294d565b845260208401935050602081019050612eb8565b5050509392505050565b600082601f830112612efe57612efd612ad4565b5b8135612f0e848260208601612e80565b91505092915050565b600060208284031215612f2d57612f2c6127b5565b5b600082013567ffffffffffffffff811115612f4b57612f4a6127ba565b5b612f5784828501612ee9565b91505092915050565b60008060408385031215612f7757612f766127b5565b5b6000612f8585828601612a02565b9250506020612f9685828601612a02565b9150509250929050565b600080fd5b60008083601f840112612fbb57612fba612ad4565b5b8235905067ffffffffffffffff811115612fd857612fd7612fa0565b5b602083019150836020820283011115612ff457612ff3612e7b565b5b9250929050565b600080600060408486031215613014576130136127b5565b5b60006130228682870161294d565b935050602084013567ffffffffffffffff811115613043576130426127ba565b5b61304f86828701612fa5565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130a257607f821691505b6020821081036130b5576130b461305b565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006130f1601f83612885565b91506130fc826130bb565b602082019050919050565b60006020820190508181036000830152613120816130e4565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261314c565b613193868361314c565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131d06131cb6131c68461292c565b6131ab565b61292c565b9050919050565b6000819050919050565b6131ea836131b5565b6131fe6131f6826131d7565b848454613159565b825550505050565b600090565b613213613206565b61321e8184846131e1565b505050565b5b818110156132425761323760008261320b565b600181019050613224565b5050565b601f8211156132875761325881613127565b6132618461313c565b81016020851015613270578190505b61328461327c8561313c565b830182613223565b50505b505050565b600082821c905092915050565b60006132aa6000198460080261328c565b1980831691505092915050565b60006132c38383613299565b9150826002028217905092915050565b6132dc8261287a565b67ffffffffffffffff8111156132f5576132f4612ade565b5b6132ff825461308a565b61330a828285613246565b600060209050601f83116001811461333d576000841561332b578287015190505b61333585826132b7565b86555061339d565b601f19841661334b86613127565b60005b828110156133735784890151825560018201915060208501945060208101905061334e565b86831015613390578489015161338c601f891682613299565b8355505b6001600288020188555050505b505050505050565b7f43616c6c696e672066726f6d206f7468657220636f6e7472616374206973206e60008201527f6f7420616c6c6f7765642e000000000000000000000000000000000000000000602082015250565b6000613401602b83612885565b915061340c826133a5565b604082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134718261292c565b915061347c8361292c565b925082820190508082111561349457613493613437565b5b92915050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e7420616c72656164792e000000000000000000000000000000602082015250565b60006134f6603183612885565b91506135018261349a565b604082019050919050565b60006020820190508181036000830152613525816134e9565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000613562600f83612885565b915061356d8261352c565b602082019050919050565b6000602082019050818103600083015261359181613555565b9050919050565b7f416c6c20434e52206d696e7465642e0000000000000000000000000000000000600082015250565b60006135ce600f83612885565b91506135d982613598565b602082019050919050565b600060208201905081810360008301526135fd816135c1565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061363a601d83612885565b915061364582613604565b602082019050919050565b600060208201905081810360008301526136698161362d565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006136a6601e83612885565b91506136b182613670565b602082019050919050565b600060208201905081810360008301526136d581613699565b9050919050565b60006136e78261292c565b91506136f28361292c565b92508282026137008161292c565b9150828204841483151761371757613716613437565b5b5092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613754601d83612885565b915061375f8261371e565b602082019050919050565b6000602082019050818103600083015261378381613747565b9050919050565b600060408201905061379f60008301856129c1565b6137ac6020830184612a57565b9392505050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006137e9601683612885565b91506137f4826137b3565b602082019050919050565b60006020820190508181036000830152613818816137dc565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000613855601383612885565b91506138608261381f565b602082019050919050565b6000602082019050818103600083015261388481613848565b9050919050565b600081905092915050565b60006138a18261287a565b6138ab818561388b565b93506138bb818560208601612896565b80840191505092915050565b60006138d38285613896565b91506138df8284613896565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006139258261292c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361395757613956613437565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139be602683612885565b91506139c982613962565b604082019050919050565b600060208201905081810360008301526139ed816139b1565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b6000613a2a601883612885565b9150613a35826139f4565b602082019050919050565b60006020820190508181036000830152613a5981613a1d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a96602083612885565b9150613aa182613a60565b602082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613b02601d83612885565b9150613b0d82613acc565b602082019050919050565b60006020820190508181036000830152613b3181613af5565b9050919050565b600081905092915050565b50565b6000613b53600083613b38565b9150613b5e82613b43565b600082019050919050565b6000613b7482613b46565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613bda603a83612885565b9150613be582613b7e565b604082019050919050565b60006020820190508181036000830152613c0981613bcd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c3782613c10565b613c418185613c1b565b9350613c51818560208601612896565b613c5a816128c0565b840191505092915050565b6000608082019050613c7a60008301876129c1565b613c8760208301866129c1565b613c946040830185612a57565b8181036060830152613ca68184613c2c565b905095945050505050565b600081519050613cc0816127eb565b92915050565b600060208284031215613cdc57613cdb6127b5565b5b6000613cea84828501613cb1565b9150509291505056fea264697066735822122034c0b5665a7efb2e99108514daef31846db6836cc61d84dc700f769e7ad5f60c64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a516a6768484e574b3167714d67556d51444b5531576857707137355338445678774b4a36476845594366482f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637b47ec1a11610123578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c514610788578063ea6eb836146107c5578063f2fde38b146107ee578063f6c9d9e314610817578063fb7e6ccb1461084057610225565b8063c87b56dd1461068f578063cadf8818146106cc578063dc33e681146106f7578063dc8e92ea14610734578063e7b62d961461075d57610225565b80639a3bf728116100f25780639a3bf728146105da578063a0712d6814610605578063a22cb46514610621578063b88d4fde1461064a578063bc63f02e1461066657610225565b80637b47ec1a146105325780638da5cb5b1461055b57806391b7f5ed1461058657806395d89b41146105af57610225565b80633ccfd60b116101b15780636352211e116101755780636352211e1461044d5780636817c76c1461048a57806370a08231146104b5578063715018a6146104f25780637389fbb71461050957610225565b80633ccfd60b1461039f57806342842e0e146103b65780634dfea627146103d257806355f804b3146103fb57806356a87caa1461042457610225565b8063095ea7b3116101f8578063095ea7b3146102e657806318160ddd1461030257806322f3e2d41461032d57806323b872dd1461035857806332cb6b0c1461037457610225565b806301ffc9a71461022a578063049c5c491461026757806306fdde031461027e578063081812fc146102a9575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612817565b610869565b60405161025e919061285f565b60405180910390f35b34801561027357600080fd5b5061027c6108fb565b005b34801561028a57600080fd5b5061029361092f565b6040516102a0919061290a565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190612962565b6109c1565b6040516102dd91906129d0565b60405180910390f35b61030060048036038101906102fb9190612a17565b610a40565b005b34801561030e57600080fd5b50610317610b84565b6040516103249190612a66565b60405180910390f35b34801561033957600080fd5b50610342610b9b565b60405161034f919061285f565b60405180910390f35b610372600480360381019061036d9190612a81565b610bae565b005b34801561038057600080fd5b50610389610ed0565b6040516103969190612a66565b60405180910390f35b3480156103ab57600080fd5b506103b4610ed6565b005b6103d060048036038101906103cb9190612a81565b610f4c565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612962565b610f6c565b005b34801561040757600080fd5b50610422600480360381019061041d9190612c09565b610fb5565b005b34801561043057600080fd5b5061044b60048036038101906104469190612962565b611007565b005b34801561045957600080fd5b50610474600480360381019061046f9190612962565b611019565b60405161048191906129d0565b60405180910390f35b34801561049657600080fd5b5061049f61102b565b6040516104ac9190612a66565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612c52565b611031565b6040516104e99190612a66565b60405180910390f35b3480156104fe57600080fd5b506105076110e9565b005b34801561051557600080fd5b50610530600480360381019061052b9190612962565b6110fd565b005b34801561053e57600080fd5b5061055960048036038101906105549190612962565b611146565b005b34801561056757600080fd5b5061057061115a565b60405161057d91906129d0565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612962565b611184565b005b3480156105bb57600080fd5b506105c46111cd565b6040516105d1919061290a565b60405180910390f35b3480156105e657600080fd5b506105ef61125f565b6040516105fc9190612a66565b60405180910390f35b61061f600480360381019061061a9190612962565b611265565b005b34801561062d57600080fd5b5061064860048036038101906106439190612cab565b611597565b005b610664600480360381019061065f9190612d8c565b6116a2565b005b34801561067257600080fd5b5061068d60048036038101906106889190612e0f565b611715565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612962565b6117cd565b6040516106c3919061290a565b60405180910390f35b3480156106d857600080fd5b506106e161186b565b6040516106ee9190612a66565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190612c52565b611871565b60405161072b9190612a66565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190612f17565b611883565b005b34801561076957600080fd5b506107726118dd565b60405161077f9190612a66565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612f60565b6118e7565b6040516107bc919061285f565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612962565b61197b565b005b3480156107fa57600080fd5b5061081560048036038101906108109190612c52565b6119c4565b005b34801561082357600080fd5b5061083e60048036038101906108399190612962565b611a47565b005b34801561084c57600080fd5b5061086760048036038101906108629190612ffb565b611a59565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610903611bf1565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b60606002805461093e9061308a565b80601f016020809104026020016040519081016040528092919081815260200182805461096a9061308a565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b5050505050905090565b60006109cc82611c6f565b610a02576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4b82611019565b90508073ffffffffffffffffffffffffffffffffffffffff16610a6c611cce565b73ffffffffffffffffffffffffffffffffffffffff1614610acf57610a9881610a93611cce565b6118e7565b610ace576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b8e611cd6565b6001546000540303905090565b600f60009054906101000a900460ff1681565b6000610bb982611cdb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c20576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c2c84611da7565b91509150610c428187610c3d611cce565b611dce565b610c8e57610c5786610c52611cce565b6118e7565b610c8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cf4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d018686866001611e12565b8015610d0c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dda85610db6888887611e18565b7c020000000000000000000000000000000000000000000000000000000017611e40565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e605760006001850190506000600460008381526020019081526020016000205403610e5e576000548114610e5d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ec88686866001611e6b565b505050505050565b60105481565b610ede611bf1565b600260085403610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613107565b60405180910390fd5b60026008819055506000479050610f41610f3b61115a565b82611e71565b506001600881905550565b610f67838383604051806020016040528060008152506116a2565b505050565b610f74611bf1565b806011819055507f2721fa37346dd22e4efeccef3ba09c3a6a1ed728a25745709c850d754d1c113881604051610faa9190612a66565b60405180910390a150565b610fbd611bf1565b80600e9081610fcc91906132d3565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d581604051610ffc919061290a565b60405180910390a150565b61100f611bf1565b80600d8190555050565b600061102482611cdb565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611098576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110f1611bf1565b6110fb6000611f65565b565b611105611bf1565b806010819055507f3f8118fc46e72ecde0c5e090803cad8c88e817b2f1e93e820aa9bfbf51f2468d8160405161113b9190612a66565b60405180910390a150565b61114e611bf1565b6111578161202b565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61118c611bf1565b80600a819055507f4f5539c0409dfc4cb06f64cbd31237e1fbfe443f531584bf4dd77ec7fc5ba7b1816040516111c29190612a66565b60405180910390a150565b6060600380546111dc9061308a565b80601f01602080910402602001604051908101604052809291908181526020018280546112089061308a565b80156112555780601f1061122a57610100808354040283529160200191611255565b820191906000526020600020905b81548152906001019060200180831161123857829003601f168201915b5050505050905090565b60115481565b803373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90613417565b60405180910390fd5b6000811180156112f95750601254816112ec33611871565b6112f69190613466565b11155b611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f9061350c565b60405180910390fd5b816000611343610b84565b905060105481111561138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613578565b60405180910390fd5b60105482826113999190613466565b11156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906135e4565b60405180910390fd5b60026008540361141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690613107565b60405180910390fd5b600260088190555061142f61115a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114b157600f60009054906101000a900460ff166114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790613650565b60405180910390fd5b5b6011548411156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed906136bc565b60405180910390fd5b83600a5461150491906136dc565b341015611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d9061376a565b60405180910390fd5b6115503385612039565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885338560405161158192919061378a565b60405180910390a1600160088190555050505050565b80600760006115a4611cce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611651611cce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611696919061285f565b60405180910390a35050565b6116ad848484610bae565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461170f576116d884848484612057565b61170e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61171d611bf1565b6000611727610b84565b905060105483826117389190613466565b1115611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906137ff565b60405180910390fd5b6010548111156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061386b565b60405180910390fd5b6117c88284612039565b505050565b60606117d882611c6f565b61180e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118186121a7565b905060008151036118385760405180602001604052806000815250611863565b8061184284612239565b6040516020016118539291906138c7565b6040516020818303038152906040525b915050919050565b60125481565b600061187c82612289565b9050919050565b61188b611bf1565b60008151905060005b818110156118d85760008382815181106118b1576118b06138eb565b5b602002602001015190506118c48161202b565b5080806118d09061391a565b915050611894565b505050565b6000600b54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611983611bf1565b806012819055507f71bc795b7d05fc9a5fe835ea7565de00e48de52fc5384846bc9add7a0f6b5866816040516119b99190612a66565b60405180910390a150565b6119cc611bf1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a32906139d4565b60405180910390fd5b611a4481611f65565b50565b611a4f611bf1565b80600b8190555050565b611a61611bf1565b6000611a6b610b84565b90506010548482611a7c9190613466565b1115611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906137ff565b60405180910390fd5b601054811115611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af99061386b565b60405180910390fd5b60005b83839050811015611bea57600073ffffffffffffffffffffffffffffffffffffffff16848483818110611b3b57611b3a6138eb565b5b9050602002016020810190611b509190612c52565b73ffffffffffffffffffffffffffffffffffffffff1603611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90613a40565b60405180910390fd5b611bd7848483818110611bbc57611bbb6138eb565b5b9050602002016020810190611bd19190612c52565b86612039565b8080611be29061391a565b915050611b05565b5050505050565b611bf96122e0565b73ffffffffffffffffffffffffffffffffffffffff16611c1761115a565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490613aac565b60405180910390fd5b565b600081611c7a611cd6565b11158015611c89575060005482105b8015611cc7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611cea611cd6565b11611d7057600054811015611d6f5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d6d575b60008103611d63576004600083600190039350838152602001908152602001600020549050611d39565b8092505050611da2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e2f8686846122e8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90613b18565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611eda90613b69565b60006040518083038185875af1925050503d8060008114611f17576040519150601f19603f3d011682016040523d82523d6000602084013e611f1c565b606091505b5050905080611f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5790613bf0565b60405180910390fd5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120368160006122f1565b50565b612053828260405180602001604052806000815250612543565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261207d611cce565b8786866040518563ffffffff1660e01b815260040161209f9493929190613c65565b6020604051808303816000875af19250505080156120db57506040513d601f19601f820116820180604052508101906120d89190613cc6565b60015b612154573d806000811461210b576040519150601f19603f3d011682016040523d82523d6000602084013e612110565b606091505b50600081510361214c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546121b69061308a565b80601f01602080910402602001604051908101604052809291908181526020018280546121e29061308a565b801561222f5780601f106122045761010080835404028352916020019161222f565b820191906000526020600020905b81548152906001019060200180831161221257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561227457600184039350600a81066030018453600a8104905080612252575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60006122fc83611cdb565b9050600081905060008061230f86611da7565b9150915084156123785761232b8184612326611cce565b611dce565b612377576123408361233b611cce565b6118e7565b612376576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612386836000886001611e12565b801561239157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612439836123f685600088611e18565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611e40565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036124bf57600060018701905060006004600083815260200190815260200160002054036124bd5760005481146124bc578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612529836000886001611e6b565b600160008154809291906001019190505550505050505050565b61254d83836125e0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125db57600080549050600083820390505b61258d6000868380600101945086612057565b6125c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061257a5781600054146125d857600080fd5b50505b505050565b60008054905060008203612620576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61262d6000848385611e12565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126a4836126956000866000611e18565b61269e8561279b565b17611e40565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461274557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061270a565b5060008203612780576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127966000848385611e6b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127f4816127bf565b81146127ff57600080fd5b50565b600081359050612811816127eb565b92915050565b60006020828403121561282d5761282c6127b5565b5b600061283b84828501612802565b91505092915050565b60008115159050919050565b61285981612844565b82525050565b60006020820190506128746000830184612850565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128b4578082015181840152602081019050612899565b60008484015250505050565b6000601f19601f8301169050919050565b60006128dc8261287a565b6128e68185612885565b93506128f6818560208601612896565b6128ff816128c0565b840191505092915050565b6000602082019050818103600083015261292481846128d1565b905092915050565b6000819050919050565b61293f8161292c565b811461294a57600080fd5b50565b60008135905061295c81612936565b92915050565b600060208284031215612978576129776127b5565b5b60006129868482850161294d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129ba8261298f565b9050919050565b6129ca816129af565b82525050565b60006020820190506129e560008301846129c1565b92915050565b6129f4816129af565b81146129ff57600080fd5b50565b600081359050612a11816129eb565b92915050565b60008060408385031215612a2e57612a2d6127b5565b5b6000612a3c85828601612a02565b9250506020612a4d8582860161294d565b9150509250929050565b612a608161292c565b82525050565b6000602082019050612a7b6000830184612a57565b92915050565b600080600060608486031215612a9a57612a996127b5565b5b6000612aa886828701612a02565b9350506020612ab986828701612a02565b9250506040612aca8682870161294d565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b16826128c0565b810181811067ffffffffffffffff82111715612b3557612b34612ade565b5b80604052505050565b6000612b486127ab565b9050612b548282612b0d565b919050565b600067ffffffffffffffff821115612b7457612b73612ade565b5b612b7d826128c0565b9050602081019050919050565b82818337600083830152505050565b6000612bac612ba784612b59565b612b3e565b905082815260208101848484011115612bc857612bc7612ad9565b5b612bd3848285612b8a565b509392505050565b600082601f830112612bf057612bef612ad4565b5b8135612c00848260208601612b99565b91505092915050565b600060208284031215612c1f57612c1e6127b5565b5b600082013567ffffffffffffffff811115612c3d57612c3c6127ba565b5b612c4984828501612bdb565b91505092915050565b600060208284031215612c6857612c676127b5565b5b6000612c7684828501612a02565b91505092915050565b612c8881612844565b8114612c9357600080fd5b50565b600081359050612ca581612c7f565b92915050565b60008060408385031215612cc257612cc16127b5565b5b6000612cd085828601612a02565b9250506020612ce185828601612c96565b9150509250929050565b600067ffffffffffffffff821115612d0657612d05612ade565b5b612d0f826128c0565b9050602081019050919050565b6000612d2f612d2a84612ceb565b612b3e565b905082815260208101848484011115612d4b57612d4a612ad9565b5b612d56848285612b8a565b509392505050565b600082601f830112612d7357612d72612ad4565b5b8135612d83848260208601612d1c565b91505092915050565b60008060008060808587031215612da657612da56127b5565b5b6000612db487828801612a02565b9450506020612dc587828801612a02565b9350506040612dd68782880161294d565b925050606085013567ffffffffffffffff811115612df757612df66127ba565b5b612e0387828801612d5e565b91505092959194509250565b60008060408385031215612e2657612e256127b5565b5b6000612e348582860161294d565b9250506020612e4585828601612a02565b9150509250929050565b600067ffffffffffffffff821115612e6a57612e69612ade565b5b602082029050602081019050919050565b600080fd5b6000612e93612e8e84612e4f565b612b3e565b90508083825260208201905060208402830185811115612eb657612eb5612e7b565b5b835b81811015612edf5780612ecb888261294d565b845260208401935050602081019050612eb8565b5050509392505050565b600082601f830112612efe57612efd612ad4565b5b8135612f0e848260208601612e80565b91505092915050565b600060208284031215612f2d57612f2c6127b5565b5b600082013567ffffffffffffffff811115612f4b57612f4a6127ba565b5b612f5784828501612ee9565b91505092915050565b60008060408385031215612f7757612f766127b5565b5b6000612f8585828601612a02565b9250506020612f9685828601612a02565b9150509250929050565b600080fd5b60008083601f840112612fbb57612fba612ad4565b5b8235905067ffffffffffffffff811115612fd857612fd7612fa0565b5b602083019150836020820283011115612ff457612ff3612e7b565b5b9250929050565b600080600060408486031215613014576130136127b5565b5b60006130228682870161294d565b935050602084013567ffffffffffffffff811115613043576130426127ba565b5b61304f86828701612fa5565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130a257607f821691505b6020821081036130b5576130b461305b565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006130f1601f83612885565b91506130fc826130bb565b602082019050919050565b60006020820190508181036000830152613120816130e4565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261314c565b613193868361314c565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131d06131cb6131c68461292c565b6131ab565b61292c565b9050919050565b6000819050919050565b6131ea836131b5565b6131fe6131f6826131d7565b848454613159565b825550505050565b600090565b613213613206565b61321e8184846131e1565b505050565b5b818110156132425761323760008261320b565b600181019050613224565b5050565b601f8211156132875761325881613127565b6132618461313c565b81016020851015613270578190505b61328461327c8561313c565b830182613223565b50505b505050565b600082821c905092915050565b60006132aa6000198460080261328c565b1980831691505092915050565b60006132c38383613299565b9150826002028217905092915050565b6132dc8261287a565b67ffffffffffffffff8111156132f5576132f4612ade565b5b6132ff825461308a565b61330a828285613246565b600060209050601f83116001811461333d576000841561332b578287015190505b61333585826132b7565b86555061339d565b601f19841661334b86613127565b60005b828110156133735784890151825560018201915060208501945060208101905061334e565b86831015613390578489015161338c601f891682613299565b8355505b6001600288020188555050505b505050505050565b7f43616c6c696e672066726f6d206f7468657220636f6e7472616374206973206e60008201527f6f7420616c6c6f7765642e000000000000000000000000000000000000000000602082015250565b6000613401602b83612885565b915061340c826133a5565b604082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134718261292c565b915061347c8361292c565b925082820190508082111561349457613493613437565b5b92915050565b7f496e76616c6964206d696e7420616d6f756e74206f72206d696e746564206d6160008201527f7820616d6f756e7420616c72656164792e000000000000000000000000000000602082015250565b60006134f6603183612885565b91506135018261349a565b604082019050919050565b60006020820190508181036000830152613525816134e9565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000613562600f83612885565b915061356d8261352c565b602082019050919050565b6000602082019050818103600083015261359181613555565b9050919050565b7f416c6c20434e52206d696e7465642e0000000000000000000000000000000000600082015250565b60006135ce600f83612885565b91506135d982613598565b602082019050919050565b600060208201905081810360008301526135fd816135c1565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061363a601d83612885565b915061364582613604565b602082019050919050565b600060208201905081810360008301526136698161362d565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006136a6601e83612885565b91506136b182613670565b602082019050919050565b600060208201905081810360008301526136d581613699565b9050919050565b60006136e78261292c565b91506136f28361292c565b92508282026137008161292c565b9150828204841483151761371757613716613437565b5b5092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613754601d83612885565b915061375f8261371e565b602082019050919050565b6000602082019050818103600083015261378381613747565b9050919050565b600060408201905061379f60008301856129c1565b6137ac6020830184612a57565b9392505050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006137e9601683612885565b91506137f4826137b3565b602082019050919050565b60006020820190508181036000830152613818816137dc565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000613855601383612885565b91506138608261381f565b602082019050919050565b6000602082019050818103600083015261388481613848565b9050919050565b600081905092915050565b60006138a18261287a565b6138ab818561388b565b93506138bb818560208601612896565b80840191505092915050565b60006138d38285613896565b91506138df8284613896565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006139258261292c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361395757613956613437565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139be602683612885565b91506139c982613962565b604082019050919050565b600060208201905081810360008301526139ed816139b1565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b6000613a2a601883612885565b9150613a35826139f4565b602082019050919050565b60006020820190508181036000830152613a5981613a1d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a96602083612885565b9150613aa182613a60565b602082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613b02601d83612885565b9150613b0d82613acc565b602082019050919050565b60006020820190508181036000830152613b3181613af5565b9050919050565b600081905092915050565b50565b6000613b53600083613b38565b9150613b5e82613b43565b600082019050919050565b6000613b7482613b46565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613bda603a83612885565b9150613be582613b7e565b604082019050919050565b60006020820190508181036000830152613c0981613bcd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c3782613c10565b613c418185613c1b565b9350613c51818560208601612896565b613c5a816128c0565b840191505092915050565b6000608082019050613c7a60008301876129c1565b613c8760208301866129c1565b613c946040830185612a57565b8181036060830152613ca68184613c2c565b905095945050505050565b600081519050613cc0816127eb565b92915050565b600060208284031215613cdc57613cdb6127b5565b5b6000613cea84828501613cb1565b9150509291505056fea264697066735822122034c0b5665a7efb2e99108514daef31846db6836cc61d84dc700f769e7ad5f60c64736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a516a6768484e574b3167714d67556d51444b5531576857707137355338445678774b4a36476845594366482f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmZQjghHNWK1gqMgUmQDKU1WhWpq75S8DVxwKJ6GhEYCfH/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5a516a6768484e574b3167714d67556d51444b553157685770713735
Arg [4] : 5338445678774b4a36476845594366482f000000000000000000000000000000


Deployed Bytecode Sourcemap

191:4301:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2539:76:3;;;;;;;;;;;;;:::i;:::-;;10039:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;712:28:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;745:32:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4339:151;;;;;;;;;;;;;:::i;:::-;;22758:187:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1936:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2619:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1657:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;526:38:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:6;;;;;;;;;;;;;:::i;:::-;;2280:144:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4019:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1194:85:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2428:107:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;781:50:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3567:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2858:274:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;835:48:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1548:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4105:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1838:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2110:166:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:198:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1746:88:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3136:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:630:2;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;2539:76:3:-;1087:13:6;:11;:13::i;:::-;2602:8:3::1;;;;;;;;;;;2601:9;2590:8;;:20;;;;;;;;;;;;;;;;;;2539:76::o:0;10039:98:2:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;5894:317::-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;712:28:3:-;;;;;;;;;;;;;:::o;19903:2764:2:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;745:32:3:-;;;;:::o;4339:151::-;1087:13:6;:11;:13::i;:::-;2495:1:7::1;3076:7;;:19:::0;3068:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2495:1;3206:7;:18;;;;4396:12:3::2;4411:21;4396:36;;4439:44;4465:7;:5;:7::i;:::-;4475;4439:17;:44::i;:::-;4390:100;2452:1:7::1;3379:7;:22;;;;4339:151:3:o:0;22758:187:2:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;1936:170:3:-;1087:13:6;:11;:13::i;:::-;2042:6:3::1;2008:31;:40;;;;2059:42;2094:6;2059:42;;;;;;:::i;:::-;;;;;;;;1936:170:::0;:::o;2619:124::-;1087:13:6;:11;:13::i;:::-;2701:7:3::1;2685:13;:23;;;;;;:::i;:::-;;2719:19;2730:7;2719:19;;;;;;:::i;:::-;;;;;;;;2619:124:::0;:::o;1657:85::-;1087:13:6;:11;:13::i;:::-;1734:3:3::1;1716:15;:21;;;;1657:85:::0;:::o;11391:150:2:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;526:38:3:-;;;;:::o;7045:230:2:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1824:101:6:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2280:144:3:-;1087:13:6;:11;:13::i;:::-;2368::3::1;2355:10;:26;;;;2392:27;2405:13;2392:27;;;;;;:::i;:::-;;;;;;;;2280:144:::0;:::o;4019:82::-;1087:13:6;:11;:13::i;:::-;4082:14:3::1;4088:7;4082:5;:14::i;:::-;4019:82:::0;:::o;1194:85:6:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;2428:107:3:-;1087:13:6;:11;:13::i;:::-;2497:6:3::1;2485:9;:18;;;;2514:16;2523:6;2514:16;;;;;;:::i;:::-;;;;;;;;2428:107:::0;:::o;10208:102:2:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;781:50:3:-;;;;:::o;3567:448::-;3627:6;1297:10;1284:23;;:9;:23;;;1276:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;1390:1;1376:11;:15;:90;;;;;1437:29;;1422:11;1395:24;1408:10;1395:12;:24::i;:::-;:38;;;;:::i;:::-;:71;;1376:90;1361:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;3646:6:::1;1035:21;1059:13;:11;:13::i;:::-;1035:37;;1104:10;;1087:13;:27;;1079:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1179:10;;1164:11;1148:13;:27;;;;:::i;:::-;:41;;1140:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2495:1:7::2;3076:7;;:19:::0;3068:63:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;2495:1;3206:7;:18;;;;3692:7:3::3;:5;:7::i;:::-;3678:21;;:10;:21;;;3674:92;;3717:8;;;;;;;;;;;3709:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;3674:92;3791:31;;3781:6;:41;;3772:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;3897:6;3885:9;;:18;;;;:::i;:::-;3871:9;:33;;3863:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;3945:29;3955:10;3967:6;3945:9;:29::i;:::-;3986:24;3991:10;4003:6;3986:24;;;;;;;:::i;:::-;;;;;;;;2452:1:7::2;3379:7;:22;;;;1029:192:3::1;1538:1;3567:448:::0;;:::o;16901:231:2:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;2858:274:3:-;1087:13:6;:11;:13::i;:::-;2934:14:3::1;2951:13;:11;:13::i;:::-;2934:30;;2998:10;;2988:6;2979;:15;;;;:::i;:::-;:29;;2971:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3059:10;;3049:6;:20;;3041:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;3100:27;3110:8;3120:6;3100:9;:27::i;:::-;2928:204;2858:274:::0;;:::o;10411:313:2:-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;835:48:3:-;;;;:::o;1548:105::-;1606:7;1628:20;1642:5;1628:13;:20::i;:::-;1621:27;;1548:105;;;:::o;4105:230::-;1087:13:6;:11;:13::i;:::-;4180:11:3::1;4194:8;:15;4180:29;;4224:9;4219:112;4239:3;4235:1;:7;4219:112;;;4263:15;4281:8;4290:1;4281:11;;;;;;;;:::i;:::-;;;;;;;;4263:29;;4306:14;4312:7;4306:5;:14::i;:::-;4249:82;4244:3;;;;;:::i;:::-;;;;4219:112;;;;4170:165;4105:230:::0;:::o;1838:93::-;1890:7;1912:14;;1905:21;;1838:93;:::o;17282:162:2:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2110:166:3:-;1087:13:6;:11;:13::i;:::-;2223:6:3::1;2191:29;:38;;;;2240:31;2264:6;2240:31;;;;;;:::i;:::-;;;;;;;;2110:166:::0;:::o;2074:198:6:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1746:88:3:-;1087:13:6;:11;:13::i;:::-;1826:3:3::1;1809:14;:20;;;;1746:88:::0;:::o;3136:427::-;1087:13:6;:11;:13::i;:::-;3229:14:3::1;3246:13;:11;:13::i;:::-;3229:30;;3293:10;;3283:6;3274;:15;;;;:::i;:::-;:29;;3266:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3354:10;;3344:6;:20;;3336:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;3400:9;3395:164;3419:9;;:16;;3415:1;:20;3395:164;;;3482:1;3458:26;;:9;;3468:1;3458:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;::::0;3450:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3521:31;3531:9;;3541:1;3531:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3545:6;3521:9;:31::i;:::-;3437:3;;;;;:::i;:::-;;;;3395:164;;;;3223:340;3136:427:::0;;;:::o;1352:130:6:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;17693:277:2:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;5426:90::-;5482:7;5426:90;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;2412:312:0:-;2526:6;2501:21;:31;;2493:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2578:12;2596:9;:14;;2618:6;2596:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2483:241;2412:312;;:::o;2426:187:6:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;33791:87:2:-;33850:21;33856:7;33865:5;33850;:21::i;:::-;33791:87;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;2748:106:3:-;2808:13;2836;2829:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2748:106;:::o;39637:1708:2:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;40690:419;41070:25;40690:419;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;7352:176::-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;38475:143:2:-;38608:6;38475:143;;;;;:::o;34095:3015::-;34174:27;34204;34223:7;34204:18;:27::i;:::-;34174:57;;34242:12;34273:19;34242:52;;34306:27;34335:23;34362:35;34389:7;34362:26;:35::i;:::-;34305:92;;;;34412:13;34408:312;;;34531:68;34556:15;34573:4;34579:19;:17;:19::i;:::-;34531:24;:68::i;:::-;34526:183;;34622:43;34639:4;34645:19;:17;:19::i;:::-;34622:16;:43::i;:::-;34617:92;;34674:35;;;;;;;;;;;;;;34617:92;34526:183;34408:312;34730:51;34752:4;34766:1;34770:7;34779:1;34730:21;:51::i;:::-;34870:15;34867:157;;;35008:1;34987:19;34980:30;34867:157;35672:1;1619:3;35642:1;:26;;35641:32;35613:18;:24;35632:4;35613:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;35933:173;35969:4;36039:53;36054:4;36068:1;36072:19;36039:14;:53::i;:::-;2392:8;2118;35992:43;35991:101;35933:18;:173::i;:::-;35904:17;:26;35922:7;35904:26;;;;;;;;;;;:202;;;;36274:1;2392:8;36223:19;:47;:52;36219:617;;36295:19;36327:1;36317:7;:11;36295:33;;36482:1;36448:17;:30;36466:11;36448:30;;;;;;;;;;;;:35;36444:378;;36584:13;;36569:11;:28;36565:239;;36762:19;36729:17;:30;36747:11;36729:30;;;;;;;;;;;:52;;;;36565:239;36444:378;36277:559;36219:617;36888:7;36884:1;36861:35;;36870:4;36861:35;;;;;;;;;;;;36906:50;36927:4;36941:1;36945:7;36954:1;36906:20;:50::i;:::-;37079:12;;:14;;;;;;;;;;;;;34164:2946;;;;34095:3015;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;27091:2902::-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;7:75:8:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:311::-;12168:4;12258:18;12250:6;12247:30;12244:56;;;12280:18;;:::i;:::-;12244:56;12330:4;12322:6;12318:17;12310:25;;12390:4;12384;12380:15;12372:23;;12091:311;;;:::o;12408:117::-;12517:1;12514;12507:12;12548:710;12644:5;12669:81;12685:64;12742:6;12685:64;:::i;:::-;12669:81;:::i;:::-;12660:90;;12770:5;12799:6;12792:5;12785:21;12833:4;12826:5;12822:16;12815:23;;12886:4;12878:6;12874:17;12866:6;12862:30;12915:3;12907:6;12904:15;12901:122;;;12934:79;;:::i;:::-;12901:122;13049:6;13032:220;13066:6;13061:3;13058:15;13032:220;;;13141:3;13170:37;13203:3;13191:10;13170:37;:::i;:::-;13165:3;13158:50;13237:4;13232:3;13228:14;13221:21;;13108:144;13092:4;13087:3;13083:14;13076:21;;13032:220;;;13036:21;12650:608;;12548:710;;;;;:::o;13281:370::-;13352:5;13401:3;13394:4;13386:6;13382:17;13378:27;13368:122;;13409:79;;:::i;:::-;13368:122;13526:6;13513:20;13551:94;13641:3;13633:6;13626:4;13618:6;13614:17;13551:94;:::i;:::-;13542:103;;13358:293;13281:370;;;;:::o;13657:539::-;13741:6;13790:2;13778:9;13769:7;13765:23;13761:32;13758:119;;;13796:79;;:::i;:::-;13758:119;13944:1;13933:9;13929:17;13916:31;13974:18;13966:6;13963:30;13960:117;;;13996:79;;:::i;:::-;13960:117;14101:78;14171:7;14162:6;14151:9;14147:22;14101:78;:::i;:::-;14091:88;;13887:302;13657:539;;;;:::o;14202:474::-;14270:6;14278;14327:2;14315:9;14306:7;14302:23;14298:32;14295:119;;;14333:79;;:::i;:::-;14295:119;14453:1;14478:53;14523:7;14514:6;14503:9;14499:22;14478:53;:::i;:::-;14468:63;;14424:117;14580:2;14606:53;14651:7;14642:6;14631:9;14627:22;14606:53;:::i;:::-;14596:63;;14551:118;14202:474;;;;;:::o;14682:117::-;14791:1;14788;14781:12;14822:568;14895:8;14905:6;14955:3;14948:4;14940:6;14936:17;14932:27;14922:122;;14963:79;;:::i;:::-;14922:122;15076:6;15063:20;15053:30;;15106:18;15098:6;15095:30;15092:117;;;15128:79;;:::i;:::-;15092:117;15242:4;15234:6;15230:17;15218:29;;15296:3;15288:4;15280:6;15276:17;15266:8;15262:32;15259:41;15256:128;;;15303:79;;:::i;:::-;15256:128;14822:568;;;;;:::o;15396:704::-;15491:6;15499;15507;15556:2;15544:9;15535:7;15531:23;15527:32;15524:119;;;15562:79;;:::i;:::-;15524:119;15682:1;15707:53;15752:7;15743:6;15732:9;15728:22;15707:53;:::i;:::-;15697:63;;15653:117;15837:2;15826:9;15822:18;15809:32;15868:18;15860:6;15857:30;15854:117;;;15890:79;;:::i;:::-;15854:117;16003:80;16075:7;16066:6;16055:9;16051:22;16003:80;:::i;:::-;15985:98;;;;15780:313;15396:704;;;;;:::o;16106:180::-;16154:77;16151:1;16144:88;16251:4;16248:1;16241:15;16275:4;16272:1;16265:15;16292:320;16336:6;16373:1;16367:4;16363:12;16353:22;;16420:1;16414:4;16410:12;16441:18;16431:81;;16497:4;16489:6;16485:17;16475:27;;16431:81;16559:2;16551:6;16548:14;16528:18;16525:38;16522:84;;16578:18;;:::i;:::-;16522:84;16343:269;16292:320;;;:::o;16618:181::-;16758:33;16754:1;16746:6;16742:14;16735:57;16618:181;:::o;16805:366::-;16947:3;16968:67;17032:2;17027:3;16968:67;:::i;:::-;16961:74;;17044:93;17133:3;17044:93;:::i;:::-;17162:2;17157:3;17153:12;17146:19;;16805:366;;;:::o;17177:419::-;17343:4;17381:2;17370:9;17366:18;17358:26;;17430:9;17424:4;17420:20;17416:1;17405:9;17401:17;17394:47;17458:131;17584:4;17458:131;:::i;:::-;17450:139;;17177:419;;;:::o;17602:141::-;17651:4;17674:3;17666:11;;17697:3;17694:1;17687:14;17731:4;17728:1;17718:18;17710:26;;17602:141;;;:::o;17749:93::-;17786:6;17833:2;17828;17821:5;17817:14;17813:23;17803:33;;17749:93;;;:::o;17848:107::-;17892:8;17942:5;17936:4;17932:16;17911:37;;17848:107;;;;:::o;17961:393::-;18030:6;18080:1;18068:10;18064:18;18103:97;18133:66;18122:9;18103:97;:::i;:::-;18221:39;18251:8;18240:9;18221:39;:::i;:::-;18209:51;;18293:4;18289:9;18282:5;18278:21;18269:30;;18342:4;18332:8;18328:19;18321:5;18318:30;18308:40;;18037:317;;17961:393;;;;;:::o;18360:60::-;18388:3;18409:5;18402:12;;18360:60;;;:::o;18426:142::-;18476:9;18509:53;18527:34;18536:24;18554:5;18536:24;:::i;:::-;18527:34;:::i;:::-;18509:53;:::i;:::-;18496:66;;18426:142;;;:::o;18574:75::-;18617:3;18638:5;18631:12;;18574:75;;;:::o;18655:269::-;18765:39;18796:7;18765:39;:::i;:::-;18826:91;18875:41;18899:16;18875:41;:::i;:::-;18867:6;18860:4;18854:11;18826:91;:::i;:::-;18820:4;18813:105;18731:193;18655:269;;;:::o;18930:73::-;18975:3;18930:73;:::o;19009:189::-;19086:32;;:::i;:::-;19127:65;19185:6;19177;19171:4;19127:65;:::i;:::-;19062:136;19009:189;;:::o;19204:186::-;19264:120;19281:3;19274:5;19271:14;19264:120;;;19335:39;19372:1;19365:5;19335:39;:::i;:::-;19308:1;19301:5;19297:13;19288:22;;19264:120;;;19204:186;;:::o;19396:543::-;19497:2;19492:3;19489:11;19486:446;;;19531:38;19563:5;19531:38;:::i;:::-;19615:29;19633:10;19615:29;:::i;:::-;19605:8;19601:44;19798:2;19786:10;19783:18;19780:49;;;19819:8;19804:23;;19780:49;19842:80;19898:22;19916:3;19898:22;:::i;:::-;19888:8;19884:37;19871:11;19842:80;:::i;:::-;19501:431;;19486:446;19396:543;;;:::o;19945:117::-;19999:8;20049:5;20043:4;20039:16;20018:37;;19945:117;;;;:::o;20068:169::-;20112:6;20145:51;20193:1;20189:6;20181:5;20178:1;20174:13;20145:51;:::i;:::-;20141:56;20226:4;20220;20216:15;20206:25;;20119:118;20068:169;;;;:::o;20242:295::-;20318:4;20464:29;20489:3;20483:4;20464:29;:::i;:::-;20456:37;;20526:3;20523:1;20519:11;20513:4;20510:21;20502:29;;20242:295;;;;:::o;20542:1395::-;20659:37;20692:3;20659:37;:::i;:::-;20761:18;20753:6;20750:30;20747:56;;;20783:18;;:::i;:::-;20747:56;20827:38;20859:4;20853:11;20827:38;:::i;:::-;20912:67;20972:6;20964;20958:4;20912:67;:::i;:::-;21006:1;21030:4;21017:17;;21062:2;21054:6;21051:14;21079:1;21074:618;;;;21736:1;21753:6;21750:77;;;21802:9;21797:3;21793:19;21787:26;21778:35;;21750:77;21853:67;21913:6;21906:5;21853:67;:::i;:::-;21847:4;21840:81;21709:222;21044:887;;21074:618;21126:4;21122:9;21114:6;21110:22;21160:37;21192:4;21160:37;:::i;:::-;21219:1;21233:208;21247:7;21244:1;21241:14;21233:208;;;21326:9;21321:3;21317:19;21311:26;21303:6;21296:42;21377:1;21369:6;21365:14;21355:24;;21424:2;21413:9;21409:18;21396:31;;21270:4;21267:1;21263:12;21258:17;;21233:208;;;21469:6;21460:7;21457:19;21454:179;;;21527:9;21522:3;21518:19;21512:26;21570:48;21612:4;21604:6;21600:17;21589:9;21570:48;:::i;:::-;21562:6;21555:64;21477:156;21454:179;21679:1;21675;21667:6;21663:14;21659:22;21653:4;21646:36;21081:611;;;21044:887;;20634:1303;;;20542:1395;;:::o;21943:230::-;22083:34;22079:1;22071:6;22067:14;22060:58;22152:13;22147:2;22139:6;22135:15;22128:38;21943:230;:::o;22179:366::-;22321:3;22342:67;22406:2;22401:3;22342:67;:::i;:::-;22335:74;;22418:93;22507:3;22418:93;:::i;:::-;22536:2;22531:3;22527:12;22520:19;;22179:366;;;:::o;22551:419::-;22717:4;22755:2;22744:9;22740:18;22732:26;;22804:9;22798:4;22794:20;22790:1;22779:9;22775:17;22768:47;22832:131;22958:4;22832:131;:::i;:::-;22824:139;;22551:419;;;:::o;22976:180::-;23024:77;23021:1;23014:88;23121:4;23118:1;23111:15;23145:4;23142:1;23135:15;23162:191;23202:3;23221:20;23239:1;23221:20;:::i;:::-;23216:25;;23255:20;23273:1;23255:20;:::i;:::-;23250:25;;23298:1;23295;23291:9;23284:16;;23319:3;23316:1;23313:10;23310:36;;;23326:18;;:::i;:::-;23310:36;23162:191;;;;:::o;23359:236::-;23499:34;23495:1;23487:6;23483:14;23476:58;23568:19;23563:2;23555:6;23551:15;23544:44;23359:236;:::o;23601:366::-;23743:3;23764:67;23828:2;23823:3;23764:67;:::i;:::-;23757:74;;23840:93;23929:3;23840:93;:::i;:::-;23958:2;23953:3;23949:12;23942:19;;23601:366;;;:::o;23973:419::-;24139:4;24177:2;24166:9;24162:18;24154:26;;24226:9;24220:4;24216:20;24212:1;24201:9;24197:17;24190:47;24254:131;24380:4;24254:131;:::i;:::-;24246:139;;23973:419;;;:::o;24398:165::-;24538:17;24534:1;24526:6;24522:14;24515:41;24398:165;:::o;24569:366::-;24711:3;24732:67;24796:2;24791:3;24732:67;:::i;:::-;24725:74;;24808:93;24897:3;24808:93;:::i;:::-;24926:2;24921:3;24917:12;24910:19;;24569:366;;;:::o;24941:419::-;25107:4;25145:2;25134:9;25130:18;25122:26;;25194:9;25188:4;25184:20;25180:1;25169:9;25165:17;25158:47;25222:131;25348:4;25222:131;:::i;:::-;25214:139;;24941:419;;;:::o;25366:165::-;25506:17;25502:1;25494:6;25490:14;25483:41;25366:165;:::o;25537:366::-;25679:3;25700:67;25764:2;25759:3;25700:67;:::i;:::-;25693:74;;25776:93;25865:3;25776:93;:::i;:::-;25894:2;25889:3;25885:12;25878:19;;25537:366;;;:::o;25909:419::-;26075:4;26113:2;26102:9;26098:18;26090:26;;26162:9;26156:4;26152:20;26148:1;26137:9;26133:17;26126:47;26190:131;26316:4;26190:131;:::i;:::-;26182:139;;25909:419;;;:::o;26334:179::-;26474:31;26470:1;26462:6;26458:14;26451:55;26334:179;:::o;26519:366::-;26661:3;26682:67;26746:2;26741:3;26682:67;:::i;:::-;26675:74;;26758:93;26847:3;26758:93;:::i;:::-;26876:2;26871:3;26867:12;26860:19;;26519:366;;;:::o;26891:419::-;27057:4;27095:2;27084:9;27080:18;27072:26;;27144:9;27138:4;27134:20;27130:1;27119:9;27115:17;27108:47;27172:131;27298:4;27172:131;:::i;:::-;27164:139;;26891:419;;;:::o;27316:180::-;27456:32;27452:1;27444:6;27440:14;27433:56;27316:180;:::o;27502:366::-;27644:3;27665:67;27729:2;27724:3;27665:67;:::i;:::-;27658:74;;27741:93;27830:3;27741:93;:::i;:::-;27859:2;27854:3;27850:12;27843:19;;27502:366;;;:::o;27874:419::-;28040:4;28078:2;28067:9;28063:18;28055:26;;28127:9;28121:4;28117:20;28113:1;28102:9;28098:17;28091:47;28155:131;28281:4;28155:131;:::i;:::-;28147:139;;27874:419;;;:::o;28299:410::-;28339:7;28362:20;28380:1;28362:20;:::i;:::-;28357:25;;28396:20;28414:1;28396:20;:::i;:::-;28391:25;;28451:1;28448;28444:9;28473:30;28491:11;28473:30;:::i;:::-;28462:41;;28652:1;28643:7;28639:15;28636:1;28633:22;28613:1;28606:9;28586:83;28563:139;;28682:18;;:::i;:::-;28563:139;28347:362;28299:410;;;;:::o;28715:179::-;28855:31;28851:1;28843:6;28839:14;28832:55;28715:179;:::o;28900:366::-;29042:3;29063:67;29127:2;29122:3;29063:67;:::i;:::-;29056:74;;29139:93;29228:3;29139:93;:::i;:::-;29257:2;29252:3;29248:12;29241:19;;28900:366;;;:::o;29272:419::-;29438:4;29476:2;29465:9;29461:18;29453:26;;29525:9;29519:4;29515:20;29511:1;29500:9;29496:17;29489:47;29553:131;29679:4;29553:131;:::i;:::-;29545:139;;29272:419;;;:::o;29697:332::-;29818:4;29856:2;29845:9;29841:18;29833:26;;29869:71;29937:1;29926:9;29922:17;29913:6;29869:71;:::i;:::-;29950:72;30018:2;30007:9;30003:18;29994:6;29950:72;:::i;:::-;29697:332;;;;;:::o;30035:172::-;30175:24;30171:1;30163:6;30159:14;30152:48;30035:172;:::o;30213:366::-;30355:3;30376:67;30440:2;30435:3;30376:67;:::i;:::-;30369:74;;30452:93;30541:3;30452:93;:::i;:::-;30570:2;30565:3;30561:12;30554:19;;30213:366;;;:::o;30585:419::-;30751:4;30789:2;30778:9;30774:18;30766:26;;30838:9;30832:4;30828:20;30824:1;30813:9;30809:17;30802:47;30866:131;30992:4;30866:131;:::i;:::-;30858:139;;30585:419;;;:::o;31010:169::-;31150:21;31146:1;31138:6;31134:14;31127:45;31010:169;:::o;31185:366::-;31327:3;31348:67;31412:2;31407:3;31348:67;:::i;:::-;31341:74;;31424:93;31513:3;31424:93;:::i;:::-;31542:2;31537:3;31533:12;31526:19;;31185:366;;;:::o;31557:419::-;31723:4;31761:2;31750:9;31746:18;31738:26;;31810:9;31804:4;31800:20;31796:1;31785:9;31781:17;31774:47;31838:131;31964:4;31838:131;:::i;:::-;31830:139;;31557:419;;;:::o;31982:148::-;32084:11;32121:3;32106:18;;31982:148;;;;:::o;32136:390::-;32242:3;32270:39;32303:5;32270:39;:::i;:::-;32325:89;32407:6;32402:3;32325:89;:::i;:::-;32318:96;;32423:65;32481:6;32476:3;32469:4;32462:5;32458:16;32423:65;:::i;:::-;32513:6;32508:3;32504:16;32497:23;;32246:280;32136:390;;;;:::o;32532:435::-;32712:3;32734:95;32825:3;32816:6;32734:95;:::i;:::-;32727:102;;32846:95;32937:3;32928:6;32846:95;:::i;:::-;32839:102;;32958:3;32951:10;;32532:435;;;;;:::o;32973:180::-;33021:77;33018:1;33011:88;33118:4;33115:1;33108:15;33142:4;33139:1;33132:15;33159:233;33198:3;33221:24;33239:5;33221:24;:::i;:::-;33212:33;;33267:66;33260:5;33257:77;33254:103;;33337:18;;:::i;:::-;33254:103;33384:1;33377:5;33373:13;33366:20;;33159:233;;;:::o;33398:225::-;33538:34;33534:1;33526:6;33522:14;33515:58;33607:8;33602:2;33594:6;33590:15;33583:33;33398:225;:::o;33629:366::-;33771:3;33792:67;33856:2;33851:3;33792:67;:::i;:::-;33785:74;;33868:93;33957:3;33868:93;:::i;:::-;33986:2;33981:3;33977:12;33970:19;;33629:366;;;:::o;34001:419::-;34167:4;34205:2;34194:9;34190:18;34182:26;;34254:9;34248:4;34244:20;34240:1;34229:9;34225:17;34218:47;34282:131;34408:4;34282:131;:::i;:::-;34274:139;;34001:419;;;:::o;34426:174::-;34566:26;34562:1;34554:6;34550:14;34543:50;34426:174;:::o;34606:366::-;34748:3;34769:67;34833:2;34828:3;34769:67;:::i;:::-;34762:74;;34845:93;34934:3;34845:93;:::i;:::-;34963:2;34958:3;34954:12;34947:19;;34606:366;;;:::o;34978:419::-;35144:4;35182:2;35171:9;35167:18;35159:26;;35231:9;35225:4;35221:20;35217:1;35206:9;35202:17;35195:47;35259:131;35385:4;35259:131;:::i;:::-;35251:139;;34978:419;;;:::o;35403:182::-;35543:34;35539:1;35531:6;35527:14;35520:58;35403:182;:::o;35591:366::-;35733:3;35754:67;35818:2;35813:3;35754:67;:::i;:::-;35747:74;;35830:93;35919:3;35830:93;:::i;:::-;35948:2;35943:3;35939:12;35932:19;;35591:366;;;:::o;35963:419::-;36129:4;36167:2;36156:9;36152:18;36144:26;;36216:9;36210:4;36206:20;36202:1;36191:9;36187:17;36180:47;36244:131;36370:4;36244:131;:::i;:::-;36236:139;;35963:419;;;:::o;36388:179::-;36528:31;36524:1;36516:6;36512:14;36505:55;36388:179;:::o;36573:366::-;36715:3;36736:67;36800:2;36795:3;36736:67;:::i;:::-;36729:74;;36812:93;36901:3;36812:93;:::i;:::-;36930:2;36925:3;36921:12;36914:19;;36573:366;;;:::o;36945:419::-;37111:4;37149:2;37138:9;37134:18;37126:26;;37198:9;37192:4;37188:20;37184:1;37173:9;37169:17;37162:47;37226:131;37352:4;37226:131;:::i;:::-;37218:139;;36945:419;;;:::o;37370:147::-;37471:11;37508:3;37493:18;;37370:147;;;;:::o;37523:114::-;;:::o;37643:398::-;37802:3;37823:83;37904:1;37899:3;37823:83;:::i;:::-;37816:90;;37915:93;38004:3;37915:93;:::i;:::-;38033:1;38028:3;38024:11;38017:18;;37643:398;;;:::o;38047:379::-;38231:3;38253:147;38396:3;38253:147;:::i;:::-;38246:154;;38417:3;38410:10;;38047:379;;;:::o;38432:245::-;38572:34;38568:1;38560:6;38556:14;38549:58;38641:28;38636:2;38628:6;38624:15;38617:53;38432:245;:::o;38683:366::-;38825:3;38846:67;38910:2;38905:3;38846:67;:::i;:::-;38839:74;;38922:93;39011:3;38922:93;:::i;:::-;39040:2;39035:3;39031:12;39024:19;;38683:366;;;:::o;39055:419::-;39221:4;39259:2;39248:9;39244:18;39236:26;;39308:9;39302:4;39298:20;39294:1;39283:9;39279:17;39272:47;39336:131;39462:4;39336:131;:::i;:::-;39328:139;;39055:419;;;:::o;39480:98::-;39531:6;39565:5;39559:12;39549:22;;39480:98;;;:::o;39584:168::-;39667:11;39701:6;39696:3;39689:19;39741:4;39736:3;39732:14;39717:29;;39584:168;;;;:::o;39758:373::-;39844:3;39872:38;39904:5;39872:38;:::i;:::-;39926:70;39989:6;39984:3;39926:70;:::i;:::-;39919:77;;40005:65;40063:6;40058:3;40051:4;40044:5;40040:16;40005:65;:::i;:::-;40095:29;40117:6;40095:29;:::i;:::-;40090:3;40086:39;40079:46;;39848:283;39758:373;;;;:::o;40137:640::-;40332:4;40370:3;40359:9;40355:19;40347:27;;40384:71;40452:1;40441:9;40437:17;40428:6;40384:71;:::i;:::-;40465:72;40533:2;40522:9;40518:18;40509:6;40465:72;:::i;:::-;40547;40615:2;40604:9;40600:18;40591:6;40547:72;:::i;:::-;40666:9;40660:4;40656:20;40651:2;40640:9;40636:18;40629:48;40694:76;40765:4;40756:6;40694:76;:::i;:::-;40686:84;;40137:640;;;;;;;:::o;40783:141::-;40839:5;40870:6;40864:13;40855:22;;40886:32;40912:5;40886:32;:::i;:::-;40783:141;;;;:::o;40930:349::-;40999:6;41048:2;41036:9;41027:7;41023:23;41019:32;41016:119;;;41054:79;;:::i;:::-;41016:119;41174:1;41199:63;41254:7;41245:6;41234:9;41230:22;41199:63;:::i;:::-;41189:73;;41145:127;40930:349;;;;:::o

Swarm Source

ipfs://34c0b5665a7efb2e99108514daef31846db6836cc61d84dc700f769e7ad5f60c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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