ETH Price: $3,466.35 (-0.06%)
Gas: 11 Gwei

Token

The Cannibals (FEAST)
 

Overview

Max Total Supply

2,207 FEAST

Holders

937

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 FEAST
0x4f50f3f6c3c1094dbebcf02be8b0fa976ff6cfe5
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:
TheCannibals

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-09
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

/**
 * @title MerkleProof
 * @dev Merkle proof verification based on
 * https://github.com/ameensol/merkle-tree-solidity/blob/master/src/MerkleProof.sol
 */
library MerkleProof {
  /**
   * @dev Verifies a Merkle proof proving the existence of a leaf in a Merkle tree. Assumes that each pair of leaves
   * and each pair of pre-images are sorted.
   * @param proof Merkle proof containing sibling hashes on the branch from the leaf to the root of the Merkle tree
   * @param root Merkle root
   * @param leaf Leaf of Merkle tree
   */
  function verify(
    bytes32[] calldata proof,
    bytes32 root,
    bytes32 leaf
  )
    internal
    pure
    returns (bool)
  {
    bytes32 computedHash = leaf;

    for (uint256 i = 0; i < proof.length; i++) {
      bytes32 proofElement = proof[i];

      if (computedHash < proofElement) {
        // Hash(current computed hash + current element of the proof)
        computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
      } else {
        // Hash(current element of the proof + current computed hash)
        computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
      }
    }

    // Check if the computed hash (root) is equal to the provided root
    return computedHash == root;
  }
}

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

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

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface iFeasted {
    function getFeastedInfo(uint tokenId) external view returns(uint);
}

/**
 * @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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * 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;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @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;

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

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

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

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

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

/**
 * @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, iFeasted {
    // Reference type for token approval.
    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 = 1;

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

    // Cannibal ID Counter
    uint256 internal feastCounter = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Cannibal URI
    string public cannibalURI;

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

    // Mapping from token ID to CannibalURI
    mapping(uint => uint) public _feastedURI;

    // Mapping from token ID to feast function used
    mapping(uint => uint) public _feastedCounters;

    // =============================================================
    //                          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 1;
    }

    /**
     * @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();
        }
    }

    function getFeastedInfo(uint tokenId) public view virtual override returns(uint) {
        return _feastedCounters[tokenId];
    }

    /**
     * @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();

        if(_feastedURI[tokenId] > 0){
            return bytes(cannibalURI).length != 0 ? string(abi.encodePacked(cannibalURI, _toString(_feastedURI[tokenId]), ".json")) : '';
        }else{
            string memory baseURI = _baseURI();
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : '';
        }
    }

    /**
     * @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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

/*
       ________  __    __  ________         ______    ______   __    __  __    __  ______  _______    ______   __        ______   
      |        \|  \  |  \|        \       /      \  /      \ |  \  |  \|  \  |  \|      \|       \  /      \ |  \      /      \ 
       \$$$$$$$$| $$  | $$| $$$$$$$$      |  $$$$$$\|  $$$$$$\| $$\ | $$| $$\ | $$ \$$$$$$| $$$$$$$\|  $$$$$$\| $$     |  $$$$$$\
         | $$   | $$__| $$| $$__          | $$   \$$| $$__| $$| $$$\| $$| $$$\| $$  | $$  | $$__/ $$| $$__| $$| $$     | $$___\$$
         | $$   | $$    $$| $$  \         | $$      | $$    $$| $$$$\ $$| $$$$\ $$  | $$  | $$    $$| $$    $$| $$      \$$    \ 
         | $$   | $$$$$$$$| $$$$$         | $$   __ | $$$$$$$$| $$\$$ $$| $$\$$ $$  | $$  | $$$$$$$\| $$$$$$$$| $$      _\$$$$$$\
         | $$   | $$  | $$| $$_____       | $$__/  \| $$  | $$| $$ \$$$$| $$ \$$$$ _| $$_ | $$__/ $$| $$  | $$| $$_____|  \__| $$
         | $$   | $$  | $$| $$     \       \$$    $$| $$  | $$| $$  \$$$| $$  \$$$|   $$ \| $$    $$| $$  | $$| $$     \\$$    $$
          \$$    \$$   \$$ \$$$$$$$$        \$$$$$$  \$$   \$$ \$$   \$$ \$$   \$$ \$$$$$$ \$$$$$$$  \$$   \$$ \$$$$$$$$ \$$$$$$ 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
*/

