ETH Price: $3,304.15 (-3.14%)
Gas: 12 Gwei

Token

Axolotl Dominion (axo)
 

Overview

Max Total Supply

5,555 axo

Holders

935

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 axo
0x460988af9ff12c8085a1a5b636f26cc4c57dbcef
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:
AxolotlDominion

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 6: axo.sol
//                      _       _   _              
//     /\              | |     | | | |             
//    /  \   __  _____ | | ___ | |_| |             
//   / /\ \  \ \/ / _ \| |/ _ \| __| |             
//  / ____ \  >  < (_) | | (_) | |_| |             
// /_/____\_\/_/\_\___/|_|\___/ \__|_|             
//   |  __ \                (_)     (_)            
//   | |  | | ___  _ __ ___  _ _ __  _  ___  _ __  
//   | |  | |/ _ \| '_ ` _ \| | '_ \| |/ _ \| '_ \ 
//   | |__| | (_) | | | | | | | | | | | (_) | | | |
//   |_____/ \___/|_| |_| |_|_|_| |_|_|\___/|_| |_|
//Honor awaits those who battle.                                             
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;



import {Ownable} from "Ownable.sol";
import {ERC721A} from "ERC721A.sol";
import {OperatorFilterer} from "OperatorFilterer.sol";



error MintingNotLive();
error MintExceedsMaxSupply();
error FreeMintLimitReached();
error PaidMintLimitReached();
error FreeLimitReached();
error InsufficientPayment();

contract AxolotlDominion is ERC721A, OperatorFilterer, Ownable {
    // Variables

    bool public MintingLive = false;
    uint256 public MAX_SUPPLY = 5555;
    uint256 public free_max_supply = 1111;
    uint256 public MAX_PER_TX_FREE = 3;
    uint256 public PAID_Mint_PRICE = 0.002 ether;


    uint256 public PAID_Mint_LIMIT = 15;

    string public baseURI;

    bool public operatorFilteringEnabled;



    // Constructor

    constructor(string memory baseURI_) ERC721A("Axolotl Dominion", "axo") {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        baseURI = baseURI_;
    }

    function setApprovalForAll(
        address operator,
        bool approved
    ) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(
        address operator,
        uint256 tokenId
    ) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }



    // Modifiers

    modifier nonContract() {
        require(tx.origin == msg.sender, "Sorry Contract Mintors");
        _;
    }

    // Mint

    function paused() public onlyOwner {
        MintingLive = !MintingLive;
    }




    function MINT(uint256 qty) external payable nonContract {
        if (!MintingLive) revert MintingNotLive();
        if (_totalMinted() + qty > MAX_SUPPLY) revert MintExceedsMaxSupply();
        if (qty > PAID_Mint_LIMIT) revert PaidMintLimitReached();


     if(free_max_supply >= totalSupply()){
            require(MAX_PER_TX_FREE >= qty , "Excess max per free tx");
        }else{
            require(PAID_Mint_LIMIT >= qty , "Excess max per paid tx");
            require(qty * PAID_Mint_PRICE  == msg.value, "Invalid funds provided");
        }



        _mint(msg.sender, qty);
    }


  function collectreserves() external onlyOwner {
    _mint(msg.sender, 50);
  }

    function airdrop(address addr, uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= MAX_SUPPLY);
        _safeMint(addr, amount);
    }

      function configPAID_Mint_PRICE(uint256 newPAID_Mint_PRICE) public onlyOwner {
        PAID_Mint_PRICE = newPAID_Mint_PRICE;
    }

    function configfree_max_supply(uint256 newfree_max_supply) public onlyOwner {
        free_max_supply = newfree_max_supply;
    }

    // Token URI

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

    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }

    // Withdraw

  function withdraw() external onlyOwner {
    require(
      payable(owner()).send(address(this).balance),
      "Not Happening"
    );
  }
    }

File 2 of 6: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

pragma solidity ^0.8.4;

import 'IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

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

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

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

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

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

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

File 4 of 6: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 5 of 6: OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

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

pragma solidity ^0.8.0;

