ETH Price: $3,518.27 (+2.84%)
Gas: 4 Gwei

Token

Metapolitans (MP)
 

Overview

Max Total Supply

1,281 MP

Holders

261

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MP
0x6a8a1a7af701809f0a3105f9b8cc83fcd0421eb0
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:
Metapolitans

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 5 of 7: Metapolitans.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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

contract Metapolitans is ERC721A, ReentrancyGuard, Ownable  {

  event SetMaximumAllowedTokens(uint256 _count);
  event SetPrice(uint256 _price);
  event SetBaseUri(string baseURI);
  event Mint(address userAddress, uint256 _count);

  uint256 public mintPrice = 0.3 ether;

  bytes32 public merkleRoot;
  string  private _baseTokenURI;

  bool public isActive = false;

  uint256 public constant MAX_SUPPLY = 4400;
  uint256 public maximumAllowedTokensPerPurchase = 10;

  constructor(string memory baseURI) ERC721A("Metapolitans", "MP") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() < MAX_SUPPLY, "Sale has ended.");
    _;
  }
  
  function setMaximumAllowedTokens(uint256 _count) external onlyOwner {
    maximumAllowedTokensPerPurchase = _count;
    emit SetMaximumAllowedTokens(_count);
  }

  function setPrice(uint256 _price) external 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 saleIsOpen {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    _safeMint(_address, _count);
  }

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

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

  function mint(uint256 _count) external payable saleIsOpen {
    uint256 mintIndex = totalSupply();

     if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    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 withdraw() external onlyOwner nonReentrant {
    uint balance = address(this).balance;
    Address.sendValue(payable(owner()), balance);  
  }
}

File 1 of 7: 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 7: 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 7: 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 4 of 7: 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 7: 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 7 of 7: 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].
 */
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":"SetMaximumAllowedTokens","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"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":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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"}]