contract TheCannibals is ERC721A, Ownable, ReentrancyGuard {

    // ---------------------------------------------------------------------------------------------
    // INIZIALIZATION
    // ---------------------------------------------------------------------------------------------

    constructor() ERC721A("The Cannibals", "FEAST") {
        uri = "ipfs://bafybeiaeogtfn42mvewxj7fijbhivgtdiwrbvskiczlbmhgjti254l55fa/";
        _safeMint(0x0Dc63950FB46d0496d0812E38e9E6E75e62f51Dd, 25);
        _safeMint(0x5d849DAfCb92baF7426EFD6D6bFbA74d823D27C7, 15);
        _safeMint(0x6a7E0BD754FbA5355EFd85BF0896DD80D7FC64D3, 15);
        _safeMint(0xb23e3c30CEE40b6F07cee3705E3Ab2198c3b9F2D, 15);
        _safeMint(0x3079a30EC75471a58dF4ecF0E559007B2F014AFC, 15);
        _safeMint(0x62A48d25C509585eF1b94aDA62E7Eb16E0969c41, 10);
        _safeMint(0xEd001B005C1BFFE13694990e7b9abE74d98D5178, 50);
        _safeMint(0x1Ae93A64c6F013411d2BC94980A658392C40E3D1, 3);
        _safeMint(0x721386D3a8Be59c4090A0804f671755b18C22E24, 3);
        _safeMint(0x91757aaA0863b894865E5701a9a9c49E2e54e52D, 3);
        _safeMint(0xde26eCF4bd74bb7cA4c9c08C30Fd8638b369e579, 3);
        _safeMint(0xFF157f3e833F30599c2dA884F7Ba207c07f411C9, 5);
        _safeMint(0xCaF98643f0ef432A23A1B63123a99AaDF795e544, 5);
        _safeMint(0xa5c0722e0141c75fcFA1BdE7D390850Eb046D939, 5);
        _safeMint(0xB441712335946D3Ef454182EAf598dea053e35a0, 14);
        _safeMint(0x03a1190Da7346f36c504C222e0Eef9A1B0C33e6A, 14);
        platinumMinted += 200;
    }

    // ---------------------------------------------------------------------------------------------
    // EVENTS
    // ---------------------------------------------------------------------------------------------

    event CannibalReveal (string cannibalURI);
    event TicketReveal (string previousURI, string newURI);    
    event Feast (address wallet, uint feasted, uint feastedOn);

    // ---------------------------------------------------------------------------------------------
    // CONSTANTS
    // ---------------------------------------------------------------------------------------------

    uint16 private constant MAX_PER_TX = 3; 
    uint16 private constant MAX_PER_WALLET = 3; 
    uint32 private constant VIP_SUPPLY = 7000;       
    uint32 private constant MAX_SUPPLY = 10000;
    uint32 private constant PLATINUM_SUPPLY = 3000; 
    uint64 private constant VIP_PRICE = 0.015 ether;    
    uint64 private constant PUBLIC_PRICE = 0.025 ether;

    // ---------------------------------------------------------------------------------------------
    // VARIABLES
    // ---------------------------------------------------------------------------------------------

    string public uri;
    uint public vipMinted;
    uint public platinumMinted;
    bool public lockBaseURI;
    bool public lockCannibalURI;    
    bytes32 public vipMerkleRoot;  
    bytes32 public platinumMerkleRoot;      

    // ---------------------------------------------------------------------------------------------
    // ENUMS
    // ---------------------------------------------------------------------------------------------

    enum State {INACTIVE, WHITELIST, PUBLIC, FEAST}
    State public status;

    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public _vipClaimed; 
    mapping(address => bool) public _platinumClaimed;

    // ---------------------------------------------------------------------------------------------
    // OVERRIDES 
    // ---------------------------------------------------------------------------------------------

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

    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

    function setSaleStatus(uint option) external onlyOwner {
        if(option == 0) {
            status = State.INACTIVE;
        }else if(option == 1){
            status = State.WHITELIST;
        }else if(option == 2){
            status = State.PUBLIC;
        }else if(option == 3){
            status = State.FEAST;
        }
    }

    function setTicketURI(string calldata _uri) external onlyOwner {
        require(!lockBaseURI, "ALREADY_REVEALED!");
        string memory previousURI;
        previousURI = uri;
        uri = _uri;
        lockBaseURI = true;       
        emit TicketReveal(previousURI, _uri);
    }

    function setCannibalURI(string calldata _cannibalURI) external onlyOwner {
        require(!lockCannibalURI, "ALREADY_REVEALED!");
        cannibalURI = _cannibalURI;
        lockCannibalURI = true;
        emit CannibalReveal(_cannibalURI);
    }

    function setVipMerkleRoot(bytes32 _vipMerkleRoot) external onlyOwner {
        vipMerkleRoot = _vipMerkleRoot;
    }

    function setPlatinumMerkleRoot(bytes32 _platinumMerkleRoot) external onlyOwner {
        platinumMerkleRoot = _platinumMerkleRoot;
    }

    function withdraw(uint amount) external onlyOwner nonReentrant {
        require(address(this).balance >= amount, "Address: insufficient balance");
        (bool success, ) = msg.sender.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    // ---------------------------------------------------------------------------------------------
    // PUBLIC SETTERS
    // ---------------------------------------------------------------------------------------------

    function publicMint(uint amount) external payable nonReentrant {
        require(amount <= MAX_PER_TX, "EXCEEDS_MAX_PER_TX!");          
        require(status == State.PUBLIC, "PUBLIC_SALE_NOT_ACTIVE!");
        require(msg.value == amount * PUBLIC_PRICE, "INCORRECT_VALUE!");
        require(_totalMinted() + amount <= MAX_SUPPLY + 1, "EXCEEDS_MAX_SUPPLY!");
        _safeMint(msg.sender, amount);
    }

    function platinumMint(bytes32[] calldata _merkleProof) external nonReentrant {
        require(status == State.WHITELIST, "WHITELIST_SALE_NOT_ACTIVE!");
        require(!_platinumClaimed[msg.sender], "ALREADY_CLAIMED!");        
        require(platinumMinted <= PLATINUM_SUPPLY, "EXCEEDS_PLATINUM_SUPPLY!");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, platinumMerkleRoot, leaf), "INVALID_MERKLE_PROOF!");
        platinumMinted++;        
        _platinumClaimed[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function vipMint(bytes32[] calldata _merkleProof, uint amount) external payable nonReentrant {
        require(status == State.WHITELIST, "WHITELIST_SALE_NOT_ACTIVE!");
        require(amount <= MAX_PER_TX, "EXCEEDS_MAX_PER_TX!");
        require(msg.value == amount * VIP_PRICE, "INCORRECT_VALUE!");
        require(vipMinted + amount <= VIP_SUPPLY + 1, "EXCEEDS_VIP_SUPPLY!");        
        require(_vipClaimed[msg.sender] + amount <= MAX_PER_WALLET, "EXCEEDS_MAX_PER_WALLET!");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, vipMerkleRoot, leaf) || MerkleProof.verify(_merkleProof, platinumMerkleRoot, leaf), "INVALID_MERKLE_PROOF!");
        vipMinted += amount;          
        _vipClaimed[msg.sender] += amount;        
        _safeMint(msg.sender, amount);
    }

    function feast(uint feasted, uint feastedOn) external nonReentrant {  
        require(status == State.FEAST, "FEAST_NOT_ACTIVE!");  
        require(_feastedCounters[feastedOn] == 0, "CANNOT_BE_FEASTED_ON!");                
        require(ownerOf(feasted) == msg.sender && ownerOf(feastedOn) == msg.sender, "NOT_THE_OWNER!");
        _feastedCounters[feasted]++;        
        if(_feastedURI[feasted] == 0){
            _feastedURI[feasted] = feastCounter;
            feastCounter++;
        }
        _burn(feastedOn);
        emit Feast(msg.sender, feasted, feastedOn);
    } 
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":false,"internalType":"string","name":"cannibalURI","type":"string"}],"name":"CannibalReveal","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":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"feasted","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feastedOn","type":"uint256"}],"name":"Feast","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":"previousURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"TicketReveal","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_feastedCounters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_feastedURI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_platinumClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_vipClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cannibalURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"feasted","type":"uint256"},{"internalType":"uint256","name":"feastedOn","type":"uint256"}],"name":"feast","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeastedInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"lockBaseURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockCannibalURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"platinumMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"platinumMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"platinumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cannibalURI","type":"string"}],"name":"setCannibalURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_platinumMerkleRoot","type":"bytes32"}],"name":"setPlatinumMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"option","type":"uint256"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setTicketURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_vipMerkleRoot","type":"bytes32"}],"name":"setVipMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum TheCannibals.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vipMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"vipMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"vipMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160005560016002553480156200001b57600080fd5b506040518060400160405280600d81526020016c5468652043616e6e6962616c7360981b8152506040518060400160405280600581526020016411915054d560da1b815250816003908162000071919062000659565b50600462000080828262000659565b50506001600055506200009333620002f2565b6001600d5560408051608081019091526043808252620031e16020830139600e90620000c0908262000659565b50620000e2730dc63950fb46d0496d0812e38e9e6e75e62f51dd601962000344565b62000103735d849dafcb92baf7426efd6d6bfba74d823d27c7600f62000344565b62000124736a7e0bd754fba5355efd85bf0896dd80d7fc64d3600f62000344565b6200014573b23e3c30cee40b6f07cee3705e3ab2198c3b9f2d600f62000344565b62000166733079a30ec75471a58df4ecf0e559007b2f014afc600f62000344565b620001877362a48d25c509585ef1b94ada62e7eb16e0969c41600a62000344565b620001a873ed001b005c1bffe13694990e7b9abe74d98d5178603262000344565b620001c9731ae93a64c6f013411d2bc94980a658392c40e3d1600362000344565b620001ea73721386d3a8be59c4090a0804f671755b18c22e24600362000344565b6200020b7391757aaa0863b894865e5701a9a9c49e2e54e52d600362000344565b6200022c73de26ecf4bd74bb7ca4c9c08c30fd8638b369e579600362000344565b6200024d73ff157f3e833f30599c2da884f7ba207c07f411c9600562000344565b6200026e73caf98643f0ef432a23a1b63123a99aadf795e544600562000344565b6200028f73a5c0722e0141c75fcfa1bde7d390850eb046d939600562000344565b620002b073b441712335946d3ef454182eaf598dea053e35a0600e62000344565b620002d17303a1190da7346f36c504c222e0eef9a1b0c33e6a600e62000344565b60c860106000828254620002e6919062000725565b90915550620007f39050565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003668282604051806020016040528060008152506200036a60201b60201c565b5050565b620003768383620003e1565b6001600160a01b0383163b15620003dc576000548281035b6001810190620003a490600090879086620004c1565b620003c2576040516368d2bf6b60e11b815260040160405180910390fd5b8181106200038e578160005414620003d957600080fd5b50505b505050565b6000805490829003620004075760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b17831790558284019083908390600080516020620032248339815191528180a4600183015b81811462000496578083600060008051602062003224833981519152600080a46001016200046d565b5081600003620004b857604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620004f89033908990889088906004016200074d565b6020604051808303816000875af192505050801562000536575060408051601f3d908101601f191682019092526200053391810190620007c0565b60015b62000598573d80801562000567576040519150601f19603f3d011682016040523d82523d6000602084013e6200056c565b606091505b50805160000362000590576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005e057607f821691505b6020821081036200060157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003dc57600081815260208120601f850160051c81016020861015620006305750805b601f850160051c820191505b8181101562000651578281556001016200063c565b505050505050565b81516001600160401b03811115620006755762000675620005b5565b6200068d81620006868454620005cb565b8462000607565b602080601f831160018114620006c55760008415620006ac5750858301515b600019600386901b1c1916600185901b17855562000651565b600085815260208120601f198616915b82811015620006f657888601518255948401946001909101908401620006d5565b5085821015620007155787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200074757634e487b7160e01b600052601160045260246000fd5b92915050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200079c5785810182015185820160a0015281016200077e565b5050600060a0828501015260a0601f19601f83011684010191505095945050505050565b600060208284031215620007d357600080fd5b81516001600160e01b031981168114620007ec57600080fd5b9392505050565b6129de80620008036000396000f3fe6080604052600436106102465760003560e01c80637afacbb011610139578063c0586c6c116100b6578063e985e9c51161007a578063e985e9c5146106ce578063eac989f8146106ee578063ed1b22ad14610703578063f29f15af14610722578063f2fde38b14610742578063f6d6480d1461076257600080fd5b8063c0586c6c14610628578063c534084814610648578063c87b56dd1461065e578063ce125c3f1461067e578063e7f68d111461069e57600080fd5b80639ee72988116100fd5780639ee7298814610592578063a22cb465146105b2578063b3e51ca3146105d2578063b88d4fde146105e8578063bc976afd1461060857600080fd5b80637afacbb0146104ef578063847f484b1461051c5780638da5cb5b146105495780638eddc7221461056757806395d89b411461057d57600080fd5b80632e1a7d4d116101c75780636352211e1161018b5780636352211e14610464578063673814bf1461048457806370a08231146104a4578063715018a6146104c457806372a1056c146104d957600080fd5b80632e1a7d4d146103b057806342842e0e146103d057806353df5c7c146103f05780635e5973761461040a5780635e5db2ed1461043757600080fd5b806318160ddd1161020e57806318160ddd1461031c5780631b60794414610343578063200d2ed21461035657806323b872dd1461037d5780632db115441461039d57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780631137801d146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004612189565b610777565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107c9565b60405161027791906121f6565b3480156102ae57600080fd5b506102c26102bd366004612209565b61085b565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004612239565b61089f565b005b34801561030857600080fd5b506102fa6103173660046122af565b61093f565b34801561032857600080fd5b5060015460005403600019015b604051908152602001610277565b6102fa6103513660046122f1565b610b4d565b34801561036257600080fd5b506014546103709060ff1681565b6040516102779190612353565b34801561038957600080fd5b506102fa61039836600461237b565b610e34565b6102fa6103ab366004612209565b610fc5565b3480156103bc57600080fd5b506102fa6103cb366004612209565b61116c565b3480156103dc57600080fd5b506102fa6103eb36600461237b565b6112d4565b3480156103fc57600080fd5b5060115461026b9060ff1681565b34801561041657600080fd5b50610335610425366004612209565b600a6020526000908152604090205481565b34801561044357600080fd5b50610335610452366004612209565b6000908152600b602052604090205490565b34801561047057600080fd5b506102c261047f366004612209565b6112f4565b34801561049057600080fd5b506102fa61049f3660046123b7565b6112ff565b3480156104b057600080fd5b506103356104bf366004612429565b6113d0565b3480156104d057600080fd5b506102fa61141f565b3480156104e557600080fd5b5061033560125481565b3480156104fb57600080fd5b5061033561050a366004612209565b600b6020526000908152604090205481565b34801561052857600080fd5b50610335610537366004612429565b60156020526000908152604090205481565b34801561055557600080fd5b50600c546001600160a01b03166102c2565b34801561057357600080fd5b50610335600f5481565b34801561058957600080fd5b50610295611455565b34801561059e57600080fd5b506102fa6105ad366004612209565b611464565b3480156105be57600080fd5b506102fa6105cd366004612444565b611493565b3480156105de57600080fd5b5061033560135481565b3480156105f457600080fd5b506102fa610603366004612496565b611528565b34801561061457600080fd5b506102fa610623366004612209565b611572565b34801561063457600080fd5b506102fa6106433660046123b7565b6115a1565b34801561065457600080fd5b5061033560105481565b34801561066a57600080fd5b50610295610679366004612209565b611701565b34801561068a57600080fd5b506102fa610699366004612572565b61180a565b3480156106aa57600080fd5b5061026b6106b9366004612429565b60166020526000908152604090205460ff1681565b3480156106da57600080fd5b5061026b6106e9366004612594565b6119fa565b3480156106fa57600080fd5b50610295611a28565b34801561070f57600080fd5b5060115461026b90610100900460ff1681565b34801561072e57600080fd5b506102fa61073d366004612209565b611ab6565b34801561074e57600080fd5b506102fa61075d366004612429565b611b50565b34801561076e57600080fd5b50610295611be8565b60006301ffc9a760e01b6001600160e01b0319831614806107a857506380ac58cd60e01b6001600160e01b03198316145b806107c35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107d8906125c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610804906125c7565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b600061086682611bf5565b610883576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006108aa826112f4565b9050336001600160a01b038216146108e3576108c681336119fa565b6108e3576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6002600d540361096a5760405162461bcd60e51b815260040161096190612601565b60405180910390fd5b6002600d55600160145460ff1660038111156109885761098861233d565b146109d55760405162461bcd60e51b815260206004820152601a60248201527f57484954454c4953545f53414c455f4e4f545f414354495645210000000000006044820152606401610961565b3360009081526016602052604090205460ff1615610a285760405162461bcd60e51b815260206004820152601060248201526f414c52454144595f434c41494d45442160801b6044820152606401610961565b601054610bb81015610a7c5760405162461bcd60e51b815260206004820152601860248201527f455843454544535f504c4154494e554d5f535550504c592100000000000000006044820152606401610961565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610ac3838360135484611c2a565b610b075760405162461bcd60e51b8152602060048201526015602482015274494e56414c49445f4d45524b4c455f50524f4f462160581b6044820152606401610961565b60108054906000610b178361264e565b9091555050336000818152601660205260409020805460ff19166001908117909155610b439190611cdb565b50506001600d5550565b6002600d5403610b6f5760405162461bcd60e51b815260040161096190612601565b6002600d55600160145460ff166003811115610b8d57610b8d61233d565b14610bda5760405162461bcd60e51b815260206004820152601a60248201527f57484954454c4953545f53414c455f4e4f545f414354495645210000000000006044820152606401610961565b6003811115610c215760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610961565b610c3266354a6ba7a1800082612667565b3414610c735760405162461bcd60e51b815260206004820152601060248201526f494e434f52524543545f56414c55452160801b6044820152606401610961565b610c80611b586001612686565b63ffffffff1681600f54610c9491906126aa565b1115610cd85760405162461bcd60e51b8152602060048201526013602482015272455843454544535f5649505f535550504c592160681b6044820152606401610961565b33600090815260156020526040902054600390610cf69083906126aa565b1115610d445760405162461bcd60e51b815260206004820152601760248201527f455843454544535f4d41585f5045525f57414c4c4554210000000000000000006044820152606401610961565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d8b848460125484611c2a565b80610d9f5750610d9f848460135484611c2a565b610de35760405162461bcd60e51b8152602060048201526015602482015274494e56414c49445f4d45524b4c455f50524f4f462160581b6044820152606401610961565b81600f6000828254610df591906126aa565b90915550503360009081526015602052604081208054849290610e199084906126aa565b90915550610e2990503383611cdb565b50506001600d555050565b6000610e3f82611cf9565b9050836001600160a01b0316816001600160a01b031614610e725760405162a1148160e81b815260040160405180910390fd5b60008281526008602052604090208054610e9e8187335b6001600160a01b039081169116811491141790565b610ec957610eac86336119fa565b610ec957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ef057604051633a954ecd60e21b815260040160405180910390fd5b8015610efb57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b84169003610f8d57600184016000818152600660205260408120549003610f8b576000548114610f8b5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061298983398151915260405160405180910390a45b505050505050565b6002600d5403610fe75760405162461bcd60e51b815260040161096190612601565b6002600d5560038111156110335760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610961565b600260145460ff16600381111561104c5761104c61233d565b146110995760405162461bcd60e51b815260206004820152601760248201527f5055424c49435f53414c455f4e4f545f414354495645210000000000000000006044820152606401610961565b6110aa6658d15e1762800082612667565b34146110eb5760405162461bcd60e51b815260206004820152601060248201526f494e434f52524543545f56414c55452160801b6044820152606401610961565b6110f86127106001612686565b63ffffffff168161110c6000546000190190565b61111691906126aa565b111561115a5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f535550504c592160681b6044820152606401610961565b6111643382611cdb565b506001600d55565b600c546001600160a01b031633146111965760405162461bcd60e51b8152600401610961906126bd565b6002600d54036111b85760405162461bcd60e51b815260040161096190612601565b6002600d554781111561120d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610961565b604051600090339083908381818185875af1925050503d806000811461124f576040519150601f19603f3d011682016040523d82523d6000602084013e611254565b606091505b50509050806112cb5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610961565b50506001600d55565b6112ef83838360405180602001604052806000815250611528565b505050565b60006107c382611cf9565b600c546001600160a01b031633146113295760405162461bcd60e51b8152600401610961906126bd565b601154610100900460ff16156113755760405162461bcd60e51b8152602060048201526011602482015270414c52454144595f52455645414c45442160781b6044820152606401610961565b6005611382828483612738565b506011805461ff0019166101001790556040517f5d039ec0ff42ca1f7e8267a0f7002de6e67a75aa7114e59b2d1fcca758865b1c906113c49084908490612821565b60405180910390a15050565b60006001600160a01b0382166113f9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b600c546001600160a01b031633146114495760405162461bcd60e51b8152600401610961906126bd565b6114536000611d68565b565b6060600480546107d8906125c7565b600c546001600160a01b0316331461148e5760405162461bcd60e51b8152600401610961906126bd565b601355565b336001600160a01b038316036114bc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611533848484610e34565b6001600160a01b0383163b1561156c5761154f84848484611dba565b61156c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c546001600160a01b0316331461159c5760405162461bcd60e51b8152600401610961906126bd565b601255565b600c546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610961906126bd565b60115460ff16156116125760405162461bcd60e51b8152602060048201526011602482015270414c52454144595f52455645414c45442160781b6044820152606401610961565b6060600e8054611621906125c7565b80601f016020809104026020016040519081016040528092919081815260200182805461164d906125c7565b801561169a5780601f1061166f5761010080835404028352916020019161169a565b820191906000526020600020905b81548152906001019060200180831161167d57829003601f168201915b505050505090508282600e91826116b2929190612738565b506011805460ff191660011790556040517f09744f14306c6cccb451a449f648e3bf3445fd0d246ec6a46fa0713a903c8a37906116f490839086908690612835565b60405180910390a1505050565b606061170c82611bf5565b61172957604051630a14c4b560e41b815260040160405180910390fd5b6000828152600a6020526040902054156117a9576005805461174a906125c7565b905060000361176857604051806020016040528060008152506107c3565b6000828152600a602052604090205460059061178390611ea2565b604051602001611794929190612865565b60405160208183030381529060405292915050565b60006117b3611eda565b905080516000036117d357604051806020016040528060008152506117fe565b806117dd84611ea2565b6040516020016117ee9291906128fc565b6040516020818303038152906040525b9392505050565b919050565b6002600d540361182c5760405162461bcd60e51b815260040161096190612601565b6002600d55600360145460ff16600381111561184a5761184a61233d565b1461188b5760405162461bcd60e51b815260206004820152601160248201527046454153545f4e4f545f4143544956452160781b6044820152606401610961565b6000818152600b6020526040902054156118df5760405162461bcd60e51b815260206004820152601560248201527443414e4e4f545f42455f464541535445445f4f4e2160581b6044820152606401610961565b336118e9836112f4565b6001600160a01b031614801561190f575033611904826112f4565b6001600160a01b0316145b61194c5760405162461bcd60e51b815260206004820152600e60248201526d4e4f545f5448455f4f574e45522160901b6044820152606401610961565b6000828152600b602052604081208054916119668361264e565b90915550506000828152600a602052604081205490036119a757600280546000848152600a602052604081208290559091906119a18361264e565b91905055505b6119b081611ee9565b60408051338152602081018490529081018290527f4f1cab1e919613ed495b72aeb683a85354e43e545fca612fd9a65a2e1ae8960b9060600160405180910390a150506001600d55565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600e8054611a35906125c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a61906125c7565b8015611aae5780601f10611a8357610100808354040283529160200191611aae565b820191906000526020600020905b815481529060010190602001808311611a9157829003601f168201915b505050505081565b600c546001600160a01b03163314611ae05760405162461bcd60e51b8152600401610961906126bd565b80600003611b0057601480546000919060ff19166001835b021790555050565b80600103611b1b57601480546001919060ff19168280611af8565b80600203611b3757601480546002919060ff1916600183611af8565b80600303611b4d576014805460ff191660031790555b50565b600c546001600160a01b03163314611b7a5760405162461bcd60e51b8152600401610961906126bd565b6001600160a01b038116611bdf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610961565b611b4d81611d68565b60058054611a35906125c7565b600081600111158015611c09575060005482105b80156107c3575050600090815260066020526040902054600160e01b161590565b600081815b85811015611ccd576000878783818110611c4b57611c4b612922565b90506020020135905080831015611c8d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611cba565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611cc58161264e565b915050611c2f565b50831490505b949350505050565b611cf5828260405180602001604052806000815250611ef4565b5050565b60008180600111611d4f57600054811015611d4f5760008181526006602052604081205490600160e01b82169003611d4d575b806000036117fe575060001901600081815260066020526040902054611d2c565b505b604051636f96cda160e11b815260040160405180910390fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611def903390899088908890600401612938565b6020604051808303816000875af1925050508015611e2a575060408051601f3d908101601f19168201909252611e279181019061296b565b60015b611e88573d808015611e58576040519150601f19603f3d011682016040523d82523d6000602084013e611e5d565b606091505b508051600003611e80576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cd3565b604080516080019081905280825b600183039250600a81066030018353600a900480611eb05750819003601f19909101908152919050565b6060600e80546107d8906125c7565b611b4d816000611f61565b611efe8383612099565b6001600160a01b0383163b156112ef576000548281035b611f286000868380600101945086611dba565b611f45576040516368d2bf6b60e11b815260040160405180910390fd5b818110611f15578160005414611f5a57600080fd5b5050505050565b6000611f6c83611cf9565b905080600080611f8a86600090815260086020526040902080549091565b915091508415611fca57611f9f818433610e89565b611fca57611fad83336119fa565b611fca57604051632ce44b5f60e11b815260040160405180910390fd5b8015611fd557600082555b6001600160a01b038316600081815260076020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260066020526040812091909155600160e11b85169003612063576001860160008181526006602052604081205490036120615760005481146120615760008181526006602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612989833981519152908390a45050600180548101905550505050565b60008054908290036120be5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083906000805160206129898339815191528180a4600183015b8181146121495780836000600080516020612989833981519152600080a4600101612123565b508160000361216a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114611b4d57600080fd5b60006020828403121561219b57600080fd5b81356117fe81612173565b60005b838110156121c15781810151838201526020016121a9565b50506000910152565b600081518084526121e28160208601602086016121a6565b601f01601f19169290920160200192915050565b6020815260006117fe60208301846121ca565b60006020828403121561221b57600080fd5b5035919050565b80356001600160a01b038116811461180557600080fd5b6000806040838503121561224c57600080fd5b61225583612222565b946020939093013593505050565b60008083601f84011261227557600080fd5b50813567ffffffffffffffff81111561228d57600080fd5b6020830191508360208260051b85010111156122a857600080fd5b9250929050565b600080602083850312156122c257600080fd5b823567ffffffffffffffff8111156122d957600080fd5b6122e585828601612263565b90969095509350505050565b60008060006040848603121561230657600080fd5b833567ffffffffffffffff81111561231d57600080fd5b61232986828701612263565b909790965060209590950135949350505050565b634e487b7160e01b600052602160045260246000fd5b602081016004831061237557634e487b7160e01b600052602160045260246000fd5b91905290565b60008060006060848603121561239057600080fd5b61239984612222565b92506123a760208501612222565b9150604084013590509250925092565b600080602083850312156123ca57600080fd5b823567ffffffffffffffff808211156123e257600080fd5b818501915085601f8301126123f657600080fd5b81358181111561240557600080fd5b86602082850101111561241757600080fd5b60209290920196919550909350505050565b60006020828403121561243b57600080fd5b6117fe82612222565b6000806040838503121561245757600080fd5b61246083612222565b91506020830135801515811461247557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156124ac57600080fd5b6124b585612222565b93506124c360208601612222565b925060408501359150606085013567ffffffffffffffff808211156124e757600080fd5b818701915087601f8301126124fb57600080fd5b81358181111561250d5761250d612480565b604051601f8201601f19908116603f0116810190838211818310171561253557612535612480565b816040528281528a602084870101111561254e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561258557600080fd5b50508035926020909101359150565b600080604083850312156125a757600080fd5b6125b083612222565b91506125be60208401612222565b90509250929050565b600181811c908216806125db57607f821691505b6020821081036125fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006001820161266057612660612638565b5060010190565b600081600019048311821515161561268157612681612638565b500290565b63ffffffff8181168382160190808211156126a3576126a3612638565b5092915050565b808201808211156107c3576107c3612638565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156112ef57600081815260208120601f850160051c810160208610156127195750805b601f850160051c820191505b81811015610fbd57828155600101612725565b67ffffffffffffffff83111561275057612750612480565b6127648361275e83546125c7565b836126f2565b6000601f84116001811461279857600085156127805750838201355b600019600387901b1c1916600186901b178355611f5a565b600083815260209020601f19861690835b828110156127c957868501358255602094850194600190920191016127a9565b50868210156127e65760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b602081526000611cd36020830184866127f8565b60408152600061284860408301866121ca565b828103602084015261285b8185876127f8565b9695505050505050565b6000808454612873816125c7565b6001828116801561288b57600181146128a0576128cf565b60ff19841687528215158302870194506128cf565b8860005260208060002060005b858110156128c65781548a8201529084019082016128ad565b50505082870194505b5050505083516128e38183602088016121a6565b64173539b7b760d91b9101908152600501949350505050565b6000835161290e8184602088016121a6565b8351908301906128e38183602088016121a6565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285b908301846121ca565b60006020828403121561297d57600080fd5b81516117fe8161217356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220258ba68eb600ce533a7be5b2fcd880e34ab5d586035f82225c8b93f7b1529f0164736f6c63430008100033697066733a2f2f6261667962656961656f6774666e34326d766577786a3766696a626869766774646977726276736b69637a6c626d68676a74693235346c353566612fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637afacbb011610139578063c0586c6c116100b6578063e985e9c51161007a578063e985e9c5146106ce578063eac989f8146106ee578063ed1b22ad14610703578063f29f15af14610722578063f2fde38b14610742578063f6d6480d1461076257600080fd5b8063c0586c6c14610628578063c534084814610648578063c87b56dd1461065e578063ce125c3f1461067e578063e7f68d111461069e57600080fd5b80639ee72988116100fd5780639ee7298814610592578063a22cb465146105b2578063b3e51ca3146105d2578063b88d4fde146105e8578063bc976afd1461060857600080fd5b80637afacbb0146104ef578063847f484b1461051c5780638da5cb5b146105495780638eddc7221461056757806395d89b411461057d57600080fd5b80632e1a7d4d116101c75780636352211e1161018b5780636352211e14610464578063673814bf1461048457806370a08231146104a4578063715018a6146104c457806372a1056c146104d957600080fd5b80632e1a7d4d146103b057806342842e0e146103d057806353df5c7c146103f05780635e5973761461040a5780635e5db2ed1461043757600080fd5b806318160ddd1161020e57806318160ddd1461031c5780631b60794414610343578063200d2ed21461035657806323b872dd1461037d5780632db115441461039d57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780631137801d146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004612189565b610777565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107c9565b60405161027791906121f6565b3480156102ae57600080fd5b506102c26102bd366004612209565b61085b565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004612239565b61089f565b005b34801561030857600080fd5b506102fa6103173660046122af565b61093f565b34801561032857600080fd5b5060015460005403600019015b604051908152602001610277565b6102fa6103513660046122f1565b610b4d565b34801561036257600080fd5b506014546103709060ff1681565b6040516102779190612353565b34801561038957600080fd5b506102fa61039836600461237b565b610e34565b6102fa6103ab366004612209565b610fc5565b3480156103bc57600080fd5b506102fa6103cb366004612209565b61116c565b3480156103dc57600080fd5b506102fa6103eb36600461237b565b6112d4565b3480156103fc57600080fd5b5060115461026b9060ff1681565b34801561041657600080fd5b50610335610425366004612209565b600a6020526000908152604090205481565b34801561044357600080fd5b50610335610452366004612209565b6000908152600b602052604090205490565b34801561047057600080fd5b506102c261047f366004612209565b6112f4565b34801561049057600080fd5b506102fa61049f3660046123b7565b6112ff565b3480156104b057600080fd5b506103356104bf366004612429565b6113d0565b3480156104d057600080fd5b506102fa61141f565b3480156104e557600080fd5b5061033560125481565b3480156104fb57600080fd5b5061033561050a366004612209565b600b6020526000908152604090205481565b34801561052857600080fd5b50610335610537366004612429565b60156020526000908152604090205481565b34801561055557600080fd5b50600c546001600160a01b03166102c2565b34801561057357600080fd5b50610335600f5481565b34801561058957600080fd5b50610295611455565b34801561059e57600080fd5b506102fa6105ad366004612209565b611464565b3480156105be57600080fd5b506102fa6105cd366004612444565b611493565b3480156105de57600080fd5b5061033560135481565b3480156105f457600080fd5b506102fa610603366004612496565b611528565b34801561061457600080fd5b506102fa610623366004612209565b611572565b34801561063457600080fd5b506102fa6106433660046123b7565b6115a1565b34801561065457600080fd5b5061033560105481565b34801561066a57600080fd5b50610295610679366004612209565b611701565b34801561068a57600080fd5b506102fa610699366004612572565b61180a565b3480156106aa57600080fd5b5061026b6106b9366004612429565b60166020526000908152604090205460ff1681565b3480156106da57600080fd5b5061026b6106e9366004612594565b6119fa565b3480156106fa57600080fd5b50610295611a28565b34801561070f57600080fd5b5060115461026b90610100900460ff1681565b34801561072e57600080fd5b506102fa61073d366004612209565b611ab6565b34801561074e57600080fd5b506102fa61075d366004612429565b611b50565b34801561076e57600080fd5b50610295611be8565b60006301ffc9a760e01b6001600160e01b0319831614806107a857506380ac58cd60e01b6001600160e01b03198316145b806107c35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107d8906125c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610804906125c7565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b600061086682611bf5565b610883576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006108aa826112f4565b9050336001600160a01b038216146108e3576108c681336119fa565b6108e3576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6002600d540361096a5760405162461bcd60e51b815260040161096190612601565b60405180910390fd5b6002600d55600160145460ff1660038111156109885761098861233d565b146109d55760405162461bcd60e51b815260206004820152601a60248201527f57484954454c4953545f53414c455f4e4f545f414354495645210000000000006044820152606401610961565b3360009081526016602052604090205460ff1615610a285760405162461bcd60e51b815260206004820152601060248201526f414c52454144595f434c41494d45442160801b6044820152606401610961565b601054610bb81015610a7c5760405162461bcd60e51b815260206004820152601860248201527f455843454544535f504c4154494e554d5f535550504c592100000000000000006044820152606401610961565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610ac3838360135484611c2a565b610b075760405162461bcd60e51b8152602060048201526015602482015274494e56414c49445f4d45524b4c455f50524f4f462160581b6044820152606401610961565b60108054906000610b178361264e565b9091555050336000818152601660205260409020805460ff19166001908117909155610b439190611cdb565b50506001600d5550565b6002600d5403610b6f5760405162461bcd60e51b815260040161096190612601565b6002600d55600160145460ff166003811115610b8d57610b8d61233d565b14610bda5760405162461bcd60e51b815260206004820152601a60248201527f57484954454c4953545f53414c455f4e4f545f414354495645210000000000006044820152606401610961565b6003811115610c215760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610961565b610c3266354a6ba7a1800082612667565b3414610c735760405162461bcd60e51b815260206004820152601060248201526f494e434f52524543545f56414c55452160801b6044820152606401610961565b610c80611b586001612686565b63ffffffff1681600f54610c9491906126aa565b1115610cd85760405162461bcd60e51b8152602060048201526013602482015272455843454544535f5649505f535550504c592160681b6044820152606401610961565b33600090815260156020526040902054600390610cf69083906126aa565b1115610d445760405162461bcd60e51b815260206004820152601760248201527f455843454544535f4d41585f5045525f57414c4c4554210000000000000000006044820152606401610961565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d8b848460125484611c2a565b80610d9f5750610d9f848460135484611c2a565b610de35760405162461bcd60e51b8152602060048201526015602482015274494e56414c49445f4d45524b4c455f50524f4f462160581b6044820152606401610961565b81600f6000828254610df591906126aa565b90915550503360009081526015602052604081208054849290610e199084906126aa565b90915550610e2990503383611cdb565b50506001600d555050565b6000610e3f82611cf9565b9050836001600160a01b0316816001600160a01b031614610e725760405162a1148160e81b815260040160405180910390fd5b60008281526008602052604090208054610e9e8187335b6001600160a01b039081169116811491141790565b610ec957610eac86336119fa565b610ec957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ef057604051633a954ecd60e21b815260040160405180910390fd5b8015610efb57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b84169003610f8d57600184016000818152600660205260408120549003610f8b576000548114610f8b5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061298983398151915260405160405180910390a45b505050505050565b6002600d5403610fe75760405162461bcd60e51b815260040161096190612601565b6002600d5560038111156110335760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b6044820152606401610961565b600260145460ff16600381111561104c5761104c61233d565b146110995760405162461bcd60e51b815260206004820152601760248201527f5055424c49435f53414c455f4e4f545f414354495645210000000000000000006044820152606401610961565b6110aa6658d15e1762800082612667565b34146110eb5760405162461bcd60e51b815260206004820152601060248201526f494e434f52524543545f56414c55452160801b6044820152606401610961565b6110f86127106001612686565b63ffffffff168161110c6000546000190190565b61111691906126aa565b111561115a5760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f535550504c592160681b6044820152606401610961565b6111643382611cdb565b506001600d55565b600c546001600160a01b031633146111965760405162461bcd60e51b8152600401610961906126bd565b6002600d54036111b85760405162461bcd60e51b815260040161096190612601565b6002600d554781111561120d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610961565b604051600090339083908381818185875af1925050503d806000811461124f576040519150601f19603f3d011682016040523d82523d6000602084013e611254565b606091505b50509050806112cb5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610961565b50506001600d55565b6112ef83838360405180602001604052806000815250611528565b505050565b60006107c382611cf9565b600c546001600160a01b031633146113295760405162461bcd60e51b8152600401610961906126bd565b601154610100900460ff16156113755760405162461bcd60e51b8152602060048201526011602482015270414c52454144595f52455645414c45442160781b6044820152606401610961565b6005611382828483612738565b506011805461ff0019166101001790556040517f5d039ec0ff42ca1f7e8267a0f7002de6e67a75aa7114e59b2d1fcca758865b1c906113c49084908490612821565b60405180910390a15050565b60006001600160a01b0382166113f9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b600c546001600160a01b031633146114495760405162461bcd60e51b8152600401610961906126bd565b6114536000611d68565b565b6060600480546107d8906125c7565b600c546001600160a01b0316331461148e5760405162461bcd60e51b8152600401610961906126bd565b601355565b336001600160a01b038316036114bc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611533848484610e34565b6001600160a01b0383163b1561156c5761154f84848484611dba565b61156c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c546001600160a01b0316331461159c5760405162461bcd60e51b8152600401610961906126bd565b601255565b600c546001600160a01b031633146115cb5760405162461bcd60e51b8152600401610961906126bd565b60115460ff16156116125760405162461bcd60e51b8152602060048201526011602482015270414c52454144595f52455645414c45442160781b6044820152606401610961565b6060600e8054611621906125c7565b80601f016020809104026020016040519081016040528092919081815260200182805461164d906125c7565b801561169a5780601f1061166f5761010080835404028352916020019161169a565b820191906000526020600020905b81548152906001019060200180831161167d57829003601f168201915b505050505090508282600e91826116b2929190612738565b506011805460ff191660011790556040517f09744f14306c6cccb451a449f648e3bf3445fd0d246ec6a46fa0713a903c8a37906116f490839086908690612835565b60405180910390a1505050565b606061170c82611bf5565b61172957604051630a14c4b560e41b815260040160405180910390fd5b6000828152600a6020526040902054156117a9576005805461174a906125c7565b905060000361176857604051806020016040528060008152506107c3565b6000828152600a602052604090205460059061178390611ea2565b604051602001611794929190612865565b60405160208183030381529060405292915050565b60006117b3611eda565b905080516000036117d357604051806020016040528060008152506117fe565b806117dd84611ea2565b6040516020016117ee9291906128fc565b6040516020818303038152906040525b9392505050565b919050565b6002600d540361182c5760405162461bcd60e51b815260040161096190612601565b6002600d55600360145460ff16600381111561184a5761184a61233d565b1461188b5760405162461bcd60e51b815260206004820152601160248201527046454153545f4e4f545f4143544956452160781b6044820152606401610961565b6000818152600b6020526040902054156118df5760405162461bcd60e51b815260206004820152601560248201527443414e4e4f545f42455f464541535445445f4f4e2160581b6044820152606401610961565b336118e9836112f4565b6001600160a01b031614801561190f575033611904826112f4565b6001600160a01b0316145b61194c5760405162461bcd60e51b815260206004820152600e60248201526d4e4f545f5448455f4f574e45522160901b6044820152606401610961565b6000828152600b602052604081208054916119668361264e565b90915550506000828152600a602052604081205490036119a757600280546000848152600a602052604081208290559091906119a18361264e565b91905055505b6119b081611ee9565b60408051338152602081018490529081018290527f4f1cab1e919613ed495b72aeb683a85354e43e545fca612fd9a65a2e1ae8960b9060600160405180910390a150506001600d55565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600e8054611a35906125c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a61906125c7565b8015611aae5780601f10611a8357610100808354040283529160200191611aae565b820191906000526020600020905b815481529060010190602001808311611a9157829003601f168201915b505050505081565b600c546001600160a01b03163314611ae05760405162461bcd60e51b8152600401610961906126bd565b80600003611b0057601480546000919060ff19166001835b021790555050565b80600103611b1b57601480546001919060ff19168280611af8565b80600203611b3757601480546002919060ff1916600183611af8565b80600303611b4d576014805460ff191660031790555b50565b600c546001600160a01b03163314611b7a5760405162461bcd60e51b8152600401610961906126bd565b6001600160a01b038116611bdf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610961565b611b4d81611d68565b60058054611a35906125c7565b600081600111158015611c09575060005482105b80156107c3575050600090815260066020526040902054600160e01b161590565b600081815b85811015611ccd576000878783818110611c4b57611c4b612922565b90506020020135905080831015611c8d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611cba565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611cc58161264e565b915050611c2f565b50831490505b949350505050565b611cf5828260405180602001604052806000815250611ef4565b5050565b60008180600111611d4f57600054811015611d4f5760008181526006602052604081205490600160e01b82169003611d4d575b806000036117fe575060001901600081815260066020526040902054611d2c565b505b604051636f96cda160e11b815260040160405180910390fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611def903390899088908890600401612938565b6020604051808303816000875af1925050508015611e2a575060408051601f3d908101601f19168201909252611e279181019061296b565b60015b611e88573d808015611e58576040519150601f19603f3d011682016040523d82523d6000602084013e611e5d565b606091505b508051600003611e80576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cd3565b604080516080019081905280825b600183039250600a81066030018353600a900480611eb05750819003601f19909101908152919050565b6060600e80546107d8906125c7565b611b4d816000611f61565b611efe8383612099565b6001600160a01b0383163b156112ef576000548281035b611f286000868380600101945086611dba565b611f45576040516368d2bf6b60e11b815260040160405180910390fd5b818110611f15578160005414611f5a57600080fd5b5050505050565b6000611f6c83611cf9565b905080600080611f8a86600090815260086020526040902080549091565b915091508415611fca57611f9f818433610e89565b611fca57611fad83336119fa565b611fca57604051632ce44b5f60e11b815260040160405180910390fd5b8015611fd557600082555b6001600160a01b038316600081815260076020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260066020526040812091909155600160e11b85169003612063576001860160008181526006602052604081205490036120615760005481146120615760008181526006602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612989833981519152908390a45050600180548101905550505050565b60008054908290036120be5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083906000805160206129898339815191528180a4600183015b8181146121495780836000600080516020612989833981519152600080a4600101612123565b508160000361216a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114611b4d57600080fd5b60006020828403121561219b57600080fd5b81356117fe81612173565b60005b838110156121c15781810151838201526020016121a9565b50506000910152565b600081518084526121e28160208601602086016121a6565b601f01601f19169290920160200192915050565b6020815260006117fe60208301846121ca565b60006020828403121561221b57600080fd5b5035919050565b80356001600160a01b038116811461180557600080fd5b6000806040838503121561224c57600080fd5b61225583612222565b946020939093013593505050565b60008083601f84011261227557600080fd5b50813567ffffffffffffffff81111561228d57600080fd5b6020830191508360208260051b85010111156122a857600080fd5b9250929050565b600080602083850312156122c257600080fd5b823567ffffffffffffffff8111156122d957600080fd5b6122e585828601612263565b90969095509350505050565b60008060006040848603121561230657600080fd5b833567ffffffffffffffff81111561231d57600080fd5b61232986828701612263565b909790965060209590950135949350505050565b634e487b7160e01b600052602160045260246000fd5b602081016004831061237557634e487b7160e01b600052602160045260246000fd5b91905290565b60008060006060848603121561239057600080fd5b61239984612222565b92506123a760208501612222565b9150604084013590509250925092565b600080602083850312156123ca57600080fd5b823567ffffffffffffffff808211156123e257600080fd5b818501915085601f8301126123f657600080fd5b81358181111561240557600080fd5b86602082850101111561241757600080fd5b60209290920196919550909350505050565b60006020828403121561243b57600080fd5b6117fe82612222565b6000806040838503121561245757600080fd5b61246083612222565b91506020830135801515811461247557600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156124ac57600080fd5b6124b585612222565b93506124c360208601612222565b925060408501359150606085013567ffffffffffffffff808211156124e757600080fd5b818701915087601f8301126124fb57600080fd5b81358181111561250d5761250d612480565b604051601f8201601f19908116603f0116810190838211818310171561253557612535612480565b816040528281528a602084870101111561254e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561258557600080fd5b50508035926020909101359150565b600080604083850312156125a757600080fd5b6125b083612222565b91506125be60208401612222565b90509250929050565b600181811c908216806125db57607f821691505b6020821081036125fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006001820161266057612660612638565b5060010190565b600081600019048311821515161561268157612681612638565b500290565b63ffffffff8181168382160190808211156126a3576126a3612638565b5092915050565b808201808211156107c3576107c3612638565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156112ef57600081815260208120601f850160051c810160208610156127195750805b601f850160051c820191505b81811015610fbd57828155600101612725565b67ffffffffffffffff83111561275057612750612480565b6127648361275e83546125c7565b836126f2565b6000601f84116001811461279857600085156127805750838201355b600019600387901b1c1916600186901b178355611f5a565b600083815260209020601f19861690835b828110156127c957868501358255602094850194600190920191016127a9565b50868210156127e65760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b602081526000611cd36020830184866127f8565b60408152600061284860408301866121ca565b828103602084015261285b8185876127f8565b9695505050505050565b6000808454612873816125c7565b6001828116801561288b57600181146128a0576128cf565b60ff19841687528215158302870194506128cf565b8860005260208060002060005b858110156128c65781548a8201529084019082016128ad565b50505082870194505b5050505083516128e38183602088016121a6565b64173539b7b760d91b9101908152600501949350505050565b6000835161290e8184602088016121a6565b8351908301906128e38183602088016121a6565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285b908301846121ca565b60006020828403121561297d57600080fd5b81516117fe8161217356feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220258ba68eb600ce533a7be5b2fcd880e34ab5d586035f82225c8b93f7b1529f0164736f6c63430008100033