import "Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintExceedsMaxSupply","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintingNotLive","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PaidMintLimitReached","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MintingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_Mint_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_Mint_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectreserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPAID_Mint_PRICE","type":"uint256"}],"name":"configPAID_Mint_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newfree_max_supply","type":"uint256"}],"name":"configfree_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055506115b3600955610457600a556003600b5566071afd498d0000600c55600f600d553480156200004d57600080fd5b506040516200382c3803806200382c833981810160405281019062000073919062000488565b6040518060400160405280601081526020017f41786f6c6f746c20446f6d696e696f6e000000000000000000000000000000008152506040518060400160405280600381526020017f61786f00000000000000000000000000000000000000000000000000000000008152508160029081620000f0919062000724565b50806003908162000102919062000724565b50620001136200017f60201b60201c565b60008190555050506200013b6200012f6200018460201b60201c565b6200018c60201b60201c565b6200014b6200025260201b60201c565b6001600f60006101000a81548160ff02191690831515021790555080600e908162000177919062000724565b50506200080b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000279733cc6cdda760b79bafa08df41ecfa224f810dceb660016200027b60201b60201c565b565b637d3e3dbe8260601b60601c925081620002aa5782620002a257634420e4869050620002aa565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620002eb578060005160e01c03620002ea57600080fd5b5b6000602452505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200035e8262000313565b810181811067ffffffffffffffff8211171562000380576200037f62000324565b5b80604052505050565b600062000395620002f5565b9050620003a3828262000353565b919050565b600067ffffffffffffffff821115620003c657620003c562000324565b5b620003d18262000313565b9050602081019050919050565b60005b83811015620003fe578082015181840152602081019050620003e1565b60008484015250505050565b6000620004216200041b84620003a8565b62000389565b90508281526020810184848401111562000440576200043f6200030e565b5b6200044d848285620003de565b509392505050565b600082601f8301126200046d576200046c62000309565b5b81516200047f8482602086016200040a565b91505092915050565b600060208284031215620004a157620004a0620002ff565b5b600082015167ffffffffffffffff811115620004c257620004c162000304565b5b620004d08482850162000455565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052c57607f821691505b602082108103620005425762000541620004e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056d565b620005b886836200056d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000605620005ff620005f984620005d0565b620005da565b620005d0565b9050919050565b6000819050919050565b6200062183620005e4565b6200063962000630826200060c565b8484546200057a565b825550505050565b600090565b6200065062000641565b6200065d81848462000616565b505050565b5b8181101562000685576200067960008262000646565b60018101905062000663565b5050565b601f821115620006d4576200069e8162000548565b620006a9846200055d565b81016020851015620006b9578190505b620006d1620006c8856200055d565b83018262000662565b50505b505050565b600082821c905092915050565b6000620006f960001984600802620006d9565b1980831691505092915050565b6000620007148383620006e6565b9150826002028217905092915050565b6200072f82620004d9565b67ffffffffffffffff8111156200074b576200074a62000324565b5b62000757825462000513565b6200076482828562000689565b600060209050601f8311600181146200079c576000841562000787578287015190505b62000793858262000706565b86555062000803565b601f198416620007ac8662000548565b60005b82811015620007d657848901518255600182019150602085019450602081019050620007af565b86831015620007f65784890151620007f2601f891682620006e6565b8355505b6001600288020188555050505b505050505050565b613011806200081b6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b7c0b8e8116100a0578063d60fba9d1161006f578063d60fba9d14610692578063e985e9c5146106bd578063ea63f589146106fa578063f2fde38b14610723578063fb796e6c1461074c576101f9565b8063b7c0b8e8146105e7578063b88d4fde14610610578063c87b56dd1461062c578063d476de1b14610669576101f9565b8063952ed1e6116100dc578063952ed1e61461055157806395d89b4114610568578063a22cb46514610593578063aff1f573146105bc576101f9565b806370a08231146104a9578063715018a6146104e65780638ba4cc3c146104fd5780638da5cb5b14610526576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b3146103e55780635c975abb1461040e5780636352211e1461042557806365543320146104625780636c0360eb1461047e576101f9565b806332cb6b0c1461035c5780633ccfd60b1461038757806342842e0e1461039e578063463fff79146103ba576101f9565b806318160ddd116101cc57806318160ddd146102bf57806323b872dd146102ea57806326e987d7146103065780632b2b632a14610331576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612196565b610777565b60405161023291906121de565b60405180910390f35b34801561024757600080fd5b50610250610809565b60405161025d9190612289565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906122e1565b61089b565b60405161029a919061234f565b60405180910390f35b6102bd60048036038101906102b89190612396565b61091a565b005b3480156102cb57600080fd5b506102d461094f565b6040516102e191906123e5565b60405180910390f35b61030460048036038101906102ff9190612400565b610966565b005b34801561031257600080fd5b5061031b6109d1565b60405161032891906123e5565b60405180910390f35b34801561033d57600080fd5b506103466109d7565b60405161035391906123e5565b60405180910390f35b34801561036857600080fd5b506103716109dd565b60405161037e91906123e5565b60405180910390f35b34801561039357600080fd5b5061039c6109e3565b005b6103b860048036038101906103b39190612400565b610a68565b005b3480156103c657600080fd5b506103cf610ad3565b6040516103dc91906123e5565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612588565b610ad9565b005b34801561041a57600080fd5b50610423610af4565b005b34801561043157600080fd5b5061044c600480360381019061044791906122e1565b610b28565b604051610459919061234f565b60405180910390f35b61047c600480360381019061047791906122e1565b610b3a565b005b34801561048a57600080fd5b50610493610d74565b6040516104a09190612289565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906125d1565b610e02565b6040516104dd91906123e5565b60405180910390f35b3480156104f257600080fd5b506104fb610eba565b005b34801561050957600080fd5b50610524600480360381019061051f9190612396565b610ece565b005b34801561053257600080fd5b5061053b610f05565b604051610548919061234f565b60405180910390f35b34801561055d57600080fd5b50610566610f2f565b005b34801561057457600080fd5b5061057d610f44565b60405161058a9190612289565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b5919061262a565b610fd6565b005b3480156105c857600080fd5b506105d161100b565b6040516105de91906121de565b60405180910390f35b3480156105f357600080fd5b5061060e6004803603810190610609919061266a565b61101e565b005b61062a60048036038101906106259190612738565b611043565b005b34801561063857600080fd5b50610653600480360381019061064e91906122e1565b6110b0565b6040516106609190612289565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906122e1565b61114e565b005b34801561069e57600080fd5b506106a7611160565b6040516106b491906123e5565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df91906127bb565b611166565b6040516106f191906121de565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906122e1565b6111fa565b005b34801561072f57600080fd5b5061074a600480360381019061074591906125d1565b61120c565b005b34801561075857600080fd5b5061076161128f565b60405161076e91906121de565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108025750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108189061282a565b80601f01602080910402602001604051908101604052809291908181526020018280546108449061282a565b80156108915780601f1061086657610100808354040283529160200191610891565b820191906000526020600020905b81548152906001019060200180831161087457829003601f168201915b5050505050905090565b60006108a6826112a2565b6108dc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161092481611301565b61094057610930611308565b1561093f5761093e8161131f565b5b5b61094a8383611363565b505050565b60006109596114a7565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c0576109a333611301565b6109bf576109af611308565b156109be576109bd3361131f565b5b5b5b6109cb8484846114ac565b50505050565b600a5481565b600d5481565b60095481565b6109eb6117ce565b6109f3610f05565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906128a7565b60405180910390fd5b565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac257610aa533611301565b610ac157610ab1611308565b15610ac057610abf3361131f565b5b5b5b610acd84848461184c565b50505050565b600b5481565b610ae16117ce565b80600e9081610af09190612a73565b5050565b610afc6117ce565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6000610b338261186c565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90612b91565b60405180910390fd5b600860149054906101000a900460ff16610bee576040517ff28e00cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095481610bfa611938565b610c049190612be0565b1115610c3c576040517f3e0866c700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54811115610c78576040517f35a9ba0a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8061094f565b600a5410610cd25780600b541015610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490612c60565b60405180910390fd5b610d67565b80600d541015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90612ccc565b60405180910390fd5b34600c5482610d269190612cec565b14610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90612d7a565b60405180910390fd5b5b610d71338261194b565b50565b600e8054610d819061282a565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad9061282a565b8015610dfa5780601f10610dcf57610100808354040283529160200191610dfa565b820191906000526020600020905b815481529060010190602001808311610ddd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ec26117ce565b610ecc6000611b06565b565b610ed66117ce565b60095481610ee261094f565b610eec9190612be0565b1115610ef757600080fd5b610f018282611bcc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f376117ce565b610f4233603261194b565b565b606060038054610f539061282a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7f9061282a565b8015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b820191906000526020600020905b815481529060010190602001808311610faf57829003601f168201915b5050505050905090565b81610fe081611301565b610ffc57610fec611308565b15610ffb57610ffa8161131f565b5b5b6110068383611bea565b505050565b600860149054906101000a900460ff1681565b6110266117ce565b80600f60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461109d5761108033611301565b61109c5761108c611308565b1561109b5761109a3361131f565b5b5b5b6110a985858585611cf5565b5050505050565b60606110bb826112a2565b6110f1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110fb611d68565b9050600081510361111b5760405180602001604052806000815250611146565b8061112584611dfa565b604051602001611136929190612dd6565b6040516020818303038152906040525b915050919050565b6111566117ce565b80600a8190555050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112026117ce565b80600c8190555050565b6112146117ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90612e6c565b60405180910390fd5b61128c81611b06565b50565b600f60009054906101000a900460ff1681565b6000816112ad6114a7565b111580156112bc575060005482105b80156112fa575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600f60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61135b573d6000803e3d6000fd5b6000603a5250565b600061136e82610b28565b90508073ffffffffffffffffffffffffffffffffffffffff1661138f611e4a565b73ffffffffffffffffffffffffffffffffffffffff16146113f2576113bb816113b6611e4a565b611166565b6113f1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006114b78261186c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461151e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061152a84611e52565b91509150611540818761153b611e4a565b611e79565b61158c5761155586611550611e4a565b611166565b61158b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115f2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115ff8686866001611ebd565b801561160a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506116d8856116b4888887611ec3565b7c020000000000000000000000000000000000000000000000000000000017611eeb565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361175e576000600185019050600060046000838152602001908152602001600020540361175c57600054811461175b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117c68686866001611f16565b505050505050565b6117d6611f1c565b73ffffffffffffffffffffffffffffffffffffffff166117f4610f05565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190612ed8565b60405180910390fd5b565b61186783838360405180602001604052806000815250611043565b505050565b6000808290508061187b6114a7565b11611901576000548110156119005760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118fe575b600081036118f45760046000836001900393508381526020019081526020016000205490506118ca565b8092505050611933565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006119426114a7565b60005403905090565b6000805490506000820361198b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119986000848385611ebd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a0f83611a006000866000611ec3565b611a0985611f24565b17611eeb565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ab057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a75565b5060008203611aeb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611b016000848385611f16565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611be6828260405180602001604052806000815250611f34565b5050565b8060076000611bf7611e4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ca4611e4a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ce991906121de565b60405180910390a35050565b611d00848484610966565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6257611d2b84848484611fd1565b611d61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e8054611d779061282a565b80601f0160208091040260200160405190810160405280929190818152602001828054611da39061282a565b8015611df05780601f10611dc557610100808354040283529160200191611df0565b820191906000526020600020905b815481529060010190602001808311611dd357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e3557600184039350600a81066030018453600a8104905080611e13575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611eda868684612121565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b611f3e838361194b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fcc57600080549050600083820390505b611f7e6000868380600101945086611fd1565b611fb4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f6b578160005414611fc957600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff7611e4a565b8786866040518563ffffffff1660e01b81526004016120199493929190612f4d565b6020604051808303816000875af192505050801561205557506040513d601f19601f820116820180604052508101906120529190612fae565b60015b6120ce573d8060008114612085576040519150601f19603f3d011682016040523d82523d6000602084013e61208a565b606091505b5060008151036120c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121738161213e565b811461217e57600080fd5b50565b6000813590506121908161216a565b92915050565b6000602082840312156121ac576121ab612134565b5b60006121ba84828501612181565b91505092915050565b60008115159050919050565b6121d8816121c3565b82525050565b60006020820190506121f360008301846121cf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612233578082015181840152602081019050612218565b60008484015250505050565b6000601f19601f8301169050919050565b600061225b826121f9565b6122658185612204565b9350612275818560208601612215565b61227e8161223f565b840191505092915050565b600060208201905081810360008301526122a38184612250565b905092915050565b6000819050919050565b6122be816122ab565b81146122c957600080fd5b50565b6000813590506122db816122b5565b92915050565b6000602082840312156122f7576122f6612134565b5b6000612305848285016122cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123398261230e565b9050919050565b6123498161232e565b82525050565b60006020820190506123646000830184612340565b92915050565b6123738161232e565b811461237e57600080fd5b50565b6000813590506123908161236a565b92915050565b600080604083850312156123ad576123ac612134565b5b60006123bb85828601612381565b92505060206123cc858286016122cc565b9150509250929050565b6123df816122ab565b82525050565b60006020820190506123fa60008301846123d6565b92915050565b60008060006060848603121561241957612418612134565b5b600061242786828701612381565b935050602061243886828701612381565b9250506040612449868287016122cc565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124958261223f565b810181811067ffffffffffffffff821117156124b4576124b361245d565b5b80604052505050565b60006124c761212a565b90506124d3828261248c565b919050565b600067ffffffffffffffff8211156124f3576124f261245d565b5b6124fc8261223f565b9050602081019050919050565b82818337600083830152505050565b600061252b612526846124d8565b6124bd565b90508281526020810184848401111561254757612546612458565b5b612552848285612509565b509392505050565b600082601f83011261256f5761256e612453565b5b813561257f848260208601612518565b91505092915050565b60006020828403121561259e5761259d612134565b5b600082013567ffffffffffffffff8111156125bc576125bb612139565b5b6125c88482850161255a565b91505092915050565b6000602082840312156125e7576125e6612134565b5b60006125f584828501612381565b91505092915050565b612607816121c3565b811461261257600080fd5b50565b600081359050612624816125fe565b92915050565b6000806040838503121561264157612640612134565b5b600061264f85828601612381565b925050602061266085828601612615565b9150509250929050565b6000602082840312156126805761267f612134565b5b600061268e84828501612615565b91505092915050565b600067ffffffffffffffff8211156126b2576126b161245d565b5b6126bb8261223f565b9050602081019050919050565b60006126db6126d684612697565b6124bd565b9050828152602081018484840111156126f7576126f6612458565b5b612702848285612509565b509392505050565b600082601f83011261271f5761271e612453565b5b813561272f8482602086016126c8565b91505092915050565b6000806000806080858703121561275257612751612134565b5b600061276087828801612381565b945050602061277187828801612381565b9350506040612782878288016122cc565b925050606085013567ffffffffffffffff8111156127a3576127a2612139565b5b6127af8782880161270a565b91505092959194509250565b600080604083850312156127d2576127d1612134565b5b60006127e085828601612381565b92505060206127f185828601612381565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061284257607f821691505b602082108103612855576128546127fb565b5b50919050565b7f4e6f742048617070656e696e6700000000000000000000000000000000000000600082015250565b6000612891600d83612204565b915061289c8261285b565b602082019050919050565b600060208201905081810360008301526128c081612884565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129297fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128ec565b61293386836128ec565b95508019841693508086168417925050509392505050565b6000819050919050565b600061297061296b612966846122ab565b61294b565b6122ab565b9050919050565b6000819050919050565b61298a83612955565b61299e61299682612977565b8484546128f9565b825550505050565b600090565b6129b36129a6565b6129be818484612981565b505050565b5b818110156129e2576129d76000826129ab565b6001810190506129c4565b5050565b601f821115612a27576129f8816128c7565b612a01846128dc565b81016020851015612a10578190505b612a24612a1c856128dc565b8301826129c3565b50505b505050565b600082821c905092915050565b6000612a4a60001984600802612a2c565b1980831691505092915050565b6000612a638383612a39565b9150826002028217905092915050565b612a7c826121f9565b67ffffffffffffffff811115612a9557612a9461245d565b5b612a9f825461282a565b612aaa8282856129e6565b600060209050601f831160018114612add5760008415612acb578287015190505b612ad58582612a57565b865550612b3d565b601f198416612aeb866128c7565b60005b82811015612b1357848901518255600182019150602085019450602081019050612aee565b86831015612b305784890151612b2c601f891682612a39565b8355505b6001600288020188555050505b505050505050565b7f536f72727920436f6e7472616374204d696e746f727300000000000000000000600082015250565b6000612b7b601683612204565b9150612b8682612b45565b602082019050919050565b60006020820190508181036000830152612baa81612b6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612beb826122ab565b9150612bf6836122ab565b9250828201905080821115612c0e57612c0d612bb1565b5b92915050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000612c4a601683612204565b9150612c5582612c14565b602082019050919050565b60006020820190508181036000830152612c7981612c3d565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000612cb6601683612204565b9150612cc182612c80565b602082019050919050565b60006020820190508181036000830152612ce581612ca9565b9050919050565b6000612cf7826122ab565b9150612d02836122ab565b9250828202612d10816122ab565b91508282048414831517612d2757612d26612bb1565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000612d64601683612204565b9150612d6f82612d2e565b602082019050919050565b60006020820190508181036000830152612d9381612d57565b9050919050565b600081905092915050565b6000612db0826121f9565b612dba8185612d9a565b9350612dca818560208601612215565b80840191505092915050565b6000612de28285612da5565b9150612dee8284612da5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e56602683612204565b9150612e6182612dfa565b604082019050919050565b60006020820190508181036000830152612e8581612e49565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ec2602083612204565b9150612ecd82612e8c565b602082019050919050565b60006020820190508181036000830152612ef181612eb5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f1f82612ef8565b612f298185612f03565b9350612f39818560208601612215565b612f428161223f565b840191505092915050565b6000608082019050612f626000830187612340565b612f6f6020830186612340565b612f7c60408301856123d6565b8181036060830152612f8e8184612f14565b905095945050505050565b600081519050612fa88161216a565b92915050565b600060208284031215612fc457612fc3612134565b5b6000612fd284828501612f99565b9150509291505056fea264697066735822122069723920e2fd8472345351f8ad121499b0c7ac3c147c40383e0038dbac61628764736f6c63430008120033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000037462640000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b7c0b8e8116100a0578063d60fba9d1161006f578063d60fba9d14610692578063e985e9c5146106bd578063ea63f589146106fa578063f2fde38b14610723578063fb796e6c1461074c576101f9565b8063b7c0b8e8146105e7578063b88d4fde14610610578063c87b56dd1461062c578063d476de1b14610669576101f9565b8063952ed1e6116100dc578063952ed1e61461055157806395d89b4114610568578063a22cb46514610593578063aff1f573146105bc576101f9565b806370a08231146104a9578063715018a6146104e65780638ba4cc3c146104fd5780638da5cb5b14610526576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b3146103e55780635c975abb1461040e5780636352211e1461042557806365543320146104625780636c0360eb1461047e576101f9565b806332cb6b0c1461035c5780633ccfd60b1461038757806342842e0e1461039e578063463fff79146103ba576101f9565b806318160ddd116101cc57806318160ddd146102bf57806323b872dd146102ea57806326e987d7146103065780632b2b632a14610331576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612196565b610777565b60405161023291906121de565b60405180910390f35b34801561024757600080fd5b50610250610809565b60405161025d9190612289565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906122e1565b61089b565b60405161029a919061234f565b60405180910390f35b6102bd60048036038101906102b89190612396565b61091a565b005b3480156102cb57600080fd5b506102d461094f565b6040516102e191906123e5565b60405180910390f35b61030460048036038101906102ff9190612400565b610966565b005b34801561031257600080fd5b5061031b6109d1565b60405161032891906123e5565b60405180910390f35b34801561033d57600080fd5b506103466109d7565b60405161035391906123e5565b60405180910390f35b34801561036857600080fd5b506103716109dd565b60405161037e91906123e5565b60405180910390f35b34801561039357600080fd5b5061039c6109e3565b005b6103b860048036038101906103b39190612400565b610a68565b005b3480156103c657600080fd5b506103cf610ad3565b6040516103dc91906123e5565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612588565b610ad9565b005b34801561041a57600080fd5b50610423610af4565b005b34801561043157600080fd5b5061044c600480360381019061044791906122e1565b610b28565b604051610459919061234f565b60405180910390f35b61047c600480360381019061047791906122e1565b610b3a565b005b34801561048a57600080fd5b50610493610d74565b6040516104a09190612289565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906125d1565b610e02565b6040516104dd91906123e5565b60405180910390f35b3480156104f257600080fd5b506104fb610eba565b005b34801561050957600080fd5b50610524600480360381019061051f9190612396565b610ece565b005b34801561053257600080fd5b5061053b610f05565b604051610548919061234f565b60405180910390f35b34801561055d57600080fd5b50610566610f2f565b005b34801561057457600080fd5b5061057d610f44565b60405161058a9190612289565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b5919061262a565b610fd6565b005b3480156105c857600080fd5b506105d161100b565b6040516105de91906121de565b60405180910390f35b3480156105f357600080fd5b5061060e6004803603810190610609919061266a565b61101e565b005b61062a60048036038101906106259190612738565b611043565b005b34801561063857600080fd5b50610653600480360381019061064e91906122e1565b6110b0565b6040516106609190612289565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906122e1565b61114e565b005b34801561069e57600080fd5b506106a7611160565b6040516106b491906123e5565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df91906127bb565b611166565b6040516106f191906121de565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906122e1565b6111fa565b005b34801561072f57600080fd5b5061074a600480360381019061074591906125d1565b61120c565b005b34801561075857600080fd5b5061076161128f565b60405161076e91906121de565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108025750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108189061282a565b80601f01602080910402602001604051908101604052809291908181526020018280546108449061282a565b80156108915780601f1061086657610100808354040283529160200191610891565b820191906000526020600020905b81548152906001019060200180831161087457829003601f168201915b5050505050905090565b60006108a6826112a2565b6108dc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161092481611301565b61094057610930611308565b1561093f5761093e8161131f565b5b5b61094a8383611363565b505050565b60006109596114a7565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109c0576109a333611301565b6109bf576109af611308565b156109be576109bd3361131f565b5b5b5b6109cb8484846114ac565b50505050565b600a5481565b600d5481565b60095481565b6109eb6117ce565b6109f3610f05565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906128a7565b60405180910390fd5b565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac257610aa533611301565b610ac157610ab1611308565b15610ac057610abf3361131f565b5b5b5b610acd84848461184c565b50505050565b600b5481565b610ae16117ce565b80600e9081610af09190612a73565b5050565b610afc6117ce565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6000610b338261186c565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90612b91565b60405180910390fd5b600860149054906101000a900460ff16610bee576040517ff28e00cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095481610bfa611938565b610c049190612be0565b1115610c3c576040517f3e0866c700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54811115610c78576040517f35a9ba0a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8061094f565b600a5410610cd25780600b541015610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490612c60565b60405180910390fd5b610d67565b80600d541015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90612ccc565b60405180910390fd5b34600c5482610d269190612cec565b14610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90612d7a565b60405180910390fd5b5b610d71338261194b565b50565b600e8054610d819061282a565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad9061282a565b8015610dfa5780601f10610dcf57610100808354040283529160200191610dfa565b820191906000526020600020905b815481529060010190602001808311610ddd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ec26117ce565b610ecc6000611b06565b565b610ed66117ce565b60095481610ee261094f565b610eec9190612be0565b1115610ef757600080fd5b610f018282611bcc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f376117ce565b610f4233603261194b565b565b606060038054610f539061282a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7f9061282a565b8015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b820191906000526020600020905b815481529060010190602001808311610faf57829003601f168201915b5050505050905090565b81610fe081611301565b610ffc57610fec611308565b15610ffb57610ffa8161131f565b5b5b6110068383611bea565b505050565b600860149054906101000a900460ff1681565b6110266117ce565b80600f60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461109d5761108033611301565b61109c5761108c611308565b1561109b5761109a3361131f565b5b5b5b6110a985858585611cf5565b5050505050565b60606110bb826112a2565b6110f1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110fb611d68565b9050600081510361111b5760405180602001604052806000815250611146565b8061112584611dfa565b604051602001611136929190612dd6565b6040516020818303038152906040525b915050919050565b6111566117ce565b80600a8190555050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112026117ce565b80600c8190555050565b6112146117ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90612e6c565b60405180910390fd5b61128c81611b06565b50565b600f60009054906101000a900460ff1681565b6000816112ad6114a7565b111580156112bc575060005482105b80156112fa575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600f60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61135b573d6000803e3d6000fd5b6000603a5250565b600061136e82610b28565b90508073ffffffffffffffffffffffffffffffffffffffff1661138f611e4a565b73ffffffffffffffffffffffffffffffffffffffff16146113f2576113bb816113b6611e4a565b611166565b6113f1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006114b78261186c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461151e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061152a84611e52565b91509150611540818761153b611e4a565b611e79565b61158c5761155586611550611e4a565b611166565b61158b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115f2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115ff8686866001611ebd565b801561160a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506116d8856116b4888887611ec3565b7c020000000000000000000000000000000000000000000000000000000017611eeb565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361175e576000600185019050600060046000838152602001908152602001600020540361175c57600054811461175b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117c68686866001611f16565b505050505050565b6117d6611f1c565b73ffffffffffffffffffffffffffffffffffffffff166117f4610f05565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190612ed8565b60405180910390fd5b565b61186783838360405180602001604052806000815250611043565b505050565b6000808290508061187b6114a7565b11611901576000548110156119005760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118fe575b600081036118f45760046000836001900393508381526020019081526020016000205490506118ca565b8092505050611933565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006119426114a7565b60005403905090565b6000805490506000820361198b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119986000848385611ebd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a0f83611a006000866000611ec3565b611a0985611f24565b17611eeb565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ab057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a75565b5060008203611aeb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611b016000848385611f16565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611be6828260405180602001604052806000815250611f34565b5050565b8060076000611bf7611e4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ca4611e4a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ce991906121de565b60405180910390a35050565b611d00848484610966565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6257611d2b84848484611fd1565b611d61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e8054611d779061282a565b80601f0160208091040260200160405190810160405280929190818152602001828054611da39061282a565b8015611df05780601f10611dc557610100808354040283529160200191611df0565b820191906000526020600020905b815481529060010190602001808311611dd357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e3557600184039350600a81066030018453600a8104905080611e13575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611eda868684612121565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b611f3e838361194b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fcc57600080549050600083820390505b611f7e6000868380600101945086611fd1565b611fb4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f6b578160005414611fc957600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff7611e4a565b8786866040518563ffffffff1660e01b81526004016120199493929190612f4d565b6020604051808303816000875af192505050801561205557506040513d601f19601f820116820180604052508101906120529190612fae565b60015b6120ce573d8060008114612085576040519150601f19603f3d011682016040523d82523d6000602084013e61208a565b606091505b5060008151036120c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121738161213e565b811461217e57600080fd5b50565b6000813590506121908161216a565b92915050565b6000602082840312156121ac576121ab612134565b5b60006121ba84828501612181565b91505092915050565b60008115159050919050565b6121d8816121c3565b82525050565b60006020820190506121f360008301846121cf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612233578082015181840152602081019050612218565b60008484015250505050565b6000601f19601f8301169050919050565b600061225b826121f9565b6122658185612204565b9350612275818560208601612215565b61227e8161223f565b840191505092915050565b600060208201905081810360008301526122a38184612250565b905092915050565b6000819050919050565b6122be816122ab565b81146122c957600080fd5b50565b6000813590506122db816122b5565b92915050565b6000602082840312156122f7576122f6612134565b5b6000612305848285016122cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123398261230e565b9050919050565b6123498161232e565b82525050565b60006020820190506123646000830184612340565b92915050565b6123738161232e565b811461237e57600080fd5b50565b6000813590506123908161236a565b92915050565b600080604083850312156123ad576123ac612134565b5b60006123bb85828601612381565b92505060206123cc858286016122cc565b9150509250929050565b6123df816122ab565b82525050565b60006020820190506123fa60008301846123d6565b92915050565b60008060006060848603121561241957612418612134565b5b600061242786828701612381565b935050602061243886828701612381565b9250506040612449868287016122cc565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124958261223f565b810181811067ffffffffffffffff821117156124b4576124b361245d565b5b80604052505050565b60006124c761212a565b90506124d3828261248c565b919050565b600067ffffffffffffffff8211156124f3576124f261245d565b5b6124fc8261223f565b9050602081019050919050565b82818337600083830152505050565b600061252b612526846124d8565b6124bd565b90508281526020810184848401111561254757612546612458565b5b612552848285612509565b509392505050565b600082601f83011261256f5761256e612453565b5b813561257f848260208601612518565b91505092915050565b60006020828403121561259e5761259d612134565b5b600082013567ffffffffffffffff8111156125bc576125bb612139565b5b6125c88482850161255a565b91505092915050565b6000602082840312156125e7576125e6612134565b5b60006125f584828501612381565b91505092915050565b612607816121c3565b811461261257600080fd5b50565b600081359050612624816125fe565b92915050565b6000806040838503121561264157612640612134565b5b600061264f85828601612381565b925050602061266085828601612615565b9150509250929050565b6000602082840312156126805761267f612134565b5b600061268e84828501612615565b91505092915050565b600067ffffffffffffffff8211156126b2576126b161245d565b5b6126bb8261223f565b9050602081019050919050565b60006126db6126d684612697565b6124bd565b9050828152602081018484840111156126f7576126f6612458565b5b612702848285612509565b509392505050565b600082601f83011261271f5761271e612453565b5b813561272f8482602086016126c8565b91505092915050565b6000806000806080858703121561275257612751612134565b5b600061276087828801612381565b945050602061277187828801612381565b9350506040612782878288016122cc565b925050606085013567ffffffffffffffff8111156127a3576127a2612139565b5b6127af8782880161270a565b91505092959194509250565b600080604083850312156127d2576127d1612134565b5b60006127e085828601612381565b92505060206127f185828601612381565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061284257607f821691505b602082108103612855576128546127fb565b5b50919050565b7f4e6f742048617070656e696e6700000000000000000000000000000000000000600082015250565b6000612891600d83612204565b915061289c8261285b565b602082019050919050565b600060208201905081810360008301526128c081612884565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129297fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128ec565b61293386836128ec565b95508019841693508086168417925050509392505050565b6000819050919050565b600061297061296b612966846122ab565b61294b565b6122ab565b9050919050565b6000819050919050565b61298a83612955565b61299e61299682612977565b8484546128f9565b825550505050565b600090565b6129b36129a6565b6129be818484612981565b505050565b5b818110156129e2576129d76000826129ab565b6001810190506129c4565b5050565b601f821115612a27576129f8816128c7565b612a01846128dc565b81016020851015612a10578190505b612a24612a1c856128dc565b8301826129c3565b50505b505050565b600082821c905092915050565b6000612a4a60001984600802612a2c565b1980831691505092915050565b6000612a638383612a39565b9150826002028217905092915050565b612a7c826121f9565b67ffffffffffffffff811115612a9557612a9461245d565b5b612a9f825461282a565b612aaa8282856129e6565b600060209050601f831160018114612add5760008415612acb578287015190505b612ad58582612a57565b865550612b3d565b601f198416612aeb866128c7565b60005b82811015612b1357848901518255600182019150602085019450602081019050612aee565b86831015612b305784890151612b2c601f891682612a39565b8355505b6001600288020188555050505b505050505050565b7f536f72727920436f6e7472616374204d696e746f727300000000000000000000600082015250565b6000612b7b601683612204565b9150612b8682612b45565b602082019050919050565b60006020820190508181036000830152612baa81612b6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612beb826122ab565b9150612bf6836122ab565b9250828201905080821115612c0e57612c0d612bb1565b5b92915050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000612c4a601683612204565b9150612c5582612c14565b602082019050919050565b60006020820190508181036000830152612c7981612c3d565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000612cb6601683612204565b9150612cc182612c80565b602082019050919050565b60006020820190508181036000830152612ce581612ca9565b9050919050565b6000612cf7826122ab565b9150612d02836122ab565b9250828202612d10816122ab565b91508282048414831517612d2757612d26612bb1565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000612d64601683612204565b9150612d6f82612d2e565b602082019050919050565b60006020820190508181036000830152612d9381612d57565b9050919050565b600081905092915050565b6000612db0826121f9565b612dba8185612d9a565b9350612dca818560208601612215565b80840191505092915050565b6000612de28285612da5565b9150612dee8284612da5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e56602683612204565b9150612e6182612dfa565b604082019050919050565b60006020820190508181036000830152612e8581612e49565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ec2602083612204565b9150612ecd82612e8c565b602082019050919050565b60006020820190508181036000830152612ef181612eb5565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f1f82612ef8565b612f298185612f03565b9350612f39818560208601612215565b612f428161223f565b840191505092915050565b6000608082019050612f626000830187612340565b612f6f6020830186612340565b612f7c60408301856123d6565b8181036060830152612f8e8184612f14565b905095945050505050565b600081519050612fa88161216a565b92915050565b600060208284031215612fc457612fc3612134565b5b6000612fd284828501612f99565b9150509291505056fea264697066735822122069723920e2fd8472345351f8ad121499b0c7ac3c147c40383e0038dbac61628764736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000037462640000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): tbd

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [2] : 7462640000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1041:3813:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9408:639:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16801:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1902:190:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6061:323:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2100:205:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1208:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1348:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1169:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4704:143;;;;;;;;;;;;;:::i;:::-;;2313:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1252:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4589:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3206:80;;;;;;;;;;;;;:::i;:::-;;11703:152:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3300:607:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1392:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7245:233:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1882:103:4;;;;;;;;;;;;;:::i;:::-;;4003:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1234:87:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3915:80:5;;;;;;;;;;;;;:::i;:::-;;10486:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1131:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2789:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2534:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10696:318:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4314:131:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1293:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17750:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4175:131:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2140:201:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1422:36:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9408:639:1;9493:4;9832:10;9817:25;;:11;:25;;;;:102;;;;9909:10;9894:25;;:11;:25;;;;9817:102;:179;;;;9986:10;9971:25;;:11;:25;;;;9817:179;9797:199;;9408:639;;;:::o;10310:100::-;10364:13;10397:5;10390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10310:100;:::o;16801:218::-;16877:7;16902:16;16910:7;16902;:16::i;:::-;16897:64;;16927:34;;;;;;;;;;;;;;16897:64;16981:15;:24;16997:7;16981:24;;;;;;;;;;;:30;;;;;;;;;;;;16974:37;;16801:218;;;:::o;1902:190:5:-;2031:8;3578:29:3;3598:8;3578:19;:29::i;:::-;3573:122;;3628:27;:25;:27::i;:::-;3624:59;;;3657:26;3674:8;3657:16;:26::i;:::-;3624:59;3573:122;2052:32:5::1;2066:8;2076:7;2052:13;:32::i;:::-;1902:190:::0;;;:::o;6061:323:1:-;6122:7;6350:15;:13;:15::i;:::-;6335:12;;6319:13;;:28;:46;6312:53;;6061:323;:::o;2100:205:5:-;2243:4;3221:10:3;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;2260:37:5::1;2279:4;2285:2;2289:7;2260:18;:37::i;:::-;2100:205:::0;;;;:::o;1208:37::-;;;;:::o;1348:35::-;;;;:::o;1169:32::-;;;;:::o;4704:143::-;1120:13:4;:11;:13::i;:::-;4774:7:5::1;:5;:7::i;:::-;4766:21;;:44;4788:21;4766:44;;;;;;;;;;;;;;;;;;;;;;;4750:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;4704:143::o:0;2313:213::-;2460:4;3221:10:3;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;2477:41:5::1;2500:4;2506:2;2510:7;2477:22;:41::i;:::-;2313:213:::0;;;;:::o;1252:34::-;;;;:::o;4589:90::-;1120:13:4;:11;:13::i;:::-;4668:3:5::1;4658:7;:13;;;;;;:::i;:::-;;4589:90:::0;:::o;3206:80::-;1120:13:4;:11;:13::i;:::-;3267:11:5::1;;;;;;;;;;;3266:12;3252:11;;:26;;;;;;;;;;;;;;;;;;3206:80::o:0;11703:152:1:-;11775:7;11818:27;11837:7;11818:18;:27::i;:::-;11795:52;;11703:152;;;:::o;3300:607:5:-;3126:10;3113:23;;:9;:23;;;3105:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3372:11:::1;;;;;;;;;;;3367:41;;3392:16;;;;;;;;;;;;;;3367:41;3446:10;;3440:3;3423:14;:12;:14::i;:::-;:20;;;;:::i;:::-;:33;3419:68;;;3465:22;;;;;;;;;;;;;;3419:68;3508:15;;3502:3;:21;3498:56;;;3532:22;;;;;;;;;;;;;;3498:56;3588:13;:11;:13::i;:::-;3569:15;;:32;3566:295;;3644:3;3625:15;;:22;;3617:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3566:295;;;3733:3;3714:15;;:22;;3706:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3813:9;3793:15;;3787:3;:21;;;;:::i;:::-;:35;3779:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3566:295;3877:22;3883:10;3895:3;3877:5;:22::i;:::-;3300:607:::0;:::o;1392:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7245:233:1:-;7317:7;7358:1;7341:19;;:5;:19;;;7337:60;;7369:28;;;;;;;;;;;;;;7337:60;1404:13;7415:18;:25;7434:5;7415:25;;;;;;;;;;;;;;;;:55;7408:62;;7245:233;;;:::o;1882:103:4:-;1120:13;:11;:13::i;:::-;1947:30:::1;1974:1;1947:18;:30::i;:::-;1882:103::o:0;4003:162:5:-;1120:13:4;:11;:13::i;:::-;4112:10:5::1;;4102:6;4086:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;4078:45;;;::::0;::::1;;4134:23;4144:4;4150:6;4134:9;:23::i;:::-;4003:162:::0;;:::o;1234:87:4:-;1280:7;1307:6;;;;;;;;;;;1300:13;;1234:87;:::o;3915:80:5:-;1120:13:4;:11;:13::i;:::-;3968:21:5::1;3974:10;3986:2;3968:5;:21::i;:::-;3915:80::o:0;10486:104:1:-;10542:13;10575:7;10568:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10486:104;:::o;1693:201:5:-;1822:8;3578:29:3;3598:8;3578:19;:29::i;:::-;3573:122;;3628:27;:25;:27::i;:::-;3624:59;;;3657:26;3674:8;3657:16;:26::i;:::-;3624:59;3573:122;1843:43:5::1;1867:8;1877;1843:23;:43::i;:::-;1693:201:::0;;;:::o;1131:31::-;;;;;;;;;;;;;:::o;2789:117::-;1120:13:4;:11;:13::i;:::-;2893:5:5::1;2866:24;;:32;;;;;;;;;;;;;;;;;;2789:117:::0;:::o;2534:247::-;2709:4;3221:10:3;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;2726:47:5::1;2749:4;2755:2;2759:7;2768:4;2726:22;:47::i;:::-;2534:247:::0;;;;;:::o;10696:318:1:-;10769:13;10800:16;10808:7;10800;:16::i;:::-;10795:59;;10825:29;;;;;;;;;;;;;;10795:59;10867:21;10891:10;:8;:10::i;:::-;10867:34;;10944:1;10925:7;10919:21;:26;:87;;;;;;;;;;;;;;;;;10972:7;10981:18;10991:7;10981:9;:18::i;:::-;10955:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10919:87;10912:94;;;10696:318;;;:::o;4314:131:5:-;1120:13:4;:11;:13::i;:::-;4419:18:5::1;4401:15;:36;;;;4314:131:::0;:::o;1293:44::-;;;;:::o;17750:164:1:-;17847:4;17871:18;:25;17890:5;17871:25;;;;;;;;;;;;;;;:35;17897:8;17871:35;;;;;;;;;;;;;;;;;;;;;;;;;17864:42;;17750:164;;;;:::o;4175:131:5:-;1120:13:4;:11;:13::i;:::-;4280:18:5::1;4262:15;:36;;;;4175:131:::0;:::o;2140:201:4:-;1120:13;:11;:13::i;:::-;2249:1:::1;2229:22;;:8;:22;;::::0;2221:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2305:28;2324:8;2305:18;:28::i;:::-;2140:201:::0;:::o;1422:36:5:-;;;;;;;;;;;;;:::o;18172:282:1:-;18237:4;18293:7;18274:15;:13;:15::i;:::-;:26;;:66;;;;;18327:13;;18317:7;:23;18274:66;:153;;;;;18426:1;2180:8;18378:17;:26;18396:7;18378:26;;;;;;;;;;;;:44;:49;18274:153;18254:173;;18172:282;;;:::o;5627:106:3:-;5696:4;5627:106;;;:::o;2914:125:5:-;2983:4;3007:24;;;;;;;;;;;3000:31;;2914:125;:::o;3811:1359:3:-;4204:22;4198:4;4191:36;4297:9;4291:4;4284:23;4372:8;4366:4;4359:22;4549:4;4543;4537;4531;4504:25;4497:5;4486:68;4476:274;;4670:16;4664:4;4658;4643:44;4718:16;4712:4;4705:30;4476:274;5150:1;5144:4;5137:15;3811:1359;:::o;16234:408:1:-;16323:13;16339:16;16347:7;16339;:16::i;:::-;16323:32;;16395:5;16372:28;;:19;:17;:19::i;:::-;:28;;;16368:175;;16420:44;16437:5;16444:19;:17;:19::i;:::-;16420:16;:44::i;:::-;16415:128;;16492:35;;;;;;;;;;;;;;16415:128;16368:175;16588:2;16555:15;:24;16571:7;16555:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16626:7;16622:2;16606:28;;16615:5;16606:28;;;;;;;;;;;;16312:330;16234:408;;:::o;5577:92::-;5633:7;5577:92;:::o;20440:2825::-;20582:27;20612;20631:7;20612:18;:27::i;:::-;20582:57;;20697:4;20656:45;;20672:19;20656:45;;;20652:86;;20710:28;;;;;;;;;;;;;;20652:86;20752:27;20781:23;20808:35;20835:7;20808:26;:35::i;:::-;20751:92;;;;20943:68;20968:15;20985:4;20991:19;:17;:19::i;:::-;20943:24;:68::i;:::-;20938:180;;21031:43;21048:4;21054:19;:17;:19::i;:::-;21031:16;:43::i;:::-;21026:92;;21083:35;;;;;;;;;;;;;;21026:92;20938:180;21149:1;21135:16;;:2;:16;;;21131:52;;21160:23;;;;;;;;;;;;;;21131:52;21196:43;21218:4;21224:2;21228:7;21237:1;21196:21;:43::i;:::-;21332:15;21329:160;;;21472:1;21451:19;21444:30;21329:160;21869:18;:24;21888:4;21869:24;;;;;;;;;;;;;;;;21867:26;;;;;;;;;;;;21938:18;:22;21957:2;21938:22;;;;;;;;;;;;;;;;21936:24;;;;;;;;;;;22260:146;22297:2;22346:45;22361:4;22367:2;22371:19;22346:14;:45::i;:::-;2460:8;22318:73;22260:18;:146::i;:::-;22231:17;:26;22249:7;22231:26;;;;;;;;;;;:175;;;;22577:1;2460:8;22526:19;:47;:52;22522:627;;22599:19;22631:1;22621:7;:11;22599:33;;22788:1;22754:17;:30;22772:11;22754:30;;;;;;;;;;;;:35;22750:384;;22892:13;;22877:11;:28;22873:242;;23072:19;23039:17;:30;23057:11;23039:30;;;;;;;;;;;:52;;;;22873:242;22750:384;22580:569;22522:627;23196:7;23192:2;23177:27;;23186:4;23177:27;;;;;;;;;;;;23215:42;23236:4;23242:2;23246:7;23255:1;23215:20;:42::i;:::-;20571:2694;;;20440:2825;;;:::o;1399:132:4:-;1474:12;:10;:12::i;:::-;1463:23;;:7;:5;:7::i;:::-;:23;;;1455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1399:132::o;23361:193:1:-;23507:39;23524:4;23530:2;23534:7;23507:39;;;;;;;;;;;;:16;:39::i;:::-;23361:193;;;:::o;12858:1275::-;12925:7;12945:12;12960:7;12945:22;;13028:4;13009:15;:13;:15::i;:::-;:23;13005:1061;;13062:13;;13055:4;:20;13051:1015;;;13100:14;13117:17;:23;13135:4;13117:23;;;;;;;;;;;;13100:40;;13234:1;2180:8;13206:6;:24;:29;13202:845;;13871:113;13888:1;13878:6;:11;13871:113;;13931:17;:25;13949:6;;;;;;;13931:25;;;;;;;;;;;;13922:34;;13871:113;;;14017:6;14010:13;;;;;;13202:845;13077:989;13051:1015;13005:1061;14094:31;;;;;;;;;;;;;;12858:1275;;;;:::o;6482:296::-;6537:7;6744:15;:13;:15::i;:::-;6728:13;;:31;6721:38;;6482:296;:::o;27821:2966::-;27894:20;27917:13;;27894:36;;27957:1;27945:8;:13;27941:44;;27967:18;;;;;;;;;;;;;;27941:44;27998:61;28028:1;28032:2;28036:12;28050:8;27998:21;:61::i;:::-;28542:1;1542:2;28512:1;:26;;28511:32;28499:8;:45;28473:18;:22;28492:2;28473:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28821:139;28858:2;28912:33;28935:1;28939:2;28943:1;28912:14;:33::i;:::-;28879:30;28900:8;28879:20;:30::i;:::-;:66;28821:18;:139::i;:::-;28787:17;:31;28805:12;28787:31;;;;;;;;;;;:173;;;;28977:16;29008:11;29037:8;29022:12;:23;29008:37;;29558:16;29554:2;29550:25;29538:37;;29930:12;29890:8;29849:1;29787:25;29728:1;29667;29640:335;30301:1;30287:12;30283:20;30241:346;30342:3;30333:7;30330:16;30241:346;;30560:7;30550:8;30547:1;30520:25;30517:1;30514;30509:59;30395:1;30386:7;30382:15;30371:26;;30241:346;;;30245:77;30632:1;30620:8;:13;30616:45;;30642:19;;;;;;;;;;;;;;30616:45;30694:3;30678:13;:19;;;;28247:2462;;30719:60;30748:1;30752:2;30756:12;30770:8;30719:20;:60::i;:::-;27883:2904;27821:2966;;:::o;2501:191:4:-;2575:16;2594:6;;;;;;;;;;;2575:25;;2620:8;2611:6;;:17;;;;;;;;;;;;;;;;;;2675:8;2644:40;;2665:8;2644:40;;;;;;;;;;;;2564:128;2501:191;:::o;34312:112:1:-;34389:27;34399:2;34403:8;34389:27;;;;;;;;;;;;:9;:27::i;:::-;34312:112;;:::o;17359:234::-;17506:8;17454:18;:39;17473:19;:17;:19::i;:::-;17454:39;;;;;;;;;;;;;;;:49;17494:8;17454:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17566:8;17530:55;;17545:19;:17;:19::i;:::-;17530:55;;;17576:8;17530:55;;;;;;:::i;:::-;;;;;;;;17359:234;;:::o;24152:407::-;24327:31;24340:4;24346:2;24350:7;24327:12;:31::i;:::-;24391:1;24373:2;:14;;;:19;24369:183;;24412:56;24443:4;24449:2;24453:7;24462:5;24412:30;:56::i;:::-;24407:145;;24496:40;;;;;;;;;;;;;;24407:145;24369:183;24152:407;;;;:::o;4473:108:5:-;4533:13;4566:7;4559:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4473:108;:::o;40687:1745:1:-;40752:17;41186:4;41179;41173:11;41169:22;41278:1;41272:4;41265:15;41353:4;41350:1;41346:12;41339:19;;41435:1;41430:3;41423:14;41539:3;41778:5;41760:428;41786:1;41760:428;;;41826:1;41821:3;41817:11;41810:18;;41997:2;41991:4;41987:13;41983:2;41979:22;41974:3;41966:36;42091:2;42085:4;42081:13;42073:21;;42158:4;41760:428;42148:25;41760:428;41764:21;42227:3;42222;42218:13;42342:4;42337:3;42333:14;42326:21;;42407:6;42402:3;42395:19;40791:1634;;;40687:1745;;;:::o;40480:105::-;40540:7;40567:10;40560:17;;40480:105;:::o;19335:485::-;19437:27;19466:23;19507:38;19548:15;:24;19564:7;19548:24;;;;;;;;;;;19507:65;;19725:18;19702:41;;19782:19;19776:26;19757:45;;19687:126;19335:485;;;:::o;18563:659::-;18712:11;18877:16;18870:5;18866:28;18857:37;;19037:16;19026:9;19022:32;19009:45;;19187:15;19176:9;19173:30;19165:5;19154:9;19151:20;19148:56;19138:66;;18563:659;;;;;:::o;25221:159::-;;;;;:::o;39789:311::-;39924:7;39944:16;2584:3;39970:19;:41;;39944:68;;2584:3;40038:31;40049:4;40055:2;40059:9;40038:10;:31::i;:::-;40030:40;;:62;;40023:69;;;39789:311;;;;;:::o;14681:450::-;14761:14;14929:16;14922:5;14918:28;14909:37;;15106:5;15092:11;15067:23;15063:41;15060:52;15053:5;15050:63;15040:73;;14681:450;;;;:::o;26045:158::-;;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;15233:324:1:-;15303:14;15536:1;15526:8;15523:15;15497:24;15493:46;15483:56;;15233:324;;;:::o;33539:689::-;33670:19;33676:2;33680:8;33670:5;:19::i;:::-;33749:1;33731:2;:14;;;:19;33727:483;;33771:11;33785:13;;33771:27;;33817:13;33839:8;33833:3;:14;33817:30;;33866:233;33897:62;33936:1;33940:2;33944:7;;;;;;33953:5;33897:30;:62::i;:::-;33892:167;;33995:40;;;;;;;;;;;;;;33892:167;34094:3;34086:5;:11;33866:233;;34181:3;34164:13;;:20;34160:34;;34186:8;;;34160:34;33752:458;;33727:483;33539:689;;;:::o;26643:716::-;26806:4;26852:2;26827:45;;;26873:19;:17;:19::i;:::-;26894:4;26900:7;26909:5;26827:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26823:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27127:1;27110:6;:13;:18;27106:235;;27156:40;;;;;;;;;;;;;;27106:235;27299:6;27293:13;27284:6;27280:2;27276:15;27269:38;26823:529;26996:54;;;26986:64;;;:6;:64;;;;26979:71;;;26643:716;;;;;;:::o;39490:147::-;39627:6;39490:147;;;;;:::o;7:75:6:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:323::-;9619:6;9668:2;9656:9;9647:7;9643:23;9639:32;9636:119;;;9674:79;;:::i;:::-;9636:119;9794:1;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9765:114;9563:323;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:163::-;13072:15;13068:1;13060:6;13056:14;13049:39;12932:163;:::o;13101:366::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:419::-;13639:4;13677:2;13666:9;13662:18;13654:26;;13726:9;13720:4;13716:20;13712:1;13701:9;13697:17;13690:47;13754:131;13880:4;13754:131;:::i;:::-;13746:139;;13473:419;;;:::o;13898:141::-;13947:4;13970:3;13962:11;;13993:3;13990:1;13983:14;14027:4;14024:1;14014:18;14006:26;;13898:141;;;:::o;14045:93::-;14082:6;14129:2;14124;14117:5;14113:14;14109:23;14099:33;;14045:93;;;:::o;14144:107::-;14188:8;14238:5;14232:4;14228:16;14207:37;;14144:107;;;;:::o;14257:393::-;14326:6;14376:1;14364:10;14360:18;14399:97;14429:66;14418:9;14399:97;:::i;:::-;14517:39;14547:8;14536:9;14517:39;:::i;:::-;14505:51;;14589:4;14585:9;14578:5;14574:21;14565:30;;14638:4;14628:8;14624:19;14617:5;14614:30;14604:40;;14333:317;;14257:393;;;;;:::o;14656:60::-;14684:3;14705:5;14698:12;;14656:60;;;:::o;14722:142::-;14772:9;14805:53;14823:34;14832:24;14850:5;14832:24;:::i;:::-;14823:34;:::i;:::-;14805:53;:::i;:::-;14792:66;;14722:142;;;:::o;14870:75::-;14913:3;14934:5;14927:12;;14870:75;;;:::o;14951:269::-;15061:39;15092:7;15061:39;:::i;:::-;15122:91;15171:41;15195:16;15171:41;:::i;:::-;15163:6;15156:4;15150:11;15122:91;:::i;:::-;15116:4;15109:105;15027:193;14951:269;;;:::o;15226:73::-;15271:3;15226:73;:::o;15305:189::-;15382:32;;:::i;:::-;15423:65;15481:6;15473;15467:4;15423:65;:::i;:::-;15358:136;15305:189;;:::o;15500:186::-;15560:120;15577:3;15570:5;15567:14;15560:120;;;15631:39;15668:1;15661:5;15631:39;:::i;:::-;15604:1;15597:5;15593:13;15584:22;;15560:120;;;15500:186;;:::o;15692:543::-;15793:2;15788:3;15785:11;15782:446;;;15827:38;15859:5;15827:38;:::i;:::-;15911:29;15929:10;15911:29;:::i;:::-;15901:8;15897:44;16094:2;16082:10;16079:18;16076:49;;;16115:8;16100:23;;16076:49;16138:80;16194:22;16212:3;16194:22;:::i;:::-;16184:8;16180:37;16167:11;16138:80;:::i;:::-;15797:431;;15782:446;15692:543;;;:::o;16241:117::-;16295:8;16345:5;16339:4;16335:16;16314:37;;16241:117;;;;:::o;16364:169::-;16408:6;16441:51;16489:1;16485:6;16477:5;16474:1;16470:13;16441:51;:::i;:::-;16437:56;16522:4;16516;16512:15;16502:25;;16415:118;16364:169;;;;:::o;16538:295::-;16614:4;16760:29;16785:3;16779:4;16760:29;:::i;:::-;16752:37;;16822:3;16819:1;16815:11;16809:4;16806:21;16798:29;;16538:295;;;;:::o;16838:1395::-;16955:37;16988:3;16955:37;:::i;:::-;17057:18;17049:6;17046:30;17043:56;;;17079:18;;:::i;:::-;17043:56;17123:38;17155:4;17149:11;17123:38;:::i;:::-;17208:67;17268:6;17260;17254:4;17208:67;:::i;:::-;17302:1;17326:4;17313:17;;17358:2;17350:6;17347:14;17375:1;17370:618;;;;18032:1;18049:6;18046:77;;;18098:9;18093:3;18089:19;18083:26;18074:35;;18046:77;18149:67;18209:6;18202:5;18149:67;:::i;:::-;18143:4;18136:81;18005:222;17340:887;;17370:618;17422:4;17418:9;17410:6;17406:22;17456:37;17488:4;17456:37;:::i;:::-;17515:1;17529:208;17543:7;17540:1;17537:14;17529:208;;;17622:9;17617:3;17613:19;17607:26;17599:6;17592:42;17673:1;17665:6;17661:14;17651:24;;17720:2;17709:9;17705:18;17692:31;;17566:4;17563:1;17559:12;17554:17;;17529:208;;;17765:6;17756:7;17753:19;17750:179;;;17823:9;17818:3;17814:19;17808:26;17866:48;17908:4;17900:6;17896:17;17885:9;17866:48;:::i;:::-;17858:6;17851:64;17773:156;17750:179;17975:1;17971;17963:6;17959:14;17955:22;17949:4;17942:36;17377:611;;;17340:887;;16930:1303;;;16838:1395;;:::o;18239:172::-;18379:24;18375:1;18367:6;18363:14;18356:48;18239:172;:::o;18417:366::-;18559:3;18580:67;18644:2;18639:3;18580:67;:::i;:::-;18573:74;;18656:93;18745:3;18656:93;:::i;:::-;18774:2;18769:3;18765:12;18758:19;;18417:366;;;:::o;18789:419::-;18955:4;18993:2;18982:9;18978:18;18970:26;;19042:9;19036:4;19032:20;19028:1;19017:9;19013:17;19006:47;19070:131;19196:4;19070:131;:::i;:::-;19062:139;;18789:419;;;:::o;19214:180::-;19262:77;19259:1;19252:88;19359:4;19356:1;19349:15;19383:4;19380:1;19373:15;19400:191;19440:3;19459:20;19477:1;19459:20;:::i;:::-;19454:25;;19493:20;19511:1;19493:20;:::i;:::-;19488:25;;19536:1;19533;19529:9;19522:16;;19557:3;19554:1;19551:10;19548:36;;;19564:18;;:::i;:::-;19548:36;19400:191;;;;:::o;19597:172::-;19737:24;19733:1;19725:6;19721:14;19714:48;19597:172;:::o;19775:366::-;19917:3;19938:67;20002:2;19997:3;19938:67;:::i;:::-;19931:74;;20014:93;20103:3;20014:93;:::i;:::-;20132:2;20127:3;20123:12;20116:19;;19775:366;;;:::o;20147:419::-;20313:4;20351:2;20340:9;20336:18;20328:26;;20400:9;20394:4;20390:20;20386:1;20375:9;20371:17;20364:47;20428:131;20554:4;20428:131;:::i;:::-;20420:139;;20147:419;;;:::o;20572:172::-;20712:24;20708:1;20700:6;20696:14;20689:48;20572:172;:::o;20750:366::-;20892:3;20913:67;20977:2;20972:3;20913:67;:::i;:::-;20906:74;;20989:93;21078:3;20989:93;:::i;:::-;21107:2;21102:3;21098:12;21091:19;;20750:366;;;:::o;21122:419::-;21288:4;21326:2;21315:9;21311:18;21303:26;;21375:9;21369:4;21365:20;21361:1;21350:9;21346:17;21339:47;21403:131;21529:4;21403:131;:::i;:::-;21395:139;;21122:419;;;:::o;21547:410::-;21587:7;21610:20;21628:1;21610:20;:::i;:::-;21605:25;;21644:20;21662:1;21644:20;:::i;:::-;21639:25;;21699:1;21696;21692:9;21721:30;21739:11;21721:30;:::i;:::-;21710:41;;21900:1;21891:7;21887:15;21884:1;21881:22;21861:1;21854:9;21834:83;21811:139;;21930:18;;:::i;:::-;21811:139;21595:362;21547:410;;;;:::o;21963:172::-;22103:24;22099:1;22091:6;22087:14;22080:48;21963:172;:::o;22141:366::-;22283:3;22304:67;22368:2;22363:3;22304:67;:::i;:::-;22297:74;;22380:93;22469:3;22380:93;:::i;:::-;22498:2;22493:3;22489:12;22482:19;;22141:366;;;:::o;22513:419::-;22679:4;22717:2;22706:9;22702:18;22694:26;;22766:9;22760:4;22756:20;22752:1;22741:9;22737:17;22730:47;22794:131;22920:4;22794:131;:::i;:::-;22786:139;;22513:419;;;:::o;22938:148::-;23040:11;23077:3;23062:18;;22938:148;;;;:::o;23092:390::-;23198:3;23226:39;23259:5;23226:39;:::i;:::-;23281:89;23363:6;23358:3;23281:89;:::i;:::-;23274:96;;23379:65;23437:6;23432:3;23425:4;23418:5;23414:16;23379:65;:::i;:::-;23469:6;23464:3;23460:16;23453:23;;23202:280;23092:390;;;;:::o;23488:435::-;23668:3;23690:95;23781:3;23772:6;23690:95;:::i;:::-;23683:102;;23802:95;23893:3;23884:6;23802:95;:::i;:::-;23795:102;;23914:3;23907:10;;23488:435;;;;;:::o;23929:225::-;24069:34;24065:1;24057:6;24053:14;24046:58;24138:8;24133:2;24125:6;24121:15;24114:33;23929:225;:::o;24160:366::-;24302:3;24323:67;24387:2;24382:3;24323:67;:::i;:::-;24316:74;;24399:93;24488:3;24399:93;:::i;:::-;24517:2;24512:3;24508:12;24501:19;;24160:366;;;:::o;24532:419::-;24698:4;24736:2;24725:9;24721:18;24713:26;;24785:9;24779:4;24775:20;24771:1;24760:9;24756:17;24749:47;24813:131;24939:4;24813:131;:::i;:::-;24805:139;;24532:419;;;:::o;24957:182::-;25097:34;25093:1;25085:6;25081:14;25074:58;24957:182;:::o;25145:366::-;25287:3;25308:67;25372:2;25367:3;25308:67;:::i;:::-;25301:74;;25384:93;25473:3;25384:93;:::i;:::-;25502:2;25497:3;25493:12;25486:19;;25145:366;;;:::o;25517:419::-;25683:4;25721:2;25710:9;25706:18;25698:26;;25770:9;25764:4;25760:20;25756:1;25745:9;25741:17;25734:47;25798:131;25924:4;25798:131;:::i;:::-;25790:139;;25517:419;;;:::o;25942:98::-;25993:6;26027:5;26021:12;26011:22;;25942:98;;;:::o;26046:168::-;26129:11;26163:6;26158:3;26151:19;26203:4;26198:3;26194:14;26179:29;;26046:168;;;;:::o;26220:373::-;26306:3;26334:38;26366:5;26334:38;:::i;:::-;26388:70;26451:6;26446:3;26388:70;:::i;:::-;26381:77;;26467:65;26525:6;26520:3;26513:4;26506:5;26502:16;26467:65;:::i;:::-;26557:29;26579:6;26557:29;:::i;:::-;26552:3;26548:39;26541:46;;26310:283;26220:373;;;;:::o;26599:640::-;26794:4;26832:3;26821:9;26817:19;26809:27;;26846:71;26914:1;26903:9;26899:17;26890:6;26846:71;:::i;:::-;26927:72;26995:2;26984:9;26980:18;26971:6;26927:72;:::i;:::-;27009;27077:2;27066:9;27062:18;27053:6;27009:72;:::i;:::-;27128:9;27122:4;27118:20;27113:2;27102:9;27098:18;27091:48;27156:76;27227:4;27218:6;27156:76;:::i;:::-;27148:84;;26599:640;;;;;;;:::o;27245:141::-;27301:5;27332:6;27326:13;27317:22;;27348:32;27374:5;27348:32;:::i;:::-;27245:141;;;;:::o;27392:349::-;27461:6;27510:2;27498:9;27489:7;27485:23;27481:32;27478:119;;;27516:79;;:::i;:::-;27478:119;27636:1;27661:63;27716:7;27707:6;27696:9;27692:22;27661:63;:::i;:::-;27651:73;;27607:127;27392:349;;;;:::o

Swarm Source

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