6080604052670429d069189e0000600a556000600d60006101000a81548160ff021916908315150217905550600a600e553480156200003d57600080fd5b5060405162003cd438038062003cd48339818101604052810190620000639190620004ca565b6040518060400160405280600c81526020017f4d657461706f6c6974616e7300000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d500000000000000000000000000000000000000000000000000000000000008152508160029081620000e0919062000766565b508060039081620000f2919062000766565b50620001036200014b60201b60201c565b6000819055505050600160088190555062000133620001276200015060201b60201c565b6200015860201b60201c565b62000144816200021e60201b60201c565b5062000935565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022e6200027c60201b60201c565b80600c90816200023f919062000766565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d5816040516200027191906200089f565b60405180910390a150565b6200028c6200015060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b26200030d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003029062000913565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003a08262000355565b810181811067ffffffffffffffff82111715620003c257620003c162000366565b5b80604052505050565b6000620003d762000337565b9050620003e5828262000395565b919050565b600067ffffffffffffffff82111562000408576200040762000366565b5b620004138262000355565b9050602081019050919050565b60005b838110156200044057808201518184015260208101905062000423565b60008484015250505050565b6000620004636200045d84620003ea565b620003cb565b90508281526020810184848401111562000482576200048162000350565b5b6200048f84828562000420565b509392505050565b600082601f830112620004af57620004ae6200034b565b5b8151620004c18482602086016200044c565b91505092915050565b600060208284031215620004e357620004e262000341565b5b600082015167ffffffffffffffff81111562000504576200050362000346565b5b620005128482850162000497565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056e57607f821691505b60208210810362000584576200058362000526565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ee7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005af565b620005fa8683620005af565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000647620006416200063b8462000612565b6200061c565b62000612565b9050919050565b6000819050919050565b620006638362000626565b6200067b62000672826200064e565b848454620005bc565b825550505050565b600090565b6200069262000683565b6200069f81848462000658565b505050565b5b81811015620006c757620006bb60008262000688565b600181019050620006a5565b5050565b601f8211156200071657620006e0816200058a565b620006eb846200059f565b81016020851015620006fb578190505b620007136200070a856200059f565b830182620006a4565b50505b505050565b600082821c905092915050565b60006200073b600019846008026200071b565b1980831691505092915050565b600062000756838362000728565b9150826002028217905092915050565b62000771826200051b565b67ffffffffffffffff8111156200078d576200078c62000366565b5b62000799825462000555565b620007a6828285620006cb565b600060209050601f831160018114620007de5760008415620007c9578287015190505b620007d5858262000748565b86555062000845565b601f198416620007ee866200058a565b60005b828110156200081857848901518255600182019150602085019450602081019050620007f1565b8683101562000838578489015162000834601f89168262000728565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b60006200086b826200051b565b6200087781856200084d565b93506200088981856020860162000420565b620008948162000355565b840191505092915050565b60006020820190508181036000830152620008bb81846200085e565b905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008fb6020836200084d565b91506200090882620008c3565b602082019050919050565b600060208201905081810360008301526200092e81620008ec565b9050919050565b61338f80620009456000396000f3fe6080604052600436106101cd5760003560e01c80636817c76c116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146105e7578063e985e9c514610624578063f2fde38b14610661578063fb7e6ccb1461068a576101cd565b8063a0712d681461055d578063a22cb46514610579578063b88d4fde146105a2578063bc63f02e146105be576101cd565b80638da5cb5b116100d15780638da5cb5b146104b357806391b7f5ed146104de57806395d89b41146105075780639a3bf72814610532576101cd565b80636817c76c1461043457806370a082311461045f578063715018a61461049c576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103895780634dfea627146103a557806355f804b3146103ce5780636352211e146103f7576101cd565b806323b872dd146103005780632eb4a7ab1461031c57806332cb6b0c146103475780633ccfd60b14610372576101cd565b8063081812fc116101ab578063081812fc14610251578063095ea7b31461028e57806318160ddd146102aa57806322f3e2d4146102d5576101cd565b806301ffc9a7146101d2578063049c5c491461020f57806306fdde0314610226575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612151565b6106b3565b6040516102069190612199565b60405180910390f35b34801561021b57600080fd5b50610224610745565b005b34801561023257600080fd5b5061023b610779565b6040516102489190612244565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061229c565b61080b565b604051610285919061230a565b60405180910390f35b6102a860048036038101906102a39190612351565b61088a565b005b3480156102b657600080fd5b506102bf6109ce565b6040516102cc91906123a0565b60405180910390f35b3480156102e157600080fd5b506102ea6109e5565b6040516102f79190612199565b60405180910390f35b61031a600480360381019061031591906123bb565b6109f8565b005b34801561032857600080fd5b50610331610d1a565b60405161033e9190612427565b60405180910390f35b34801561035357600080fd5b5061035c610d20565b60405161036991906123a0565b60405180910390f35b34801561037e57600080fd5b50610387610d26565b005b6103a3600480360381019061039e91906123bb565b610d9c565b005b3480156103b157600080fd5b506103cc60048036038101906103c7919061229c565b610dbc565b005b3480156103da57600080fd5b506103f560048036038101906103f09190612577565b610e05565b005b34801561040357600080fd5b5061041e6004803603810190610419919061229c565b610e57565b60405161042b919061230a565b60405180910390f35b34801561044057600080fd5b50610449610e69565b60405161045691906123a0565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906125c0565b610e6f565b60405161049391906123a0565b60405180910390f35b3480156104a857600080fd5b506104b1610f27565b005b3480156104bf57600080fd5b506104c8610f3b565b6040516104d5919061230a565b60405180910390f35b3480156104ea57600080fd5b506105056004803603810190610500919061229c565b610f65565b005b34801561051357600080fd5b5061051c610fae565b6040516105299190612244565b60405180910390f35b34801561053e57600080fd5b50610547611040565b60405161055491906123a0565b60405180910390f35b6105776004803603810190610572919061229c565b611046565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612619565b611253565b005b6105bc60048036038101906105b791906126fa565b61135e565b005b3480156105ca57600080fd5b506105e560048036038101906105e0919061277d565b6113d1565b005b3480156105f357600080fd5b5061060e6004803603810190610609919061229c565b61148f565b60405161061b9190612244565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906127bd565b61152d565b6040516106589190612199565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906125c0565b6115c1565b005b34801561069657600080fd5b506106b160048036038101906106ac919061285d565b611644565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61074d6117e2565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b606060028054610788906128ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107b4906128ec565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b600061081682611860565b61084c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089582610e57565b90508073ffffffffffffffffffffffffffffffffffffffff166108b66118bf565b73ffffffffffffffffffffffffffffffffffffffff1614610919576108e2816108dd6118bf565b61152d565b610918576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109d86118c7565b6001546000540303905090565b600d60009054906101000a900460ff1681565b6000610a03826118cc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7684611998565b91509150610a8c8187610a876118bf565b6119bf565b610ad857610aa186610a9c6118bf565b61152d565b610ad7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b3e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4b8686866001611a03565b8015610b5657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2485610c00888887611a09565b7c020000000000000000000000000000000000000000000000000000000017611a31565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610caa5760006001850190506000600460008381526020019081526020016000205403610ca8576000548114610ca7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d128686866001611a5c565b505050505050565b600b5481565b61113081565b610d2e6117e2565b600260085403610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90612969565b60405180910390fd5b60026008819055506000479050610d91610d8b610f3b565b82611a62565b506001600881905550565b610db78383836040518060200160405280600081525061135e565b505050565b610dc46117e2565b80600e819055507f71bc795b7d05fc9a5fe835ea7565de00e48de52fc5384846bc9add7a0f6b586681604051610dfa91906123a0565b60405180910390a150565b610e0d6117e2565b80600c9081610e1c9190612b35565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d581604051610e4c9190612244565b60405180910390a150565b6000610e62826118cc565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2f6117e2565b610f396000611b56565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6d6117e2565b80600a819055507f4f5539c0409dfc4cb06f64cbd31237e1fbfe443f531584bf4dd77ec7fc5ba7b181604051610fa391906123a0565b60405180910390a150565b606060038054610fbd906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe9906128ec565b80156110365780601f1061100b57610100808354040283529160200191611036565b820191906000526020600020905b81548152906001019060200180831161101957829003601f168201915b5050505050905090565b600e5481565b6111306110516109ce565b10611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890612c53565b60405180910390fd5b600061109b6109ce565b90506110a5610f3b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461112757600d60009054906101000a900460ff16611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90612cbf565b60405180910390fd5b5b61113082826111369190612d0e565b1115611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90612d8e565b60405180910390fd5b600e548211156111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b390612dfa565b60405180910390fd5b81600a546111ca9190612e1a565b34101561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390612ea8565b60405180910390fd5b6112163383611c1c565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853383604051611247929190612ec8565b60405180910390a15050565b80600760006112606118bf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661130d6118bf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113529190612199565b60405180910390a35050565b6113698484846109f8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113cb5761139484848484611c3a565b6113ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113d96117e2565b6111306113e46109ce565b10611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90612c53565b60405180910390fd5b600061142e6109ce565b9050611130838261143f9190612d0e565b1115611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790612d8e565b60405180910390fd5b61148a8284611c1c565b505050565b606061149a82611860565b6114d0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114da611d8a565b905060008151036114fa5760405180602001604052806000815250611525565b8061150484611e1c565b604051602001611515929190612f2d565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115c96117e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90612fc3565b60405180910390fd5b61164181611b56565b50565b61164c6117e2565b6111306116576109ce565b10611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612c53565b60405180910390fd5b60006116a16109ce565b905060005b838390508110156117db5761113085836116c09190612d0e565b1115611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890612d8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1684848381811061172c5761172b612fe3565b5b905060200201602081019061174191906125c0565b73ffffffffffffffffffffffffffffffffffffffff1603611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061305e565b60405180910390fd5b6117c88484838181106117ad576117ac612fe3565b5b90506020020160208101906117c291906125c0565b86611c1c565b80806117d39061307e565b9150506116a6565b5050505050565b6117ea611e6c565b73ffffffffffffffffffffffffffffffffffffffff16611808610f3b565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590613112565b60405180910390fd5b565b60008161186b6118c7565b1115801561187a575060005482105b80156118b8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118db6118c7565b11611961576000548110156119605760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361195e575b6000810361195457600460008360019003935083815260200190815260200160002054905061192a565b8092505050611993565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a20868684611e74565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c9061317e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611acb906131cf565b60006040518083038185875af1925050503d8060008114611b08576040519150601f19603f3d011682016040523d82523d6000602084013e611b0d565b606091505b5050905080611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890613256565b60405180910390fd5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c36828260405180602001604052806000815250611e7d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c606118bf565b8786866040518563ffffffff1660e01b8152600401611c8294939291906132cb565b6020604051808303816000875af1925050508015611cbe57506040513d601f19601f82011682018060405250810190611cbb919061332c565b60015b611d37573d8060008114611cee576040519150601f19603f3d011682016040523d82523d6000602084013e611cf3565b606091505b506000815103611d2f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611d99906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc5906128ec565b8015611e125780601f10611de757610100808354040283529160200191611e12565b820191906000526020600020905b815481529060010190602001808311611df557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e5757600184039350600a81066030018453600a8104905080611e35575b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611e878383611f1a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f1557600080549050600083820390505b611ec76000868380600101945086611c3a565b611efd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611eb4578160005414611f1257600080fd5b50505b505050565b60008054905060008203611f5a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f676000848385611a03565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fde83611fcf6000866000611a09565b611fd8856120d5565b17611a31565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461207f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612044565b50600082036120ba576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120d06000848385611a5c565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61212e816120f9565b811461213957600080fd5b50565b60008135905061214b81612125565b92915050565b600060208284031215612167576121666120ef565b5b60006121758482850161213c565b91505092915050565b60008115159050919050565b6121938161217e565b82525050565b60006020820190506121ae600083018461218a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121ee5780820151818401526020810190506121d3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612216826121b4565b61222081856121bf565b93506122308185602086016121d0565b612239816121fa565b840191505092915050565b6000602082019050818103600083015261225e818461220b565b905092915050565b6000819050919050565b61227981612266565b811461228457600080fd5b50565b60008135905061229681612270565b92915050565b6000602082840312156122b2576122b16120ef565b5b60006122c084828501612287565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122f4826122c9565b9050919050565b612304816122e9565b82525050565b600060208201905061231f60008301846122fb565b92915050565b61232e816122e9565b811461233957600080fd5b50565b60008135905061234b81612325565b92915050565b60008060408385031215612368576123676120ef565b5b60006123768582860161233c565b925050602061238785828601612287565b9150509250929050565b61239a81612266565b82525050565b60006020820190506123b56000830184612391565b92915050565b6000806000606084860312156123d4576123d36120ef565b5b60006123e28682870161233c565b93505060206123f38682870161233c565b925050604061240486828701612287565b9150509250925092565b6000819050919050565b6124218161240e565b82525050565b600060208201905061243c6000830184612418565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612484826121fa565b810181811067ffffffffffffffff821117156124a3576124a261244c565b5b80604052505050565b60006124b66120e5565b90506124c2828261247b565b919050565b600067ffffffffffffffff8211156124e2576124e161244c565b5b6124eb826121fa565b9050602081019050919050565b82818337600083830152505050565b600061251a612515846124c7565b6124ac565b90508281526020810184848401111561253657612535612447565b5b6125418482856124f8565b509392505050565b600082601f83011261255e5761255d612442565b5b813561256e848260208601612507565b91505092915050565b60006020828403121561258d5761258c6120ef565b5b600082013567ffffffffffffffff8111156125ab576125aa6120f4565b5b6125b784828501612549565b91505092915050565b6000602082840312156125d6576125d56120ef565b5b60006125e48482850161233c565b91505092915050565b6125f68161217e565b811461260157600080fd5b50565b600081359050612613816125ed565b92915050565b600080604083850312156126305761262f6120ef565b5b600061263e8582860161233c565b925050602061264f85828601612604565b9150509250929050565b600067ffffffffffffffff8211156126745761267361244c565b5b61267d826121fa565b9050602081019050919050565b600061269d61269884612659565b6124ac565b9050828152602081018484840111156126b9576126b8612447565b5b6126c48482856124f8565b509392505050565b600082601f8301126126e1576126e0612442565b5b81356126f184826020860161268a565b91505092915050565b60008060008060808587031215612714576127136120ef565b5b60006127228782880161233c565b94505060206127338782880161233c565b935050604061274487828801612287565b925050606085013567ffffffffffffffff811115612765576127646120f4565b5b612771878288016126cc565b91505092959194509250565b60008060408385031215612794576127936120ef565b5b60006127a285828601612287565b92505060206127b38582860161233c565b9150509250929050565b600080604083850312156127d4576127d36120ef565b5b60006127e28582860161233c565b92505060206127f38582860161233c565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261281d5761281c612442565b5b8235905067ffffffffffffffff81111561283a576128396127fd565b5b60208301915083602082028301111561285657612855612802565b5b9250929050565b600080600060408486031215612876576128756120ef565b5b600061288486828701612287565b935050602084013567ffffffffffffffff8111156128a5576128a46120f4565b5b6128b186828701612807565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061290457607f821691505b602082108103612917576129166128bd565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612953601f836121bf565b915061295e8261291d565b602082019050919050565b6000602082019050818103600083015261298281612946565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826129ae565b6129f586836129ae565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612a32612a2d612a2884612266565b612a0d565b612266565b9050919050565b6000819050919050565b612a4c83612a17565b612a60612a5882612a39565b8484546129bb565b825550505050565b600090565b612a75612a68565b612a80818484612a43565b505050565b5b81811015612aa457612a99600082612a6d565b600181019050612a86565b5050565b601f821115612ae957612aba81612989565b612ac38461299e565b81016020851015612ad2578190505b612ae6612ade8561299e565b830182612a85565b50505b505050565b600082821c905092915050565b6000612b0c60001984600802612aee565b1980831691505092915050565b6000612b258383612afb565b9150826002028217905092915050565b612b3e826121b4565b67ffffffffffffffff811115612b5757612b5661244c565b5b612b6182546128ec565b612b6c828285612aa8565b600060209050601f831160018114612b9f5760008415612b8d578287015190505b612b978582612b19565b865550612bff565b601f198416612bad86612989565b60005b82811015612bd557848901518255600182019150602085019450602081019050612bb0565b86831015612bf25784890151612bee601f891682612afb565b8355505b6001600288020188555050505b505050505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612c3d600f836121bf565b9150612c4882612c07565b602082019050919050565b60006020820190508181036000830152612c6c81612c30565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000612ca9601d836121bf565b9150612cb482612c73565b602082019050919050565b60006020820190508181036000830152612cd881612c9c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d1982612266565b9150612d2483612266565b9250828201905080821115612d3c57612d3b612cdf565b5b92915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612d786016836121bf565b9150612d8382612d42565b602082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612de4601e836121bf565b9150612def82612dae565b602082019050919050565b60006020820190508181036000830152612e1381612dd7565b9050919050565b6000612e2582612266565b9150612e3083612266565b9250828202612e3e81612266565b91508282048414831517612e5557612e54612cdf565b5b5092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612e92601d836121bf565b9150612e9d82612e5c565b602082019050919050565b60006020820190508181036000830152612ec181612e85565b9050919050565b6000604082019050612edd60008301856122fb565b612eea6020830184612391565b9392505050565b600081905092915050565b6000612f07826121b4565b612f118185612ef1565b9350612f218185602086016121d0565b80840191505092915050565b6000612f398285612efc565b9150612f458284612efc565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fad6026836121bf565b9150612fb882612f51565b604082019050919050565b60006020820190508181036000830152612fdc81612fa0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006130486018836121bf565b915061305382613012565b602082019050919050565b600060208201905081810360008301526130778161303b565b9050919050565b600061308982612266565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130bb576130ba612cdf565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130fc6020836121bf565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613168601d836121bf565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b600081905092915050565b50565b60006131b960008361319e565b91506131c4826131a9565b600082019050919050565b60006131da826131ac565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613240603a836121bf565b915061324b826131e4565b604082019050919050565b6000602082019050818103600083015261326f81613233565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061329d82613276565b6132a78185613281565b93506132b78185602086016121d0565b6132c0816121fa565b840191505092915050565b60006080820190506132e060008301876122fb565b6132ed60208301866122fb565b6132fa6040830185612391565b818103606083015261330c8184613292565b905095945050505050565b60008151905061332681612125565b92915050565b600060208284031215613342576133416120ef565b5b600061335084828501613317565b9150509291505056fea2646970667358221220e2f7a08f90ecaec2429a49185f4cc65f8deda1da8e043e0b0a4b62e3957c61b964736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d643179536272364c665637535879466b555755444c47437354756d327a46694a5247645953575435687644322f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636817c76c116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146105e7578063e985e9c514610624578063f2fde38b14610661578063fb7e6ccb1461068a576101cd565b8063a0712d681461055d578063a22cb46514610579578063b88d4fde146105a2578063bc63f02e146105be576101cd565b80638da5cb5b116100d15780638da5cb5b146104b357806391b7f5ed146104de57806395d89b41146105075780639a3bf72814610532576101cd565b80636817c76c1461043457806370a082311461045f578063715018a61461049c576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103895780634dfea627146103a557806355f804b3146103ce5780636352211e146103f7576101cd565b806323b872dd146103005780632eb4a7ab1461031c57806332cb6b0c146103475780633ccfd60b14610372576101cd565b8063081812fc116101ab578063081812fc14610251578063095ea7b31461028e57806318160ddd146102aa57806322f3e2d4146102d5576101cd565b806301ffc9a7146101d2578063049c5c491461020f57806306fdde0314610226575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612151565b6106b3565b6040516102069190612199565b60405180910390f35b34801561021b57600080fd5b50610224610745565b005b34801561023257600080fd5b5061023b610779565b6040516102489190612244565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061229c565b61080b565b604051610285919061230a565b60405180910390f35b6102a860048036038101906102a39190612351565b61088a565b005b3480156102b657600080fd5b506102bf6109ce565b6040516102cc91906123a0565b60405180910390f35b3480156102e157600080fd5b506102ea6109e5565b6040516102f79190612199565b60405180910390f35b61031a600480360381019061031591906123bb565b6109f8565b005b34801561032857600080fd5b50610331610d1a565b60405161033e9190612427565b60405180910390f35b34801561035357600080fd5b5061035c610d20565b60405161036991906123a0565b60405180910390f35b34801561037e57600080fd5b50610387610d26565b005b6103a3600480360381019061039e91906123bb565b610d9c565b005b3480156103b157600080fd5b506103cc60048036038101906103c7919061229c565b610dbc565b005b3480156103da57600080fd5b506103f560048036038101906103f09190612577565b610e05565b005b34801561040357600080fd5b5061041e6004803603810190610419919061229c565b610e57565b60405161042b919061230a565b60405180910390f35b34801561044057600080fd5b50610449610e69565b60405161045691906123a0565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906125c0565b610e6f565b60405161049391906123a0565b60405180910390f35b3480156104a857600080fd5b506104b1610f27565b005b3480156104bf57600080fd5b506104c8610f3b565b6040516104d5919061230a565b60405180910390f35b3480156104ea57600080fd5b506105056004803603810190610500919061229c565b610f65565b005b34801561051357600080fd5b5061051c610fae565b6040516105299190612244565b60405180910390f35b34801561053e57600080fd5b50610547611040565b60405161055491906123a0565b60405180910390f35b6105776004803603810190610572919061229c565b611046565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612619565b611253565b005b6105bc60048036038101906105b791906126fa565b61135e565b005b3480156105ca57600080fd5b506105e560048036038101906105e0919061277d565b6113d1565b005b3480156105f357600080fd5b5061060e6004803603810190610609919061229c565b61148f565b60405161061b9190612244565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906127bd565b61152d565b6040516106589190612199565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906125c0565b6115c1565b005b34801561069657600080fd5b506106b160048036038101906106ac919061285d565b611644565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61074d6117e2565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b606060028054610788906128ec565b80601f01602080910402602001604051908101604052809291908181526020018280546107b4906128ec565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b600061081682611860565b61084c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089582610e57565b90508073ffffffffffffffffffffffffffffffffffffffff166108b66118bf565b73ffffffffffffffffffffffffffffffffffffffff1614610919576108e2816108dd6118bf565b61152d565b610918576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109d86118c7565b6001546000540303905090565b600d60009054906101000a900460ff1681565b6000610a03826118cc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7684611998565b91509150610a8c8187610a876118bf565b6119bf565b610ad857610aa186610a9c6118bf565b61152d565b610ad7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b3e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4b8686866001611a03565b8015610b5657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2485610c00888887611a09565b7c020000000000000000000000000000000000000000000000000000000017611a31565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610caa5760006001850190506000600460008381526020019081526020016000205403610ca8576000548114610ca7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d128686866001611a5c565b505050505050565b600b5481565b61113081565b610d2e6117e2565b600260085403610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90612969565b60405180910390fd5b60026008819055506000479050610d91610d8b610f3b565b82611a62565b506001600881905550565b610db78383836040518060200160405280600081525061135e565b505050565b610dc46117e2565b80600e819055507f71bc795b7d05fc9a5fe835ea7565de00e48de52fc5384846bc9add7a0f6b586681604051610dfa91906123a0565b60405180910390a150565b610e0d6117e2565b80600c9081610e1c9190612b35565b507fafa35f42f46f5052816d7c6a2e9406eca98294b20726677862d83b4a7418d8d581604051610e4c9190612244565b60405180910390a150565b6000610e62826118cc565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2f6117e2565b610f396000611b56565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6d6117e2565b80600a819055507f4f5539c0409dfc4cb06f64cbd31237e1fbfe443f531584bf4dd77ec7fc5ba7b181604051610fa391906123a0565b60405180910390a150565b606060038054610fbd906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe9906128ec565b80156110365780601f1061100b57610100808354040283529160200191611036565b820191906000526020600020905b81548152906001019060200180831161101957829003601f168201915b5050505050905090565b600e5481565b6111306110516109ce565b10611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890612c53565b60405180910390fd5b600061109b6109ce565b90506110a5610f3b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461112757600d60009054906101000a900460ff16611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90612cbf565b60405180910390fd5b5b61113082826111369190612d0e565b1115611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90612d8e565b60405180910390fd5b600e548211156111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b390612dfa565b60405180910390fd5b81600a546111ca9190612e1a565b34101561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390612ea8565b60405180910390fd5b6112163383611c1c565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853383604051611247929190612ec8565b60405180910390a15050565b80600760006112606118bf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661130d6118bf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113529190612199565b60405180910390a35050565b6113698484846109f8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113cb5761139484848484611c3a565b6113ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113d96117e2565b6111306113e46109ce565b10611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90612c53565b60405180910390fd5b600061142e6109ce565b9050611130838261143f9190612d0e565b1115611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790612d8e565b60405180910390fd5b61148a8284611c1c565b505050565b606061149a82611860565b6114d0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114da611d8a565b905060008151036114fa5760405180602001604052806000815250611525565b8061150484611e1c565b604051602001611515929190612f2d565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115c96117e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90612fc3565b60405180910390fd5b61164181611b56565b50565b61164c6117e2565b6111306116576109ce565b10611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612c53565b60405180910390fd5b60006116a16109ce565b905060005b838390508110156117db5761113085836116c09190612d0e565b1115611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890612d8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1684848381811061172c5761172b612fe3565b5b905060200201602081019061174191906125c0565b73ffffffffffffffffffffffffffffffffffffffff1603611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061305e565b60405180910390fd5b6117c88484838181106117ad576117ac612fe3565b5b90506020020160208101906117c291906125c0565b86611c1c565b80806117d39061307e565b9150506116a6565b5050505050565b6117ea611e6c565b73ffffffffffffffffffffffffffffffffffffffff16611808610f3b565b73ffffffffffffffffffffffffffffffffffffffff161461185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590613112565b60405180910390fd5b565b60008161186b6118c7565b1115801561187a575060005482105b80156118b8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806118db6118c7565b11611961576000548110156119605760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361195e575b6000810361195457600460008360019003935083815260200190815260200160002054905061192a565b8092505050611993565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a20868684611e74565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c9061317e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611acb906131cf565b60006040518083038185875af1925050503d8060008114611b08576040519150601f19603f3d011682016040523d82523d6000602084013e611b0d565b606091505b5050905080611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890613256565b60405180910390fd5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c36828260405180602001604052806000815250611e7d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c606118bf565b8786866040518563ffffffff1660e01b8152600401611c8294939291906132cb565b6020604051808303816000875af1925050508015611cbe57506040513d601f19601f82011682018060405250810190611cbb919061332c565b60015b611d37573d8060008114611cee576040519150601f19603f3d011682016040523d82523d6000602084013e611cf3565b606091505b506000815103611d2f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611d99906128ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc5906128ec565b8015611e125780601f10611de757610100808354040283529160200191611e12565b820191906000526020600020905b815481529060010190602001808311611df557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e5757600184039350600a81066030018453600a8104905080611e35575b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611e878383611f1a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f1557600080549050600083820390505b611ec76000868380600101945086611c3a565b611efd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611eb4578160005414611f1257600080fd5b50505b505050565b60008054905060008203611f5a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f676000848385611a03565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fde83611fcf6000866000611a09565b611fd8856120d5565b17611a31565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461207f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612044565b50600082036120ba576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120d06000848385611a5c565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61212e816120f9565b811461213957600080fd5b50565b60008135905061214b81612125565b92915050565b600060208284031215612167576121666120ef565b5b60006121758482850161213c565b91505092915050565b60008115159050919050565b6121938161217e565b82525050565b60006020820190506121ae600083018461218a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121ee5780820151818401526020810190506121d3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612216826121b4565b61222081856121bf565b93506122308185602086016121d0565b612239816121fa565b840191505092915050565b6000602082019050818103600083015261225e818461220b565b905092915050565b6000819050919050565b61227981612266565b811461228457600080fd5b50565b60008135905061229681612270565b92915050565b6000602082840312156122b2576122b16120ef565b5b60006122c084828501612287565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122f4826122c9565b9050919050565b612304816122e9565b82525050565b600060208201905061231f60008301846122fb565b92915050565b61232e816122e9565b811461233957600080fd5b50565b60008135905061234b81612325565b92915050565b60008060408385031215612368576123676120ef565b5b60006123768582860161233c565b925050602061238785828601612287565b9150509250929050565b61239a81612266565b82525050565b60006020820190506123b56000830184612391565b92915050565b6000806000606084860312156123d4576123d36120ef565b5b60006123e28682870161233c565b93505060206123f38682870161233c565b925050604061240486828701612287565b9150509250925092565b6000819050919050565b6124218161240e565b82525050565b600060208201905061243c6000830184612418565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612484826121fa565b810181811067ffffffffffffffff821117156124a3576124a261244c565b5b80604052505050565b60006124b66120e5565b90506124c2828261247b565b919050565b600067ffffffffffffffff8211156124e2576124e161244c565b5b6124eb826121fa565b9050602081019050919050565b82818337600083830152505050565b600061251a612515846124c7565b6124ac565b90508281526020810184848401111561253657612535612447565b5b6125418482856124f8565b509392505050565b600082601f83011261255e5761255d612442565b5b813561256e848260208601612507565b91505092915050565b60006020828403121561258d5761258c6120ef565b5b600082013567ffffffffffffffff8111156125ab576125aa6120f4565b5b6125b784828501612549565b91505092915050565b6000602082840312156125d6576125d56120ef565b5b60006125e48482850161233c565b91505092915050565b6125f68161217e565b811461260157600080fd5b50565b600081359050612613816125ed565b92915050565b600080604083850312156126305761262f6120ef565b5b600061263e8582860161233c565b925050602061264f85828601612604565b9150509250929050565b600067ffffffffffffffff8211156126745761267361244c565b5b61267d826121fa565b9050602081019050919050565b600061269d61269884612659565b6124ac565b9050828152602081018484840111156126b9576126b8612447565b5b6126c48482856124f8565b509392505050565b600082601f8301126126e1576126e0612442565b5b81356126f184826020860161268a565b91505092915050565b60008060008060808587031215612714576127136120ef565b5b60006127228782880161233c565b94505060206127338782880161233c565b935050604061274487828801612287565b925050606085013567ffffffffffffffff811115612765576127646120f4565b5b612771878288016126cc565b91505092959194509250565b60008060408385031215612794576127936120ef565b5b60006127a285828601612287565b92505060206127b38582860161233c565b9150509250929050565b600080604083850312156127d4576127d36120ef565b5b60006127e28582860161233c565b92505060206127f38582860161233c565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261281d5761281c612442565b5b8235905067ffffffffffffffff81111561283a576128396127fd565b5b60208301915083602082028301111561285657612855612802565b5b9250929050565b600080600060408486031215612876576128756120ef565b5b600061288486828701612287565b935050602084013567ffffffffffffffff8111156128a5576128a46120f4565b5b6128b186828701612807565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061290457607f821691505b602082108103612917576129166128bd565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612953601f836121bf565b915061295e8261291d565b602082019050919050565b6000602082019050818103600083015261298281612946565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826129ae565b6129f586836129ae565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612a32612a2d612a2884612266565b612a0d565b612266565b9050919050565b6000819050919050565b612a4c83612a17565b612a60612a5882612a39565b8484546129bb565b825550505050565b600090565b612a75612a68565b612a80818484612a43565b505050565b5b81811015612aa457612a99600082612a6d565b600181019050612a86565b5050565b601f821115612ae957612aba81612989565b612ac38461299e565b81016020851015612ad2578190505b612ae6612ade8561299e565b830182612a85565b50505b505050565b600082821c905092915050565b6000612b0c60001984600802612aee565b1980831691505092915050565b6000612b258383612afb565b9150826002028217905092915050565b612b3e826121b4565b67ffffffffffffffff811115612b5757612b5661244c565b5b612b6182546128ec565b612b6c828285612aa8565b600060209050601f831160018114612b9f5760008415612b8d578287015190505b612b978582612b19565b865550612bff565b601f198416612bad86612989565b60005b82811015612bd557848901518255600182019150602085019450602081019050612bb0565b86831015612bf25784890151612bee601f891682612afb565b8355505b6001600288020188555050505b505050505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612c3d600f836121bf565b9150612c4882612c07565b602082019050919050565b60006020820190508181036000830152612c6c81612c30565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000612ca9601d836121bf565b9150612cb482612c73565b602082019050919050565b60006020820190508181036000830152612cd881612c9c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d1982612266565b9150612d2483612266565b9250828201905080821115612d3c57612d3b612cdf565b5b92915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612d786016836121bf565b9150612d8382612d42565b602082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612de4601e836121bf565b9150612def82612dae565b602082019050919050565b60006020820190508181036000830152612e1381612dd7565b9050919050565b6000612e2582612266565b9150612e3083612266565b9250828202612e3e81612266565b91508282048414831517612e5557612e54612cdf565b5b5092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612e92601d836121bf565b9150612e9d82612e5c565b602082019050919050565b60006020820190508181036000830152612ec181612e85565b9050919050565b6000604082019050612edd60008301856122fb565b612eea6020830184612391565b9392505050565b600081905092915050565b6000612f07826121b4565b612f118185612ef1565b9350612f218185602086016121d0565b80840191505092915050565b6000612f398285612efc565b9150612f458284612efc565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fad6026836121bf565b9150612fb882612f51565b604082019050919050565b60006020820190508181036000830152612fdc81612fa0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006130486018836121bf565b915061305382613012565b602082019050919050565b600060208201905081810360008301526130778161303b565b9050919050565b600061308982612266565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130bb576130ba612cdf565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130fc6020836121bf565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613168601d836121bf565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b600081905092915050565b50565b60006131b960008361319e565b91506131c4826131a9565b600082019050919050565b60006131da826131ac565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613240603a836121bf565b915061324b826131e4565b604082019050919050565b6000602082019050818103600083015261326f81613233565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061329d82613276565b6132a78185613281565b93506132b78185602086016121d0565b6132c0816121fa565b840191505092915050565b60006080820190506132e060008301876122fb565b6132ed60208301866122fb565b6132fa6040830185612391565b818103606083015261330c8184613292565b905095945050505050565b60008151905061332681612125565b92915050565b600060208284031215613342576133416120ef565b5b600061335084828501613317565b9150509291505056fea2646970667358221220e2f7a08f90ecaec2429a49185f4cc65f8deda1da8e043e0b0a4b62e3957c61b964736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d643179536272364c665637535879466b555755444c47437354756d327a46694a5247645953575435687644322f000000000000000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d643179536272364c665637535879466b555755444c47437354756d32
Arg [4] : 7a46694a5247645953575435687644322f000000000000000000000000000000