Deployed Bytecode Sourcemap

60084:8431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25677:639;;;;;;;;;;-1:-1:-1;25677:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25677:639:0;;;;;;;;26579:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33284:218::-;;;;;;;;;;-1:-1:-1;33284:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;33284:218:0;1533:203:1;32725:400:0;;;;;;;;;;-1:-1:-1;32725:400:0;;;;;:::i;:::-;;:::i;:::-;;66448:602;;;;;;;;;;-1:-1:-1;66448:602:0;;;;;:::i;:::-;;:::i;22190:323::-;;;;;;;;;;-1:-1:-1;21789:1:0;22464:12;22251:7;22448:13;:28;-1:-1:-1;;22448:46:0;22190:323;;;3138:25:1;;;3126:2;3111:18;22190:323:0;2992:177:1;67058:851:0;;;;;;:::i;:::-;;:::i;63375:19::-;;;;;;;;;;-1:-1:-1;63375:19:0;;;;;;;;;;;;;;;:::i;36991:2817::-;;;;;;;;;;-1:-1:-1;36991:2817:0;;;;;:::i;:::-;;:::i;66029:411::-;;;;;;:::i;:::-;;:::i;65484:308::-;;;;;;;;;;-1:-1:-1;65484:308:0;;;;;:::i;:::-;;:::i;39904:185::-;;;;;;;;;;-1:-1:-1;39904:185:0;;;;;:::i;:::-;;:::i;62949:23::-;;;;;;;;;;-1:-1:-1;62949:23:0;;;;;;;;20869:40;;;;;;;;;;-1:-1:-1;20869:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;22521:132;;;;;;;;;;-1:-1:-1;22521:132:0;;;;;:::i;:::-;22596:4;22620:25;;;:16;:25;;;;;;;22521:132;28194:152;;;;;;;;;;-1:-1:-1;28194:152:0;;;;;:::i;:::-;;:::i;64952:252::-;;;;;;;;;;-1:-1:-1;64952:252:0;;;;;:::i;:::-;;:::i;23514:233::-;;;;;;;;;;-1:-1:-1;23514:233:0;;;;;:::i;:::-;;:::i;6289:94::-;;;;;;;;;;;;;:::i;63017:28::-;;;;;;;;;;;;;;;;20971:45;;;;;;;;;;-1:-1:-1;20971:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;63626:43;;;;;;;;;;-1:-1:-1;63626:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;5638:87;;;;;;;;;;-1:-1:-1;5711:6:0;;-1:-1:-1;;;;;5711:6:0;5638:87;;62888:21;;;;;;;;;;;;;;;;26755:104;;;;;;;;;;;;;:::i;65338:138::-;;;;;;;;;;-1:-1:-1;65338:138:0;;;;;:::i;:::-;;:::i;33842:308::-;;;;;;;;;;-1:-1:-1;33842:308:0;;;;;:::i;:::-;;:::i;63054:33::-;;;;;;;;;;;;;;;;40687:399;;;;;;;;;;-1:-1:-1;40687:399:0;;;;;:::i;:::-;;:::i;65212:118::-;;;;;;;;;;-1:-1:-1;65212:118:0;;;;;:::i;:::-;;:::i;64652:292::-;;;;;;;;;;-1:-1:-1;64652:292:0;;;;;:::i;:::-;;:::i;62916:26::-;;;;;;;;;;;;;;;;26965:540;;;;;;;;;;-1:-1:-1;26965:540:0;;;;;:::i;:::-;;:::i;67917:594::-;;;;;;;;;;-1:-1:-1;67917:594:0;;;;;:::i;:::-;;:::i;63677:48::-;;;;;;;;;;-1:-1:-1;63677:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34307:164;;;;;;;;;;-1:-1:-1;34307:164:0;;;;;:::i;:::-;;:::i;62864:17::-;;;;;;;;;;;;;:::i;62979:27::-;;;;;;;;;;-1:-1:-1;62979:27:0;;;;;;;;;;;64299:345;;;;;;;;;;-1:-1:-1;64299:345:0;;;;;:::i;:::-;;:::i;6538:192::-;;;;;;;;;;-1:-1:-1;6538:192:0;;;;;:::i;:::-;;:::i;19823:25::-;;;;;;;;;;;;;:::i;25677:639::-;25762:4;-1:-1:-1;;;;;;;;;26086:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;26163:25:0;;;26086:102;:179;;;-1:-1:-1;;;;;;;;;;26240:25:0;;;26086:179;26066:199;25677:639;-1:-1:-1;;25677:639:0:o;26579:100::-;26633:13;26666:5;26659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26579:100;:::o;33284:218::-;33360:7;33385:16;33393:7;33385;:16::i;:::-;33380:64;;33410:34;;-1:-1:-1;;;33410:34:0;;;;;;;;;;;33380:64;-1:-1:-1;33464:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;33464:30:0;;33284:218::o;32725:400::-;32806:13;32822:16;32830:7;32822;:16::i;:::-;32806:32;-1:-1:-1;56582:10:0;-1:-1:-1;;;;;32855:28:0;;;32851:175;;32903:44;32920:5;56582:10;34307:164;:::i;32903:44::-;32898:128;;32975:35;;-1:-1:-1;;;32975:35:0;;;;;;;;;;;32898:128;33038:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;33038:35:0;-1:-1:-1;;;;;33038:35:0;;;;;;;;;33089:28;;33038:24;;33089:28;;;;;;;32795:330;32725:400;;:::o;66448:602::-;3781:1;4379:7;;:19;4371:63;;;;-1:-1:-1;;;4371:63:0;;;;;;;:::i;:::-;;;;;;;;;3781:1;4512:7;:18;66554:15:::1;66544:6;::::0;::::1;;:25;::::0;::::1;;;;;;:::i;:::-;;66536:64;;;::::0;-1:-1:-1;;;66536:64:0;;8739:2:1;66536:64:0::1;::::0;::::1;8721:21:1::0;8778:2;8758:18;;;8751:30;8817:28;8797:18;;;8790:56;8863:18;;66536:64:0::1;8537:350:1::0;66536:64:0::1;66637:10;66620:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;66619:29;66611:58;;;::::0;-1:-1:-1;;;66611:58:0;;9094:2:1;66611:58:0::1;::::0;::::1;9076:21:1::0;9133:2;9113:18;;;9106:30;-1:-1:-1;;;9152:18:1;;;9145:46;9208:18;;66611:58:0::1;8892:340:1::0;66611:58:0::1;66696:14;::::0;62511:4:::1;-1:-1:-1::0;66696:33:0::1;66688:70;;;::::0;-1:-1:-1;;;66688:70:0;;9439:2:1;66688:70:0::1;::::0;::::1;9421:21:1::0;9478:2;9458:18;;;9451:30;9517:26;9497:18;;;9490:54;9561:18;;66688:70:0::1;9237:348:1::0;66688:70:0::1;66794:28;::::0;-1:-1:-1;;66811:10:0::1;9739:2:1::0;9735:15;9731:53;66794:28:0::1;::::0;::::1;9719:66:1::0;66769:12:0::1;::::0;9801::1;;66794:28:0::1;;;;;;;;;;;;66784:39;;;;;;66769:54;;66842:58;66861:12;;66875:18;;66895:4;66842:18;:58::i;:::-;66834:92;;;::::0;-1:-1:-1;;;66834:92:0;;10026:2:1;66834:92:0::1;::::0;::::1;10008:21:1::0;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:51;10145:18;;66834:92:0::1;9824:345:1::0;66834:92:0::1;66937:14;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;66989:10:0::1;66972:28;::::0;;;:16:::1;:28;::::0;;;;:35;;-1:-1:-1;;66972:35:0::1;67003:4;66972:35:::0;;::::1;::::0;;;67018:24:::1;::::0;66989:10;67018:9:::1;:24::i;:::-;-1:-1:-1::0;;3737:1:0;4691:7;:22;-1:-1:-1;66448:602:0:o;67058:851::-;3781:1;4379:7;;:19;4371:63;;;;-1:-1:-1;;;4371:63:0;;;;;;;:::i;:::-;3781:1;4512:7;:18;67180:15:::1;67170:6;::::0;::::1;;:25;::::0;::::1;;;;;;:::i;:::-;;67162:64;;;::::0;-1:-1:-1;;;67162:64:0;;8739:2:1;67162:64:0::1;::::0;::::1;8721:21:1::0;8778:2;8758:18;;;8751:30;8817:28;8797:18;;;8790:56;8863:18;;67162:64:0::1;8537:350:1::0;67162:64:0::1;62306:1;67245:20:::0;::::1;;67237:52;;;::::0;-1:-1:-1;;;67237:52:0;;10648:2:1;67237:52:0::1;::::0;::::1;10630:21:1::0;10687:2;10667:18;;;10660:30;-1:-1:-1;;;10706:18:1;;;10699:49;10765:18;;67237:52:0::1;10446:343:1::0;67237:52:0::1;67321:18;62559:11;67321:6:::0;:18:::1;:::i;:::-;67308:9;:31;67300:60;;;::::0;-1:-1:-1;;;67300:60:0;;11169:2:1;67300:60:0::1;::::0;::::1;11151:21:1::0;11208:2;11188:18;;;11181:30;-1:-1:-1;;;11227:18:1;;;11220:46;11283:18;;67300:60:0::1;10967:340:1::0;67300:60:0::1;67401:14;62402:4;67414:1;67401:14;:::i;:::-;67379:36;;67391:6;67379:9;;:18;;;;:::i;:::-;:36;;67371:68;;;::::0;-1:-1:-1;;;67371:68:0;;11821:2:1;67371:68:0::1;::::0;::::1;11803:21:1::0;11860:2;11840:18;;;11833:30;-1:-1:-1;;;11879:18:1;;;11872:49;11938:18;;67371:68:0::1;11619:343:1::0;67371:68:0::1;67478:10;67466:23;::::0;;;:11:::1;:23;::::0;;;;;62356:1:::1;::::0;67466:32:::1;::::0;67492:6;;67466:32:::1;:::i;:::-;:50;;67458:86;;;::::0;-1:-1:-1;;;67458:86:0;;12169:2:1;67458:86:0::1;::::0;::::1;12151:21:1::0;12208:2;12188:18;;;12181:30;12247:25;12227:18;;;12220:53;12290:18;;67458:86:0::1;11967:347:1::0;67458:86:0::1;67580:28;::::0;-1:-1:-1;;67597:10:0::1;9739:2:1::0;9735:15;9731:53;67580:28:0::1;::::0;::::1;9719:66:1::0;67555:12:0::1;::::0;9801::1;;67580:28:0::1;;;;;;;;;;;;67570:39;;;;;;67555:54;;67628:53;67647:12;;67661:13;;67676:4;67628:18;:53::i;:::-;:115;;;;67685:58;67704:12;;67718:18;;67738:4;67685:18;:58::i;:::-;67620:149;;;::::0;-1:-1:-1;;;67620:149:0;;10026:2:1;67620:149:0::1;::::0;::::1;10008:21:1::0;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:51;10145:18;;67620:149:0::1;9824:345:1::0;67620:149:0::1;67793:6;67780:9;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;67832:10:0::1;67820:23;::::0;;;:11:::1;:23;::::0;;;;:33;;67847:6;;67820:23;:33:::1;::::0;67847:6;;67820:33:::1;:::i;:::-;::::0;;;-1:-1:-1;67872:29:0::1;::::0;-1:-1:-1;67882:10:0::1;67894:6:::0;67872:9:::1;:29::i;:::-;-1:-1:-1::0;;3737:1:0;4691:7;:22;-1:-1:-1;;67058:851:0:o;36991:2817::-;37125:27;37155;37174:7;37155:18;:27::i;:::-;37125:57;;37240:4;-1:-1:-1;;;;;37199:45:0;37215:19;-1:-1:-1;;;;;37199:45:0;;37195:86;;37253:28;;-1:-1:-1;;;37253:28:0;;;;;;;;;;;37195:86;37295:27;36105:24;;;:15;:24;;;;;36327:26;;37486:68;36327:26;37528:4;56582:10;37534:19;-1:-1:-1;;;;;35579:32:0;;;35423:28;;35708:20;;35730:30;;35705:56;;35120:659;37486:68;37481:180;;37574:43;37591:4;56582:10;34307:164;:::i;37574:43::-;37569:92;;37626:35;;-1:-1:-1;;;37626:35:0;;;;;;;;;;;37569:92;-1:-1:-1;;;;;37678:16:0;;37674:52;;37703:23;;-1:-1:-1;;;37703:23:0;;;;;;;;;;;37674:52;37875:15;37872:160;;;38015:1;37994:19;37987:30;37872:160;-1:-1:-1;;;;;38412:24:0;;;;;;;:18;:24;;;;;;38410:26;;-1:-1:-1;;38410:26:0;;;38481:22;;;;;;;;;38479:24;;-1:-1:-1;38479:24:0;;;31583:11;31558:23;31554:41;31541:63;-1:-1:-1;;;31541:63:0;38774:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;39069:47:0;;:52;;39065:627;;39174:1;39164:11;;39142:19;39297:30;;;:17;:30;;;;;;:35;;39293:384;;39435:13;;39420:11;:28;39416:242;;39582:30;;;;:17;:30;;;;;:52;;;39416:242;39123:569;39065:627;39739:7;39735:2;-1:-1:-1;;;;;39720:27:0;39729:4;-1:-1:-1;;;;;39720:27:0;-1:-1:-1;;;;;;;;;;;39720:27:0;;;;;;;;;39758:42;37114:2694;;;36991:2817;;;:::o;66029:411::-;3781:1;4379:7;;:19;4371:63;;;;-1:-1:-1;;;4371:63:0;;;;;;;:::i;:::-;3781:1;4512:7;:18;62306:1:::1;66111:20:::0;::::1;;66103:52;;;::::0;-1:-1:-1;;;66103:52:0;;10648:2:1;66103:52:0::1;::::0;::::1;10630:21:1::0;10687:2;10667:18;;;10660:30;-1:-1:-1;;;10706:18:1;;;10699:49;10765:18;;66103:52:0::1;10446:343:1::0;66103:52:0::1;66194:12;66184:6;::::0;::::1;;:22;::::0;::::1;;;;;;:::i;:::-;;66176:58;;;::::0;-1:-1:-1;;;66176:58:0;;12521:2:1;66176:58:0::1;::::0;::::1;12503:21:1::0;12560:2;12540:18;;;12533:30;12599:25;12579:18;;;12572:53;12642:18;;66176:58:0::1;12319:347:1::0;66176:58:0::1;66266:21;62620:11;66266:6:::0;:21:::1;:::i;:::-;66253:9;:34;66245:63;;;::::0;-1:-1:-1;;;66245:63:0;;11169:2:1;66245:63:0::1;::::0;::::1;11151:21:1::0;11208:2;11188:18;;;11181:30;-1:-1:-1;;;11227:18:1;;;11220:46;11283:18;;66245:63:0::1;10967:340:1::0;66245:63:0::1;66354:14;62457:5;66367:1;66354:14;:::i;:::-;66327:41;;66344:6;66327:14;22806:7:::0;22997:13;-1:-1:-1;;22997:31:0;;22751:296;66327:14:::1;:23;;;;:::i;:::-;:41;;66319:73;;;::::0;-1:-1:-1;;;66319:73:0;;12873:2:1;66319:73:0::1;::::0;::::1;12855:21:1::0;12912:2;12892:18;;;12885:30;-1:-1:-1;;;12931:18:1;;;12924:49;12990:18;;66319:73:0::1;12671:343:1::0;66319:73:0::1;66403:29;66413:10;66425:6;66403:9;:29::i;:::-;-1:-1:-1::0;3737:1:0;4691:7;:22;66029:411::o;65484:308::-;5711:6;;-1:-1:-1;;;;;5711:6:0;56582:10;5858:23;5850:68;;;;-1:-1:-1;;;5850:68:0;;;;;;;:::i;:::-;3781:1:::1;4379:7;;:19:::0;4371:63:::1;;;;-1:-1:-1::0;;;4371:63:0::1;;;;;;;:::i;:::-;3781:1;4512:7;:18:::0;65566:21:::2;:31:::0;-1:-1:-1;65566:31:0::2;65558:73;;;::::0;-1:-1:-1;;;65558:73:0;;13582:2:1;65558:73:0::2;::::0;::::2;13564:21:1::0;13621:2;13601:18;;;13594:30;13660:31;13640:18;;;13633:59;13709:18;;65558:73:0::2;13380:353:1::0;65558:73:0::2;65661:34;::::0;65643:12:::2;::::0;65661:10:::2;::::0;65684:6;;65643:12;65661:34;65643:12;65661:34;65684:6;65661:10;:34:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65642:53;;;65714:7;65706:78;;;::::0;-1:-1:-1;;;65706:78:0;;14150:2:1;65706:78:0::2;::::0;::::2;14132:21:1::0;14189:2;14169:18;;;14162:30;14228:34;14208:18;;;14201:62;14299:28;14279:18;;;14272:56;14345:19;;65706:78:0::2;13948:422:1::0;65706:78:0::2;-1:-1:-1::0;;3737:1:0::1;4691:7;:22:::0;65484:308::o;39904:185::-;40042:39;40059:4;40065:2;40069:7;40042:39;;;;;;;;;;;;:16;:39::i;:::-;39904:185;;;:::o;28194:152::-;28266:7;28309:27;28328:7;28309:18;:27::i;64952:252::-;5711:6;;-1:-1:-1;;;;;5711:6:0;56582:10;5858:23;5850:68;;;;-1:-1:-1;;;5850:68:0;;;;;;;:::i;:::-;65045:15:::1;::::0;::::1;::::0;::::1;;;65044:16;65036:46;;;::::0;-1:-1:-1;;;65036:46:0;;14577:2:1;65036:46:0::1;::::0;::::1;14559:21:1::0;14616:2;14596:18;;;14589:30;-1:-1:-1;;;14635:18:1;;;14628:47;14692:18;;65036:46:0::1;14375:341:1::0;65036:46:0::1;65093:11;:26;65107:12:::0;;65093:11;:26:::1;:::i;:::-;-1:-1:-1::0;65130:15:0::1;:22:::0;;-1:-1:-1;;65130:22:0::1;;;::::0;;65168:28:::1;::::0;::::1;::::0;::::1;::::0;65183:12;;;;65168:28:::1;:::i;:::-;;;;;;;;64952:252:::0;;:::o;23514:233::-;23586:7;-1:-1:-1;;;;;23610:19:0;;23606:60;;23638:28;;-1:-1:-1;;;23638:28:0;;;;;;;;;;;23606:60;-1:-1:-1;;;;;;23684:25:0;;;;;:18;:25;;;;;;17203:13;23684:55;;23514:233::o;6289:94::-;5711:6;;-1:-1:-1;;;;;5711:6:0;56582:10;5858:23;5850:68;;;;-1:-1:-1;;;5850:68:0;;;;;;;:::i;:::-;6354:21:::1;6372:1;6354:9;:21::i;:::-;6289:94::o:0;26755:104::-;26811:13;26844:7;26837:14;;;;;:::i;65338:138::-;5711:6;;-1:-1:-1;;;;;5711:6:0;56582:10;5858:23;5850:68;;;;-1:-1:-1;;;5850:68:0;;;;;;;:::i;:::-;65428:18:::1;:40:::0;65338:138::o;33842:308::-;56582:10;-1:-1:-1;;;;;33941:31:0;;;33937:61;;33981:17;;-1:-1:-1;;;33981:17:0;;;;;;;;;;;33937:61;56582:10;34011:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;34011:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;34011:60:0;;;;;;;;;;34087:55;;540:41:1;;;34011:49:0;;56582:10;34087:55;;513:18:1;34087:55:0;;;;;;;33842:308;;:::o;40687:399::-;40854:31;40867:4;40873:2;40877:7;40854:12;:31::i;:::-;-1:-1:-1;;;;;40900:14:0;;;:19;40896:183;;40939:56;40970:4;40976:2;40980:7;40989:5;40939:30;:56::i;:::-;40934:145;;41023:40;;-1:-1:-1;;;41023:40:0;;;;;;;;;;;40934:145;40687:399;;;;:::o;65212:118::-;5711:6;;-1:-1:-1;;;;;5711:6:0;56582:10;5858:23;5850:68;;;;-1:-1:-1;;;5850:68:0;;;;;;;:::i;:::-;65292:13:::1;:30:::0;65212:118::o;64652:292::-;5711:6;;-1:-1:-1;;;;;5711:6:0;56582:10;5858:23;5850:68;;;;-1:-1:-1;;;5850:68:0;;;;;;;:::i;:::-;64735:11:::1;::::0;::::1;;64734:12;64726:42;;;::::0;-1:-1:-1;;;64726:42:0;;14577:2:1;64726:42:0::1;::::0;::::1;14559:21:1::0;14616:2;14596:18;;;14589:30;-1:-1:-1;;;14635:18:1;;;14628:47;14692:18;;64726:42:0::1;14375:341:1::0;64726:42:0::1;64779:25;64829:3;64815:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64849:4;;64843:3;:10;;;;;;;:::i;:::-;-1:-1:-1::0;64864:11:0::1;:18:::0;;-1:-1:-1;;64864:18:0::1;64878:4;64864:18;::::0;;64905:31:::1;::::0;::::1;::::0;::::1;::::0;64918:11;;64931:4;;;;64905:31:::1;:::i;:::-;;;;;;;;64715:229;64652:292:::0;;:::o;26965:540::-;27038:13;27069:16;27077:7;27069;:16::i;:::-;27064:59;;27094:29;;-1:-1:-1;;;27094:29:0;;;;;;;;;;;27064:59;27162:1;27139:20;;;:11;:20;;;;;;:24;27136:362;;27192:11;27186:25;;;;;:::i;:::-;;;27215:1;27186:30;:117;;;;;;;;;;;;;;;;;27266:20;;;;:11;:20;;;;;;27243:11;;27256:31;;:9;:31::i;:::-;27226:71;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27179:124;26965:540;-1:-1:-1;;26965:540:0:o;27136:362::-;27334:21;27358:10;:8;:10::i;:::-;27334:34;;27396:7;27390:21;27415:1;27390:26;:96;;;;;;;;;;;;;;;;;27443:7;27452:18;27462:7;27452:9;:18::i;:::-;27426:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27390:96;27383:103;26965:540;-1:-1:-1;;;26965:540:0:o;27136:362::-;26965:540;;;:::o;67917:594::-;3781:1;4379:7;;:19;4371:63;;;;-1:-1:-1;;;4371:63:0;;;;;;;:::i;:::-;3781:1;4512:7;:18;68015:11:::1;68005:6;::::0;::::1;;:21;::::0;::::1;;;;;;:::i;:::-;;67997:51;;;::::0;-1:-1:-1;;;67997:51:0;;19780:2:1;67997:51:0::1;::::0;::::1;19762:21:1::0;19819:2;19799:18;;;19792:30;-1:-1:-1;;;19838:18:1;;;19831:47;19895:18;;67997:51:0::1;19578:341:1::0;67997:51:0::1;68069:27;::::0;;;:16:::1;:27;::::0;;;;;:32;68061:66:::1;;;::::0;-1:-1:-1;;;68061:66:0;;20126:2:1;68061:66:0::1;::::0;::::1;20108:21:1::0;20165:2;20145:18;;;20138:30;-1:-1:-1;;;20184:18:1;;;20177:51;20245:18;;68061:66:0::1;19924:345:1::0;68061:66:0::1;68182:10;68162:16;68170:7:::0;68162::::1;:16::i;:::-;-1:-1:-1::0;;;;;68162:30:0::1;;:66;;;;-1:-1:-1::0;68218:10:0::1;68196:18;68204:9:::0;68196:7:::1;:18::i;:::-;-1:-1:-1::0;;;;;68196:32:0::1;;68162:66;68154:93;;;::::0;-1:-1:-1;;;68154:93:0;;20476:2:1;68154:93:0::1;::::0;::::1;20458:21:1::0;20515:2;20495:18;;;20488:30;-1:-1:-1;;;20534:18:1;;;20527:44;20588:18;;68154:93:0::1;20274:338:1::0;68154:93:0::1;68258:25;::::0;;;:16:::1;:25;::::0;;;;:27;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;68307:20:0::1;::::0;;;:11:::1;:20;::::0;;;;;:25;;68304:120:::1;;68371:12;::::0;;68348:20:::1;::::0;;;:11:::1;:20;::::0;;;;:35;;;68371:12;;;68398:14:::1;68371:12:::0;68398:14:::1;:::i;:::-;;;;;;68304:120;68434:16;68440:9;68434:5;:16::i;:::-;68466:37;::::0;;68472:10:::1;20819:51:1::0;;20901:2;20886:18;;20879:34;;;20929:18;;;20922:34;;;68466:37:0::1;::::0;20807:2:1;20792:18;68466:37:0::1;;;;;;;-1:-1:-1::0;;3737:1:0;4691:7;:22;67917:594::o;34307:164::-;-1:-1:-1;;;;;34428:25:0;;;34404:4;34428:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34307:164::o;62864:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64299:345::-;5711:6;;-1:-1:-1;;;;;5711:6:0;56582:10;5858:23;5850:68;;;;-1:-1:-1;;;5850:68:0;;;;;;;:::i;:::-;64368:6:::1;64378:1;64368:11:::0;64365:272:::1;;64396:6;:23:::0;;64405:14:::1;::::0;64396:6;-1:-1:-1;;64396:23:0::1;::::0;64405:14;64396:23:::1;;;;;;64299:345:::0;:::o;64365:272::-:1;64439:6;64449:1;64439:11:::0;64436:201:::1;;64466:6;:24:::0;;64475:15:::1;::::0;64466:6;-1:-1:-1;;64466:24:0::1;64475:15:::0;;64466:24:::1;::::0;64436:201:::1;64510:6;64520:1;64510:11:::0;64507:130:::1;;64537:6;:21:::0;;64546:12:::1;::::0;64537:6;-1:-1:-1;;64537:21:0::1;::::0;64546:12;64537:21:::1;::::0;64507:130:::1;64578:6;64588:1;64578:11:::0;64575:62:::1;;64605:6;:20:::0;;-1:-1:-1;;64605:20:0::1;64614:11;64605:20;::::0;;64575:62:::1;64299:345:::0;:::o;6538:192::-;5711:6;;-1:-1:-1;;;;;5711:6:0;56582:10;5858:23;5850:68;;;;-1:-1:-1;;;5850:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6627:22:0;::::1;6619:73;;;::::0;-1:-1:-1;;;6619:73:0;;21169:2:1;6619:73:0::1;::::0;::::1;21151:21:1::0;21208:2;21188:18;;;21181:30;21247:34;21227:18;;;21220:62;-1:-1:-1;;;21298:18:1;;;21291:36;21344:19;;6619:73:0::1;20967:402:1::0;6619:73:0::1;6703:19;6713:8;6703:9;:19::i;19823:25::-:0;;;;;;;:::i;34729:282::-;34794:4;34850:7;21789:1;34831:26;;:66;;;;;34884:13;;34874:7;:23;34831:66;:153;;;;-1:-1:-1;;34935:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;34935:44:0;:49;;34729:282::o;612:757::-;740:4;779;740;792:464;812:16;;;792:464;;;844:20;867:5;;873:1;867:8;;;;;;;:::i;:::-;;;;;;;844:31;;905:12;890;:27;886:363;;;1026:44;;;;;;21663:19:1;;;21698:12;;;21691:28;;;21735:12;;1026:44:0;;;;;;;;;;;;1016:55;;;;;;1001:70;;886:363;;;1194:44;;;;;;21663:19:1;;;21698:12;;;21691:28;;;21735:12;;1194:44:0;;;;;;;;;;;;1184:55;;;;;;1169:70;;886:363;-1:-1:-1;830:3:0;;;;:::i;:::-;;;;792:464;;;-1:-1:-1;1343:20:0;;;-1:-1:-1;612:757:0;;;;;;;:::o;50327:112::-;50404:27;50414:2;50418:8;50404:27;;;;;;;;;;;;:9;:27::i;:::-;50327:112;;:::o;29349:1275::-;29416:7;29451;;21789:1;29500:23;29496:1061;;29553:13;;29546:4;:20;29542:1015;;;29591:14;29608:23;;;:17;:23;;;;;;;-1:-1:-1;;;29697:24:0;;:29;;29693:845;;30362:113;30369:6;30379:1;30369:11;30362:113;;-1:-1:-1;;;30440:6:0;30422:25;;;;:17;:25;;;;;;30362:113;;29693:845;29568:989;29542:1015;30585:31;;-1:-1:-1;;;30585:31:0;;;;;;;;;;;6738:173;6813:6;;;-1:-1:-1;;;;;6830:17:0;;;-1:-1:-1;;;;;;6830:17:0;;;;;;;6863:40;;6813:6;;;6830:17;6813:6;;6863:40;;6794:16;;6863:40;6783:128;6738:173;:::o;43170:716::-;43354:88;;-1:-1:-1;;;43354:88:0;;43333:4;;-1:-1:-1;;;;;43354:45:0;;;;;:88;;56582:10;;43421:4;;43427:7;;43436:5;;43354:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43354:88:0;;;;;;;;-1:-1:-1;;43354:88:0;;;;;;;;;;;;:::i;:::-;;;43350:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43637:6;:13;43654:1;43637:18;43633:235;;43683:40;;-1:-1:-1;;;43683:40:0;;;;;;;;;;;43633:235;43826:6;43820:13;43811:6;43807:2;43803:15;43796:38;43350:529;-1:-1:-1;;;;;;43513:64:0;-1:-1:-1;;;43513:64:0;;-1:-1:-1;43506:71:0;;56702:1581;57185:4;57179:11;;57192:4;57175:22;57271:17;;;;57175:22;57629:5;57611:428;57677:1;57672:3;57668:11;57661:18;;57848:2;57842:4;57838:13;57834:2;57830:22;57825:3;57817:36;57942:2;57932:13;;57999:25;57611:428;57999:25;-1:-1:-1;58069:13:0;;;-1:-1:-1;;58184:14:0;;;58246:19;;;58184:14;56702:1581;-1:-1:-1;56702:1581:0:o;63959:104::-;64019:13;64052:3;64045:10;;;;;:::i;50706:89::-;50766:21;50772:7;50781:5;50766;:21::i;49554:689::-;49685:19;49691:2;49695:8;49685:5;:19::i;:::-;-1:-1:-1;;;;;49746:14:0;;;:19;49742:483;;49786:11;49800:13;49848:14;;;49881:233;49912:62;49951:1;49955:2;49959:7;;;;;;49968:5;49912:30;:62::i;:::-;49907:167;;50010:40;;-1:-1:-1;;;50010:40:0;;;;;;;;;;;49907:167;50109:3;50101:5;:11;49881:233;;50196:3;50179:13;;:20;50175:34;;50201:8;;;50175:34;49767:458;;49554:689;;;:::o;51024:3081::-;51104:27;51134;51153:7;51134:18;:27::i;:::-;51104:57;-1:-1:-1;51104:57:0;51174:12;;51296:35;51323:7;35994:27;36105:24;;;:15;:24;;;;;36327:26;;36105:24;;35892:479;51296:35;51239:92;;;;51348:13;51344:316;;;51469:68;51494:15;51511:4;56582:10;51517:19;56495:105;51469:68;51464:184;;51561:43;51578:4;56582:10;34307:164;:::i;51561:43::-;51556:92;;51613:35;;-1:-1:-1;;;51613:35:0;;;;;;;;;;;51556:92;51816:15;51813:160;;;51956:1;51935:19;51928:30;51813:160;-1:-1:-1;;;;;52575:24:0;;;;;;:18;:24;;;;;:60;;52603:32;52575:60;;;31583:11;31558:23;31554:41;31541:63;-1:-1:-1;;;31541:63:0;52873:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;53198:47:0;;:52;;53194:627;;53303:1;53293:11;;53271:19;53426:30;;;:17;:30;;;;;;:35;;53422:384;;53564:13;;53549:11;:28;53545:242;;53711:30;;;;:17;:30;;;;;:52;;;53545:242;53252:569;53194:627;53849:35;;53876:7;;53872:1;;-1:-1:-1;;;;;53849:35:0;;;-1:-1:-1;;;;;;;;;;;53849:35:0;53872:1;;53849:35;-1:-1:-1;;54072:12:0;:14;;;;;;-1:-1:-1;;;;51024:3081:0:o;44348:2454::-;44421:20;44444:13;;;44472;;;44468:44;;44494:18;;-1:-1:-1;;;44494:18:0;;;;;;;;;;;44468:44;-1:-1:-1;;;;;45000:22:0;;;;;;:18;:22;;;;17341:2;45000:22;;;:71;;45038:32;45026:45;;45000:71;;;45314:31;;;:17;:31;;;;;-1:-1:-1;32014:15:0;;31988:24;31984:46;31583:11;31558:23;31554:41;31551:52;31541:63;;45314:173;;45549:23;;;;45314:31;;45000:22;;-1:-1:-1;;;;;;;;;;;45000:22:0;;45901:335;46316:1;46302:12;46298:20;46256:346;46357:3;46348:7;46345:16;46256:346;;46575:7;46565:8;46562:1;-1:-1:-1;;;;;;;;;;;46532:1:0;46529;46524:59;46410:1;46397:15;46256:346;;;46260:77;46635:8;46647:1;46635:13;46631:45;;46657:19;;-1:-1:-1;;;46657:19:0;;;;;;;;;;;46631:45;46693:13;:19;-1:-1:-1;39904:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:367::-;2241:8;2251:6;2305:3;2298:4;2290:6;2286:17;2282:27;2272:55;;2323:1;2320;2313:12;2272:55;-1:-1:-1;2346:20:1;;2389:18;2378:30;;2375:50;;;2421:1;2418;2411:12;2375:50;2458:4;2450:6;2446:17;2434:29;;2518:3;2511:4;2501:6;2498:1;2494:14;2486:6;2482:27;2478:38;2475:47;2472:67;;;2535:1;2532;2525:12;2472:67;2178:367;;;;;:::o;2550:437::-;2636:6;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2753:9;2740:23;2786:18;2778:6;2775:30;2772:50;;;2818:1;2815;2808:12;2772:50;2857:70;2919:7;2910:6;2899:9;2895:22;2857:70;:::i;:::-;2946:8;;2831:96;;-1:-1:-1;2550:437:1;-1:-1:-1;;;;2550:437:1:o;3174:505::-;3269:6;3277;3285;3338:2;3326:9;3317:7;3313:23;3309:32;3306:52;;;3354:1;3351;3344:12;3306:52;3394:9;3381:23;3427:18;3419:6;3416:30;3413:50;;;3459:1;3456;3449:12;3413:50;3498:70;3560:7;3551:6;3540:9;3536:22;3498:70;:::i;:::-;3587:8;;3472:96;;-1:-1:-1;3669:2:1;3654:18;;;;3641:32;;3174:505;-1:-1:-1;;;;3174:505:1:o;3684:127::-;3745:10;3740:3;3736:20;3733:1;3726:31;3776:4;3773:1;3766:15;3800:4;3797:1;3790:15;3816:338;3958:2;3943:18;;3991:1;3980:13;;3970:144;;4036:10;4031:3;4027:20;4024:1;4017:31;4071:4;4068:1;4061:15;4099:4;4096:1;4089:15;3970:144;4123:25;;;3816:338;:::o;4159:328::-;4236:6;4244;4252;4305:2;4293:9;4284:7;4280:23;4276:32;4273:52;;;4321:1;4318;4311:12;4273:52;4344:29;4363:9;4344:29;:::i;:::-;4334:39;;4392:38;4426:2;4415:9;4411:18;4392:38;:::i;:::-;4382:48;;4477:2;4466:9;4462:18;4449:32;4439:42;;4159:328;;;;;:::o;4492:592::-;4563:6;4571;4624:2;4612:9;4603:7;4599:23;4595:32;4592:52;;;4640:1;4637;4630:12;4592:52;4680:9;4667:23;4709:18;4750:2;4742:6;4739:14;4736:34;;;4766:1;4763;4756:12;4736:34;4804:6;4793:9;4789:22;4779:32;;4849:7;4842:4;4838:2;4834:13;4830:27;4820:55;;4871:1;4868;4861:12;4820:55;4911:2;4898:16;4937:2;4929:6;4926:14;4923:34;;;4953:1;4950;4943:12;4923:34;4998:7;4993:2;4984:6;4980:2;4976:15;4972:24;4969:37;4966:57;;;5019:1;5016;5009:12;4966:57;5050:2;5042:11;;;;;5072:6;;-1:-1:-1;4492:592:1;;-1:-1:-1;;;;4492:592:1:o;5089:186::-;5148:6;5201:2;5189:9;5180:7;5176:23;5172:32;5169:52;;;5217:1;5214;5207:12;5169:52;5240:29;5259:9;5240:29;:::i;5647:347::-;5712:6;5720;5773:2;5761:9;5752:7;5748:23;5744:32;5741:52;;;5789:1;5786;5779:12;5741:52;5812:29;5831:9;5812:29;:::i;:::-;5802:39;;5891:2;5880:9;5876:18;5863:32;5938:5;5931:13;5924:21;5917:5;5914:32;5904:60;;5960:1;5957;5950:12;5904:60;5983:5;5973:15;;;5647:347;;;;;:::o;5999:127::-;6060:10;6055:3;6051:20;6048:1;6041:31;6091:4;6088:1;6081:15;6115:4;6112:1;6105:15;6131:1138;6226:6;6234;6242;6250;6303:3;6291:9;6282:7;6278:23;6274:33;6271:53;;;6320:1;6317;6310:12;6271:53;6343:29;6362:9;6343:29;:::i;:::-;6333:39;;6391:38;6425:2;6414:9;6410:18;6391:38;:::i;:::-;6381:48;;6476:2;6465:9;6461:18;6448:32;6438:42;;6531:2;6520:9;6516:18;6503:32;6554:18;6595:2;6587:6;6584:14;6581:34;;;6611:1;6608;6601:12;6581:34;6649:6;6638:9;6634:22;6624:32;;6694:7;6687:4;6683:2;6679:13;6675:27;6665:55;;6716:1;6713;6706:12;6665:55;6752:2;6739:16;6774:2;6770;6767:10;6764:36;;;6780:18;;:::i;:::-;6855:2;6849:9;6823:2;6909:13;;-1:-1:-1;;6905:22:1;;;6929:2;6901:31;6897:40;6885:53;;;6953:18;;;6973:22;;;6950:46;6947:72;;;6999:18;;:::i;:::-;7039:10;7035:2;7028:22;7074:2;7066:6;7059:18;7114:7;7109:2;7104;7100;7096:11;7092:20;7089:33;7086:53;;;7135:1;7132;7125:12;7086:53;7191:2;7186;7182;7178:11;7173:2;7165:6;7161:15;7148:46;7236:1;7231:2;7226;7218:6;7214:15;7210:24;7203:35;7257:6;7247:16;;;;;;;6131:1138;;;;;;;:::o;7274:248::-;7342:6;7350;7403:2;7391:9;7382:7;7378:23;7374:32;7371:52;;;7419:1;7416;7409:12;7371:52;-1:-1:-1;;7442:23:1;;;7512:2;7497:18;;;7484:32;;-1:-1:-1;7274:248:1:o;7527:260::-;7595:6;7603;7656:2;7644:9;7635:7;7631:23;7627:32;7624:52;;;7672:1;7669;7662:12;7624:52;7695:29;7714:9;7695:29;:::i;:::-;7685:39;;7743:38;7777:2;7766:9;7762:18;7743:38;:::i;:::-;7733:48;;7527:260;;;;;:::o;7792:380::-;7871:1;7867:12;;;;7914;;;7935:61;;7989:4;7981:6;7977:17;7967:27;;7935:61;8042:2;8034:6;8031:14;8011:18;8008:38;8005:161;;8088:10;8083:3;8079:20;8076:1;8069:31;8123:4;8120:1;8113:15;8151:4;8148:1;8141:15;8005:161;;7792:380;;;:::o;8177:355::-;8379:2;8361:21;;;8418:2;8398:18;;;8391:30;8457:33;8452:2;8437:18;;8430:61;8523:2;8508:18;;8177:355::o;10174:127::-;10235:10;10230:3;10226:20;10223:1;10216:31;10266:4;10263:1;10256:15;10290:4;10287:1;10280:15;10306:135;10345:3;10366:17;;;10363:43;;10386:18;;:::i;:::-;-1:-1:-1;10433:1:1;10422:13;;10306:135::o;10794:168::-;10834:7;10900:1;10896;10892:6;10888:14;10885:1;10882:21;10877:1;10870:9;10863:17;10859:45;10856:71;;;10907:18;;:::i;:::-;-1:-1:-1;10947:9:1;;10794:168::o;11312:172::-;11379:10;11409;;;11421;;;11405:27;;11444:11;;;11441:37;;;11458:18;;:::i;:::-;11441:37;11312:172;;;;:::o;11489:125::-;11554:9;;;11575:10;;;11572:36;;;11588:18;;:::i;13019:356::-;13221:2;13203:21;;;13240:18;;;13233:30;13299:34;13294:2;13279:18;;13272:62;13366:2;13351:18;;13019:356::o;14847:545::-;14949:2;14944:3;14941:11;14938:448;;;14985:1;15010:5;15006:2;14999:17;15055:4;15051:2;15041:19;15125:2;15113:10;15109:19;15106:1;15102:27;15096:4;15092:38;15161:4;15149:10;15146:20;15143:47;;;-1:-1:-1;15184:4:1;15143:47;15239:2;15234:3;15230:12;15227:1;15223:20;15217:4;15213:31;15203:41;;15294:82;15312:2;15305:5;15302:13;15294:82;;;15357:17;;;15338:1;15327:13;15294:82;;15568:1206;15692:18;15687:3;15684:27;15681:53;;;15714:18;;:::i;:::-;15743:94;15833:3;15793:38;15825:4;15819:11;15793:38;:::i;:::-;15787:4;15743:94;:::i;:::-;15863:1;15888:2;15883:3;15880:11;15905:1;15900:616;;;;16560:1;16577:3;16574:93;;;-1:-1:-1;16633:19:1;;;16620:33;16574:93;-1:-1:-1;;15525:1:1;15521:11;;;15517:24;15513:29;15503:40;15549:1;15545:11;;;15500:57;16680:78;;15873:895;;15900:616;14794:1;14787:14;;;14831:4;14818:18;;-1:-1:-1;;15936:17:1;;;16037:9;16059:229;16073:7;16070:1;16067:14;16059:229;;;16162:19;;;16149:33;16134:49;;16269:4;16254:20;;;;16222:1;16210:14;;;;16089:12;16059:229;;;16063:3;16316;16307:7;16304:16;16301:159;;;16440:1;16436:6;16430:3;16424;16421:1;16417:11;16413:21;16409:34;16405:39;16392:9;16387:3;16383:19;16370:33;16366:79;16358:6;16351:95;16301:159;;;16503:1;16497:3;16494:1;16490:11;16486:19;16480:4;16473:33;15873:895;;15568:1206;;;:::o;16779:267::-;16868:6;16863:3;16856:19;16920:6;16913:5;16906:4;16901:3;16897:14;16884:43;-1:-1:-1;16972:1:1;16947:16;;;16965:4;16943:27;;;16936:38;;;;17028:2;17007:15;;;-1:-1:-1;;17003:29:1;16994:39;;;16990:50;;16779:267::o;17051:247::-;17210:2;17199:9;17192:21;17173:4;17230:62;17288:2;17277:9;17273:18;17265:6;17257;17230:62;:::i;17303:410::-;17510:2;17499:9;17492:21;17473:4;17536:45;17577:2;17566:9;17562:18;17554:6;17536:45;:::i;:::-;17629:9;17621:6;17617:22;17612:2;17601:9;17597:18;17590:50;17657;17700:6;17692;17684;17657:50;:::i;:::-;17649:58;17303:410;-1:-1:-1;;;;;;17303:410:1:o;17718:1187::-;17995:3;18024:1;18057:6;18051:13;18087:36;18113:9;18087:36;:::i;:::-;18142:1;18159:18;;;18186:133;;;;18333:1;18328:356;;;;18152:532;;18186:133;-1:-1:-1;;18219:24:1;;18207:37;;18292:14;;18285:22;18273:35;;18264:45;;;-1:-1:-1;18186:133:1;;18328:356;18359:6;18356:1;18349:17;18389:4;18434:2;18431:1;18421:16;18459:1;18473:165;18487:6;18484:1;18481:13;18473:165;;;18565:14;;18552:11;;;18545:35;18608:16;;;;18502:10;;18473:165;;;18477:3;;;18667:6;18662:3;18658:16;18651:23;;18152:532;;;;;18715:6;18709:13;18731:68;18790:8;18785:3;18778:4;18770:6;18766:17;18731:68;:::i;:::-;-1:-1:-1;;;18821:18:1;;18848:22;;;18897:1;18886:13;;17718:1187;-1:-1:-1;;;;17718:1187:1:o;18910:663::-;19190:3;19228:6;19222:13;19244:66;19303:6;19298:3;19291:4;19283:6;19279:17;19244:66;:::i;:::-;19373:13;;19332:16;;;;19395:70;19373:13;19332:16;19442:4;19430:17;;19395:70;:::i;21374:127::-;21435:10;21430:3;21426:20;21423:1;21416:31;21466:4;21463:1;21456:15;21490:4;21487:1;21480:15;21758:489;-1:-1:-1;;;;;22027:15:1;;;22009:34;;22079:15;;22074:2;22059:18;;22052:43;22126:2;22111:18;;22104:34;;;22174:3;22169:2;22154:18;;22147:31;;;21952:4;;22195:46;;22221:19;;22213:6;22195:46;:::i;22252:249::-;22321:6;22374:2;22362:9;22353:7;22349:23;22345:32;22342:52;;;22390:1;22387;22380:12;22342:52;22422:9;22416:16;22441:30;22465:5;22441:30;:::i

Swarm Source

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