Deployed Bytecode Sourcemap

163:2563:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1112:76:4;;;;;;;;;;;;;:::i;:::-;;10039:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;503:28:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;440:25:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;536:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2573:151;;;;;;;;;;;;;:::i;:::-;;22758:187:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;834:161:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1192:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;399:36:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:5;;;;;;;;;;;;;:::i;:::-;;1194:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;999:109:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;581:51:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2046:523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1431:226:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1661:381:4;;;;;;;;;;;;;;;;;;;;;;;:::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;1112:76:4:-;1087:13:5;:11;:13::i;:::-;1175:8:4::1;;;;;;;;;;;1174:9;1163:8;;:20;;;;;;;;;;;;;;;;;;1112: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;503:28:4:-;;;;;;;;;;;;;:::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;440:25:4:-;;;;:::o;536:41::-;573:4;536:41;:::o;2573:151::-;1087:13:5;:11;:13::i;:::-;1744:1:6::1;2325:7;;:19:::0;2317:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2631:12:4::2;2646:21;2631:36;;2673:44;2699:7;:5;:7::i;:::-;2709;2673:17;:44::i;:::-;2625:99;1701:1:6::1;2628:7;:22;;;;2573:151:4:o:0;22758:187:2:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;834:161:4:-;1087:13:5;:11;:13::i;:::-;942:6:4::1;908:31;:40;;;;959:31;983:6;959:31;;;;;;:::i;:::-;;;;;;;;834:161:::0;:::o;1192:124::-;1087:13:5;:11;:13::i;:::-;1274:7:4::1;1258:13;:23;;;;;;:::i;:::-;;1292:19;1303:7;1292:19;;;;;;:::i;:::-;;;;;;;;1192:124:::0;:::o;11391:150:2:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;399:36:4:-;;;;:::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:5:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1194:85::-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;999:109:4:-;1087:13:5;:11;:13::i;:::-;1070:6:4::1;1058:9;:18;;;;1087:16;1096:6;1087:16;;;;;;:::i;:::-;;;;;;;;999:109:::0;:::o;10208:102:2:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;581:51:4:-;;;;:::o;2046:523::-;573:4;770:13;:11;:13::i;:::-;:26;762:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:17:::1;2130:13;:11;:13::i;:::-;2110:33;;2169:7;:5;:7::i;:::-;2155:21;;:10;:21;;;2151:92;;2194:8;;;;;;;;;;;2186:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;2151:92;573:4;2269:6;2257:9;:18;;;;:::i;:::-;:32;;2249:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2341:31;;2331:6;:41;;2322:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;2452:6;2440:9;;:18;;;;:::i;:::-;2426:9;:33;;2418:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2500:29;2510:10;2522:6;2500:9;:29::i;:::-;2540:24;2545:10;2557:6;2540:24;;;;;;;:::i;:::-;;;;;;;;2104:465;2046:523:::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;1431:226:4:-;1087:13:5;:11;:13::i;:::-;573:4:4::1;770:13;:11;:13::i;:::-;:26;762:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1518:14:::2;1535:13;:11;:13::i;:::-;1518:30;;573:4;1572:6;1563;:15;;;;:::i;:::-;:29;;1555:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1625:27;1635:8;1645:6;1625:9;:27::i;:::-;1512:145;1431:226:::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;17282:162::-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2074:198:5:-;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;1661:381:4:-;1087:13:5;:11;:13::i;:::-;573:4:4::1;770:13;:11;:13::i;:::-;:26;762:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1765:14:::2;1782:13;:11;:13::i;:::-;1765:30;;1807:9;1802:236;1826:9;;:16;;1822:1;:20;1802:236;;;573:4;1874:6;1865;:15;;;;:::i;:::-;:29;;1857:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1961:1;1937:26;;:9;;1947:1;1937:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;::::0;1929:63:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;2000:31;2010:9;;2020:1;2010:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2024:6;2000:9;:31::i;:::-;1844:3;;;;;:::i;:::-;;;;1802:236;;;;1759:283;1661:381:::0;;;:::o;1352:130:5:-;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:5:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;33423:110:2:-;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;1321:106:4:-;1381:13;1409;1402:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1321: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;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;38475:143:2:-;38608:6;38475:143;;;;;:::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:7:-;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:77::-;5904:7;5933:5;5922:16;;5867:77;;;:::o;5950:118::-;6037:24;6055:5;6037:24;:::i;:::-;6032:3;6025:37;5950:118;;:::o;6074:222::-;6167:4;6205:2;6194:9;6190:18;6182:26;;6218:71;6286:1;6275:9;6271:17;6262:6;6218:71;:::i;:::-;6074:222;;;;:::o;6302:117::-;6411:1;6408;6401:12;6425:117;6534:1;6531;6524:12;6548:180;6596:77;6593:1;6586:88;6693:4;6690:1;6683:15;6717:4;6714:1;6707:15;6734:281;6817:27;6839:4;6817:27;:::i;:::-;6809:6;6805:40;6947:6;6935:10;6932:22;6911:18;6899:10;6896:34;6893:62;6890:88;;;6958:18;;:::i;:::-;6890:88;6998:10;6994:2;6987:22;6777:238;6734:281;;:::o;7021:129::-;7055:6;7082:20;;:::i;:::-;7072:30;;7111:33;7139:4;7131:6;7111:33;:::i;:::-;7021:129;;;:::o;7156:308::-;7218:4;7308:18;7300:6;7297:30;7294:56;;;7330:18;;:::i;:::-;7294:56;7368:29;7390:6;7368:29;:::i;:::-;7360:37;;7452:4;7446;7442:15;7434:23;;7156:308;;;:::o;7470:146::-;7567:6;7562:3;7557;7544:30;7608:1;7599:6;7594:3;7590:16;7583:27;7470:146;;;:::o;7622:425::-;7700:5;7725:66;7741:49;7783:6;7741:49;:::i;:::-;7725:66;:::i;:::-;7716:75;;7814:6;7807:5;7800:21;7852:4;7845:5;7841:16;7890:3;7881:6;7876:3;7872:16;7869:25;7866:112;;;7897:79;;:::i;:::-;7866:112;7987:54;8034:6;8029:3;8024;7987:54;:::i;:::-;7706:341;7622:425;;;;;:::o;8067:340::-;8123:5;8172:3;8165:4;8157:6;8153:17;8149:27;8139:122;;8180:79;;:::i;:::-;8139:122;8297:6;8284:20;8322:79;8397:3;8389:6;8382:4;8374:6;8370:17;8322:79;:::i;:::-;8313:88;;8129:278;8067:340;;;;:::o;8413:509::-;8482:6;8531:2;8519:9;8510:7;8506:23;8502:32;8499:119;;;8537:79;;:::i;:::-;8499:119;8685:1;8674:9;8670:17;8657:31;8715:18;8707:6;8704:30;8701:117;;;8737:79;;:::i;:::-;8701:117;8842:63;8897:7;8888:6;8877:9;8873:22;8842:63;:::i;:::-;8832:73;;8628:287;8413:509;;;;:::o;8928:329::-;8987:6;9036:2;9024:9;9015:7;9011:23;9007:32;9004:119;;;9042:79;;:::i;:::-;9004:119;9162:1;9187:53;9232:7;9223:6;9212:9;9208:22;9187:53;:::i;:::-;9177:63;;9133:117;8928:329;;;;:::o;9263:116::-;9333:21;9348:5;9333:21;:::i;:::-;9326:5;9323:32;9313:60;;9369:1;9366;9359:12;9313:60;9263:116;:::o;9385:133::-;9428:5;9466:6;9453:20;9444:29;;9482:30;9506:5;9482:30;:::i;:::-;9385:133;;;;:::o;9524:468::-;9589:6;9597;9646:2;9634:9;9625:7;9621:23;9617:32;9614:119;;;9652:79;;:::i;:::-;9614:119;9772:1;9797:53;9842:7;9833:6;9822:9;9818:22;9797:53;:::i;:::-;9787:63;;9743:117;9899:2;9925:50;9967:7;9958:6;9947:9;9943:22;9925:50;:::i;:::-;9915:60;;9870:115;9524:468;;;;;:::o;9998:307::-;10059:4;10149:18;10141:6;10138:30;10135:56;;;10171:18;;:::i;:::-;10135:56;10209:29;10231:6;10209:29;:::i;:::-;10201:37;;10293:4;10287;10283:15;10275:23;;9998:307;;;:::o;10311:423::-;10388:5;10413:65;10429:48;10470:6;10429:48;:::i;:::-;10413:65;:::i;:::-;10404:74;;10501:6;10494:5;10487:21;10539:4;10532:5;10528:16;10577:3;10568:6;10563:3;10559:16;10556:25;10553:112;;;10584:79;;:::i;:::-;10553:112;10674:54;10721:6;10716:3;10711;10674:54;:::i;:::-;10394:340;10311:423;;;;;:::o;10753:338::-;10808:5;10857:3;10850:4;10842:6;10838:17;10834:27;10824:122;;10865:79;;:::i;:::-;10824:122;10982:6;10969:20;11007:78;11081:3;11073:6;11066:4;11058:6;11054:17;11007:78;:::i;:::-;10998:87;;10814:277;10753:338;;;;:::o;11097:943::-;11192:6;11200;11208;11216;11265:3;11253:9;11244:7;11240:23;11236:33;11233:120;;;11272:79;;:::i;:::-;11233:120;11392:1;11417:53;11462:7;11453:6;11442:9;11438:22;11417:53;:::i;:::-;11407:63;;11363:117;11519:2;11545:53;11590:7;11581:6;11570:9;11566:22;11545:53;:::i;:::-;11535:63;;11490:118;11647:2;11673:53;11718:7;11709:6;11698:9;11694:22;11673:53;:::i;:::-;11663:63;;11618:118;11803:2;11792:9;11788:18;11775:32;11834:18;11826:6;11823:30;11820:117;;;11856:79;;:::i;:::-;11820:117;11961:62;12015:7;12006:6;11995:9;11991:22;11961:62;:::i;:::-;11951:72;;11746:287;11097:943;;;;;;;:::o;12046:474::-;12114:6;12122;12171:2;12159:9;12150:7;12146:23;12142:32;12139:119;;;12177:79;;:::i;:::-;12139:119;12297:1;12322:53;12367:7;12358:6;12347:9;12343:22;12322:53;:::i;:::-;12312:63;;12268:117;12424:2;12450:53;12495:7;12486:6;12475:9;12471:22;12450:53;:::i;:::-;12440:63;;12395:118;12046:474;;;;;:::o;12526:::-;12594:6;12602;12651:2;12639:9;12630:7;12626:23;12622:32;12619:119;;;12657:79;;:::i;:::-;12619:119;12777:1;12802:53;12847:7;12838:6;12827:9;12823:22;12802:53;:::i;:::-;12792:63;;12748:117;12904:2;12930:53;12975:7;12966:6;12955:9;12951:22;12930:53;:::i;:::-;12920:63;;12875:118;12526:474;;;;;:::o;13006:117::-;13115:1;13112;13105:12;13129:117;13238:1;13235;13228:12;13269:568;13342:8;13352:6;13402:3;13395:4;13387:6;13383:17;13379:27;13369:122;;13410:79;;:::i;:::-;13369:122;13523:6;13510:20;13500:30;;13553:18;13545:6;13542:30;13539:117;;;13575:79;;:::i;:::-;13539:117;13689:4;13681:6;13677:17;13665:29;;13743:3;13735:4;13727:6;13723:17;13713:8;13709:32;13706:41;13703:128;;;13750:79;;:::i;:::-;13703:128;13269:568;;;;;:::o;13843:704::-;13938:6;13946;13954;14003:2;13991:9;13982:7;13978:23;13974:32;13971:119;;;14009:79;;:::i;:::-;13971:119;14129:1;14154:53;14199:7;14190:6;14179:9;14175:22;14154:53;:::i;:::-;14144:63;;14100:117;14284:2;14273:9;14269:18;14256:32;14315:18;14307:6;14304:30;14301:117;;;14337:79;;:::i;:::-;14301:117;14450:80;14522:7;14513:6;14502:9;14498:22;14450:80;:::i;:::-;14432:98;;;;14227:313;13843:704;;;;;:::o;14553:180::-;14601:77;14598:1;14591:88;14698:4;14695:1;14688:15;14722:4;14719:1;14712:15;14739:320;14783:6;14820:1;14814:4;14810:12;14800:22;;14867:1;14861:4;14857:12;14888:18;14878:81;;14944:4;14936:6;14932:17;14922:27;;14878:81;15006:2;14998:6;14995:14;14975:18;14972:38;14969:84;;15025:18;;:::i;:::-;14969:84;14790:269;14739:320;;;:::o;15065:181::-;15205:33;15201:1;15193:6;15189:14;15182:57;15065:181;:::o;15252:366::-;15394:3;15415:67;15479:2;15474:3;15415:67;:::i;:::-;15408:74;;15491:93;15580:3;15491:93;:::i;:::-;15609:2;15604:3;15600:12;15593:19;;15252:366;;;:::o;15624:419::-;15790:4;15828:2;15817:9;15813:18;15805:26;;15877:9;15871:4;15867:20;15863:1;15852:9;15848:17;15841:47;15905:131;16031:4;15905:131;:::i;:::-;15897:139;;15624:419;;;:::o;16049:141::-;16098:4;16121:3;16113:11;;16144:3;16141:1;16134:14;16178:4;16175:1;16165:18;16157:26;;16049:141;;;:::o;16196:93::-;16233:6;16280:2;16275;16268:5;16264:14;16260:23;16250:33;;16196:93;;;:::o;16295:107::-;16339:8;16389:5;16383:4;16379:16;16358:37;;16295:107;;;;:::o;16408:393::-;16477:6;16527:1;16515:10;16511:18;16550:97;16580:66;16569:9;16550:97;:::i;:::-;16668:39;16698:8;16687:9;16668:39;:::i;:::-;16656:51;;16740:4;16736:9;16729:5;16725:21;16716:30;;16789:4;16779:8;16775:19;16768:5;16765:30;16755:40;;16484:317;;16408:393;;;;;:::o;16807:60::-;16835:3;16856:5;16849:12;;16807:60;;;:::o;16873:142::-;16923:9;16956:53;16974:34;16983:24;17001:5;16983:24;:::i;:::-;16974:34;:::i;:::-;16956:53;:::i;:::-;16943:66;;16873:142;;;:::o;17021:75::-;17064:3;17085:5;17078:12;;17021:75;;;:::o;17102:269::-;17212:39;17243:7;17212:39;:::i;:::-;17273:91;17322:41;17346:16;17322:41;:::i;:::-;17314:6;17307:4;17301:11;17273:91;:::i;:::-;17267:4;17260:105;17178:193;17102:269;;;:::o;17377:73::-;17422:3;17377:73;:::o;17456:189::-;17533:32;;:::i;:::-;17574:65;17632:6;17624;17618:4;17574:65;:::i;:::-;17509:136;17456:189;;:::o;17651:186::-;17711:120;17728:3;17721:5;17718:14;17711:120;;;17782:39;17819:1;17812:5;17782:39;:::i;:::-;17755:1;17748:5;17744:13;17735:22;;17711:120;;;17651:186;;:::o;17843:543::-;17944:2;17939:3;17936:11;17933:446;;;17978:38;18010:5;17978:38;:::i;:::-;18062:29;18080:10;18062:29;:::i;:::-;18052:8;18048:44;18245:2;18233:10;18230:18;18227:49;;;18266:8;18251:23;;18227:49;18289:80;18345:22;18363:3;18345:22;:::i;:::-;18335:8;18331:37;18318:11;18289:80;:::i;:::-;17948:431;;17933:446;17843:543;;;:::o;18392:117::-;18446:8;18496:5;18490:4;18486:16;18465:37;;18392:117;;;;:::o;18515:169::-;18559:6;18592:51;18640:1;18636:6;18628:5;18625:1;18621:13;18592:51;:::i;:::-;18588:56;18673:4;18667;18663:15;18653:25;;18566:118;18515:169;;;;:::o;18689:295::-;18765:4;18911:29;18936:3;18930:4;18911:29;:::i;:::-;18903:37;;18973:3;18970:1;18966:11;18960:4;18957:21;18949:29;;18689:295;;;;:::o;18989:1395::-;19106:37;19139:3;19106:37;:::i;:::-;19208:18;19200:6;19197:30;19194:56;;;19230:18;;:::i;:::-;19194:56;19274:38;19306:4;19300:11;19274:38;:::i;:::-;19359:67;19419:6;19411;19405:4;19359:67;:::i;:::-;19453:1;19477:4;19464:17;;19509:2;19501:6;19498:14;19526:1;19521:618;;;;20183:1;20200:6;20197:77;;;20249:9;20244:3;20240:19;20234:26;20225:35;;20197:77;20300:67;20360:6;20353:5;20300:67;:::i;:::-;20294:4;20287:81;20156:222;19491:887;;19521:618;19573:4;19569:9;19561:6;19557:22;19607:37;19639:4;19607:37;:::i;:::-;19666:1;19680:208;19694:7;19691:1;19688:14;19680:208;;;19773:9;19768:3;19764:19;19758:26;19750:6;19743:42;19824:1;19816:6;19812:14;19802:24;;19871:2;19860:9;19856:18;19843:31;;19717:4;19714:1;19710:12;19705:17;;19680:208;;;19916:6;19907:7;19904:19;19901:179;;;19974:9;19969:3;19965:19;19959:26;20017:48;20059:4;20051:6;20047:17;20036:9;20017:48;:::i;:::-;20009:6;20002:64;19924:156;19901:179;20126:1;20122;20114:6;20110:14;20106:22;20100:4;20093:36;19528:611;;;19491:887;;19081:1303;;;18989:1395;;:::o;20390:165::-;20530:17;20526:1;20518:6;20514:14;20507:41;20390:165;:::o;20561:366::-;20703:3;20724:67;20788:2;20783:3;20724:67;:::i;:::-;20717:74;;20800:93;20889:3;20800:93;:::i;:::-;20918:2;20913:3;20909:12;20902:19;;20561:366;;;:::o;20933:419::-;21099:4;21137:2;21126:9;21122:18;21114:26;;21186:9;21180:4;21176:20;21172:1;21161:9;21157:17;21150:47;21214:131;21340:4;21214:131;:::i;:::-;21206:139;;20933:419;;;:::o;21358:179::-;21498:31;21494:1;21486:6;21482:14;21475:55;21358:179;:::o;21543:366::-;21685:3;21706:67;21770:2;21765:3;21706:67;:::i;:::-;21699:74;;21782:93;21871:3;21782:93;:::i;:::-;21900:2;21895:3;21891:12;21884:19;;21543:366;;;:::o;21915:419::-;22081:4;22119:2;22108:9;22104:18;22096:26;;22168:9;22162:4;22158:20;22154:1;22143:9;22139:17;22132:47;22196:131;22322:4;22196:131;:::i;:::-;22188:139;;21915:419;;;:::o;22340:180::-;22388:77;22385:1;22378:88;22485:4;22482:1;22475:15;22509:4;22506:1;22499:15;22526:191;22566:3;22585:20;22603:1;22585:20;:::i;:::-;22580:25;;22619:20;22637:1;22619:20;:::i;:::-;22614:25;;22662:1;22659;22655:9;22648:16;;22683:3;22680:1;22677:10;22674:36;;;22690:18;;:::i;:::-;22674:36;22526:191;;;;:::o;22723:172::-;22863:24;22859:1;22851:6;22847:14;22840:48;22723:172;:::o;22901:366::-;23043:3;23064:67;23128:2;23123:3;23064:67;:::i;:::-;23057:74;;23140:93;23229:3;23140:93;:::i;:::-;23258:2;23253:3;23249:12;23242:19;;22901:366;;;:::o;23273:419::-;23439:4;23477:2;23466:9;23462:18;23454:26;;23526:9;23520:4;23516:20;23512:1;23501:9;23497:17;23490:47;23554:131;23680:4;23554:131;:::i;:::-;23546:139;;23273:419;;;:::o;23698:180::-;23838:32;23834:1;23826:6;23822:14;23815:56;23698:180;:::o;23884:366::-;24026:3;24047:67;24111:2;24106:3;24047:67;:::i;:::-;24040:74;;24123:93;24212:3;24123:93;:::i;:::-;24241:2;24236:3;24232:12;24225:19;;23884:366;;;:::o;24256:419::-;24422:4;24460:2;24449:9;24445:18;24437:26;;24509:9;24503:4;24499:20;24495:1;24484:9;24480:17;24473:47;24537:131;24663:4;24537:131;:::i;:::-;24529:139;;24256:419;;;:::o;24681:410::-;24721:7;24744:20;24762:1;24744:20;:::i;:::-;24739:25;;24778:20;24796:1;24778:20;:::i;:::-;24773:25;;24833:1;24830;24826:9;24855:30;24873:11;24855:30;:::i;:::-;24844:41;;25034:1;25025:7;25021:15;25018:1;25015:22;24995:1;24988:9;24968:83;24945:139;;25064:18;;:::i;:::-;24945:139;24729:362;24681:410;;;;:::o;25097:179::-;25237:31;25233:1;25225:6;25221:14;25214:55;25097:179;:::o;25282:366::-;25424:3;25445:67;25509:2;25504:3;25445:67;:::i;:::-;25438:74;;25521:93;25610:3;25521:93;:::i;:::-;25639:2;25634:3;25630:12;25623:19;;25282:366;;;:::o;25654:419::-;25820:4;25858:2;25847:9;25843:18;25835:26;;25907:9;25901:4;25897:20;25893:1;25882:9;25878:17;25871:47;25935:131;26061:4;25935:131;:::i;:::-;25927:139;;25654:419;;;:::o;26079:332::-;26200:4;26238:2;26227:9;26223:18;26215:26;;26251:71;26319:1;26308:9;26304:17;26295:6;26251:71;:::i;:::-;26332:72;26400:2;26389:9;26385:18;26376:6;26332:72;:::i;:::-;26079:332;;;;;:::o;26417:148::-;26519:11;26556:3;26541:18;;26417:148;;;;:::o;26571:390::-;26677:3;26705:39;26738:5;26705:39;:::i;:::-;26760:89;26842:6;26837:3;26760:89;:::i;:::-;26753:96;;26858:65;26916:6;26911:3;26904:4;26897:5;26893:16;26858:65;:::i;:::-;26948:6;26943:3;26939:16;26932:23;;26681:280;26571:390;;;;:::o;26967:435::-;27147:3;27169:95;27260:3;27251:6;27169:95;:::i;:::-;27162:102;;27281:95;27372:3;27363:6;27281:95;:::i;:::-;27274:102;;27393:3;27386:10;;26967:435;;;;;:::o;27408:225::-;27548:34;27544:1;27536:6;27532:14;27525:58;27617:8;27612:2;27604:6;27600:15;27593:33;27408:225;:::o;27639:366::-;27781:3;27802:67;27866:2;27861:3;27802:67;:::i;:::-;27795:74;;27878:93;27967:3;27878:93;:::i;:::-;27996:2;27991:3;27987:12;27980:19;;27639:366;;;:::o;28011:419::-;28177:4;28215:2;28204:9;28200:18;28192:26;;28264:9;28258:4;28254:20;28250:1;28239:9;28235:17;28228:47;28292:131;28418:4;28292:131;:::i;:::-;28284:139;;28011:419;;;:::o;28436:180::-;28484:77;28481:1;28474:88;28581:4;28578:1;28571:15;28605:4;28602:1;28595:15;28622:174;28762:26;28758:1;28750:6;28746:14;28739:50;28622:174;:::o;28802:366::-;28944:3;28965:67;29029:2;29024:3;28965:67;:::i;:::-;28958:74;;29041:93;29130:3;29041:93;:::i;:::-;29159:2;29154:3;29150:12;29143:19;;28802:366;;;:::o;29174:419::-;29340:4;29378:2;29367:9;29363:18;29355:26;;29427:9;29421:4;29417:20;29413:1;29402:9;29398:17;29391:47;29455:131;29581:4;29455:131;:::i;:::-;29447:139;;29174:419;;;:::o;29599:233::-;29638:3;29661:24;29679:5;29661:24;:::i;:::-;29652:33;;29707:66;29700:5;29697:77;29694:103;;29777:18;;:::i;:::-;29694:103;29824:1;29817:5;29813:13;29806:20;;29599:233;;;:::o;29838:182::-;29978:34;29974:1;29966:6;29962:14;29955:58;29838:182;:::o;30026:366::-;30168:3;30189:67;30253:2;30248:3;30189:67;:::i;:::-;30182:74;;30265:93;30354:3;30265:93;:::i;:::-;30383:2;30378:3;30374:12;30367:19;;30026:366;;;:::o;30398:419::-;30564:4;30602:2;30591:9;30587:18;30579:26;;30651:9;30645:4;30641:20;30637:1;30626:9;30622:17;30615:47;30679:131;30805:4;30679:131;:::i;:::-;30671:139;;30398:419;;;:::o;30823:179::-;30963:31;30959:1;30951:6;30947:14;30940:55;30823:179;:::o;31008:366::-;31150:3;31171:67;31235:2;31230:3;31171:67;:::i;:::-;31164:74;;31247:93;31336:3;31247:93;:::i;:::-;31365:2;31360:3;31356:12;31349:19;;31008:366;;;:::o;31380:419::-;31546:4;31584:2;31573:9;31569:18;31561:26;;31633:9;31627:4;31623:20;31619:1;31608:9;31604:17;31597:47;31661:131;31787:4;31661:131;:::i;:::-;31653:139;;31380:419;;;:::o;31805:147::-;31906:11;31943:3;31928:18;;31805:147;;;;:::o;31958:114::-;;:::o;32078:398::-;32237:3;32258:83;32339:1;32334:3;32258:83;:::i;:::-;32251:90;;32350:93;32439:3;32350:93;:::i;:::-;32468:1;32463:3;32459:11;32452:18;;32078:398;;;:::o;32482:379::-;32666:3;32688:147;32831:3;32688:147;:::i;:::-;32681:154;;32852:3;32845:10;;32482:379;;;:::o;32867:245::-;33007:34;33003:1;32995:6;32991:14;32984:58;33076:28;33071:2;33063:6;33059:15;33052:53;32867:245;:::o;33118:366::-;33260:3;33281:67;33345:2;33340:3;33281:67;:::i;:::-;33274:74;;33357:93;33446:3;33357:93;:::i;:::-;33475:2;33470:3;33466:12;33459:19;;33118:366;;;:::o;33490:419::-;33656:4;33694:2;33683:9;33679:18;33671:26;;33743:9;33737:4;33733:20;33729:1;33718:9;33714:17;33707:47;33771:131;33897:4;33771:131;:::i;:::-;33763:139;;33490:419;;;:::o;33915:98::-;33966:6;34000:5;33994:12;33984:22;;33915:98;;;:::o;34019:168::-;34102:11;34136:6;34131:3;34124:19;34176:4;34171:3;34167:14;34152:29;;34019:168;;;;:::o;34193:373::-;34279:3;34307:38;34339:5;34307:38;:::i;:::-;34361:70;34424:6;34419:3;34361:70;:::i;:::-;34354:77;;34440:65;34498:6;34493:3;34486:4;34479:5;34475:16;34440:65;:::i;:::-;34530:29;34552:6;34530:29;:::i;:::-;34525:3;34521:39;34514:46;;34283:283;34193:373;;;;:::o;34572:640::-;34767:4;34805:3;34794:9;34790:19;34782:27;;34819:71;34887:1;34876:9;34872:17;34863:6;34819:71;:::i;:::-;34900:72;34968:2;34957:9;34953:18;34944:6;34900:72;:::i;:::-;34982;35050:2;35039:9;35035:18;35026:6;34982:72;:::i;:::-;35101:9;35095:4;35091:20;35086:2;35075:9;35071:18;35064:48;35129:76;35200:4;35191:6;35129:76;:::i;:::-;35121:84;;34572:640;;;;;;;:::o;35218:141::-;35274:5;35305:6;35299:13;35290:22;;35321:32;35347:5;35321:32;:::i;:::-;35218:141;;;;:::o;35365:349::-;35434:6;35483:2;35471:9;35462:7;35458:23;35454:32;35451:119;;;35489:79;;:::i;:::-;35451:119;35609:1;35634:63;35689:7;35680:6;35669:9;35665:22;35634:63;:::i;:::-;35624:73;;35580:127;35365:349;;;;:::o

Swarm Source

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