ETH Price: $2,971.43 (+2.44%)
Gas: 1 Gwei

Token

LeprechaunTown_WTF (LTWTF)
 

Overview

Max Total Supply

7,772 LTWTF

Holders

2,017

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 LTWTF
0x8b7cc8672c76382983956b3ba76947f081416b9b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ĴỮŞŦ Δ βỮŇĆĦ Ø₣ Ł€ƤŘ€ĆĦΔỮŇŞ ŴĦØ ŁØV€ ŦØ ĐŘƗŇҜ β€€Ř ΔŇĐ ĆĦΔŞ€ ǤØβŁƗŇŞ

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LeprechaunTown_WTF

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license
File 1 of 9 : LeprechaunTown_WTF.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
/* 
     .-. .-.
    (   |   )
  .-.:  |  ;,-.
 (_ __`.|.'_ __)
 (    ./Y\.    )
  `-.-' | `-.-'
        \ gas optimized mint
       */
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";

interface IERC721ABurnable is IERC721A {
    function burn(uint256 tokenId) external;
}

contract LeprechaunTown_WTF is Ownable, ERC721AQueryable, ReentrancyGuard, IERC721ABurnable {
    using Address for *;
    string private _baseTokenURI;
    uint256 public immutable maxSupply = 7777; // 🍀
    uint256 public immutable maxFree = 6000;
    uint256 public reserved = 100;
    uint256 public immutable freeLimit = 2;
    uint256 public immutable buyLimit = 5;
    uint256 public immutable phase2price = 0.03 ether;
    string public contractURI; /// @dev collection metadata

    constructor() ERC721A("LeprechaunTown_WTF", "LTWTF") {}

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

    ///@dev mint nft 🍀
    function mint() public payable nonReentrant {
        require(_totalMinted() != 0, "sale has not started");
        require(!msg.sender.isContract(), "please no contract");
        require(msg.sender == tx.origin, "please be yourself");
        uint64 userAlreadyMintedFree = _getAux(msg.sender);
        uint256 amount;
        if (_totalMinted() + reserved >= maxFree) {
            require(msg.value >= phase2price, "forgot eth attachment");
            amount = msg.value / phase2price;
            require(msg.value == phase2price * amount, "unnecessary");
            require(_numberMinted(msg.sender) + amount - userAlreadyMintedFree <= buyLimit, "limit 5");
        } else {
            require(userAlreadyMintedFree == 0, "dont be greedy, thats what got us here");
            amount = freeLimit;
            _setAux(msg.sender, uint64(freeLimit));
        }
        require(amount != 0, "amount is zero");
        _mint(msg.sender, amount);
        require(_totalMinted() <= maxSupply - reserved, "minting is finished");
    }

    ///@dev burn nft
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }

    // mint from reserved 100
    function devMint(uint256 quantity) external onlyOwner {
        require(quantity <= reserved, "no more reserved");
        require(quantity != 0, "no more to reserve");
        reserved -= quantity;
        _mint(msg.sender, quantity);
        require(_totalMinted() <= maxSupply - reserved, "that would exceed max supply");
    }

    /// @dev admin can get ether out
    function getEther(address to, uint256 amount) public onlyOwner {
        if (amount == 0) {
            amount = address(this).balance;
        }
        payable(to).sendValue(amount);
    }

    ///@dev admin can get all ether out
    function withdrawEther() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    /// @dev admin can get token (it happens..)
    function getToken(
        address tokenAddr,
        address to,
        uint256 amount
    ) public onlyOwner {
        IERC20 token = IERC20(tokenAddr);
        if (amount == 0) {
            amount = token.balanceOf(address(this));
        }
        token.transfer(to, amount);
    }

    /// @dev see https://docs.opensea.io/docs/contract-level-metadata
    function setContractUri(string memory collectionUri) public onlyOwner {
        contractURI = collectionUri;
    }

    /// @dev see https://docs.opensea.io/docs/metadata-standards
    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    // view functions for dapp etc

    ///@dev amount user minted
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    ///@dev amount user burned
    function numberBurned(address owner) public view returns (uint256) {
        return _numberBurned(owner);
    }

    ///@dev amount user minted during free mint
    function numberFreeMinted(address owner) public view returns (uint256) {
        return uint256(_getAux(owner));
    }

    ///@dev total number of nfts minted
    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    ///@dev total number of nfts burned
    function totalBurned() public view returns (uint256) {
        return _totalBurned();
    }

    ///@dev nft exists and has not been burned
    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }

    ///@dev view raw ownership data (address, startTimestamp, burned)
    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return _ownershipOf(tokenId);
    }
} // ts22

interface IERC20 {
    function transfer(address to, uint256 amount) external;

    function balanceOf(address account) external view returns (uint256);
}

File 2 of 9 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 3 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 5 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 7 of 9 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 8 of 9 : 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 9 of 9 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

    // ==============================
    //            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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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
    ) external;

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeLimit","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddr","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getToken","outputs":[],"stateMutability":"nonpayable","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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"collectionUri","type":"string"}],"name":"setContractUri","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610120604052611e6160805261177060a0526064600b55600260c052600560e052666a94d74f430000610100523480156200003957600080fd5b50604051806040016040528060128152602001712632b83932b1b430bab72a37bbb72fabaa2360711b81525060405180604001604052806005815260200164262a2baa2360d91b8152506200009d62000097620000db60201b60201c565b620000df565b8151620000b29060039060208501906200012f565b508051620000c89060049060208401906200012f565b5050600060019081556009555062000211565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013d90620001d5565b90600052602060002090601f016020900481019282620001615760008555620001ac565b82601f106200017c57805160ff1916838001178555620001ac565b82800160010185558215620001ac579182015b82811115620001ac5782518255916020019190600101906200018f565b50620001ba929150620001be565b5090565b5b80821115620001ba5760008155600101620001bf565b600181811c90821680620001ea57607f821691505b6020821081036200020b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051612d726200028e600039600081816105e201528181610c9401528181610d070152610d340152600081816105170152610dba01526000818161040f0152610efe0152600081816104a30152610c580152600081816107b801528181610f8d01526111700152612d726000f3fe6080604052600436106102dc5760003560e01c80637ec3e9cf11610184578063c23dc68f116100d6578063dc33e6811161008a578063e985e9c511610064578063e985e9c51461085d578063f2fde38b146108a6578063fe60d12c146108c657600080fd5b8063dc33e681146107ef578063e5a519521461080f578063e8a3d4851461084857600080fd5b8063ccb4807b116100bb578063ccb4807b14610786578063d5abeb01146107a6578063d89135cd146107da57600080fd5b8063c23dc68f14610746578063c87b56dd1461076657600080fd5b806399a2557a11610138578063a22cb46511610112578063a22cb465146106f1578063a2309ff814610711578063b88d4fde1461072657600080fd5b806399a2557a146106915780639c4380e7146106b1578063a079c56a146106d157600080fd5b80638da5cb5b116101695780638da5cb5b146106315780639231ab2a1461064f57806395d89b411461067c57600080fd5b80637ec3e9cf146105d05780638462151c1461060457600080fd5b806342842e0e1161023d578063589210d9116101f157806370a08231116101cb57806370a0823114610586578063715018a6146105a65780637362377b146105bb57600080fd5b8063589210d9146105055780635bbb2177146105395780636352211e1461056657600080fd5b8063485a68a311610222578063485a68a3146104915780634f558e79146104c557806355f804b3146104e557600080fd5b806342842e0e1461045157806342966c681461047157600080fd5b806318160ddd116102945780632478d639116102795780632478d639146103dd578063269bbebd146103fd578063375a069a1461043157600080fd5b806318160ddd1461039a57806323b872dd146103bd57600080fd5b8063081812fc116102c5578063081812fc14610338578063095ea7b3146103705780631249c58b1461039257600080fd5b806301ffc9a7146102e157806306fdde0314610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612690565b6108dc565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061032b61092e565b60405161030d9190612705565b34801561034457600080fd5b50610358610353366004612718565b6109c0565b6040516001600160a01b03909116815260200161030d565b34801561037c57600080fd5b5061039061038b36600461274d565b610a04565b005b610390610af3565b3480156103a657600080fd5b50600254600154035b60405190815260200161030d565b3480156103c957600080fd5b506103906103d8366004612777565b61100b565b3480156103e957600080fd5b506103af6103f83660046127b3565b61101b565b34801561040957600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000081565b34801561043d57600080fd5b5061039061044c366004612718565b611049565b34801561045d57600080fd5b5061039061046c366004612777565b6111e8565b34801561047d57600080fd5b5061039061048c366004612718565b611203565b34801561049d57600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104d157600080fd5b506103016104e0366004612718565b61120e565b3480156104f157600080fd5b506103906105003660046127ce565b611219565b34801561051157600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000081565b34801561054557600080fd5b50610559610554366004612887565b61127f565b60405161030d919061292d565b34801561057257600080fd5b50610358610581366004612718565b611346565b34801561059257600080fd5b506103af6105a13660046127b3565b611351565b3480156105b257600080fd5b506103906113a0565b3480156105c757600080fd5b50610390611406565b3480156105dc57600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000081565b34801561061057600080fd5b5061062461061f3660046127b3565b6114f8565b60405161030d9190612998565b34801561063d57600080fd5b506000546001600160a01b0316610358565b34801561065b57600080fd5b5061066f61066a366004612718565b6115f2565b60405161030d91906129d0565b34801561068857600080fd5b5061032b611618565b34801561069d57600080fd5b506106246106ac366004612a06565b611627565b3480156106bd57600080fd5b506103906106cc366004612777565b6117a1565b3480156106dd57600080fd5b506103906106ec36600461274d565b6118d8565b3480156106fd57600080fd5b5061039061070c366004612a39565b611954565b34801561071d57600080fd5b506103af6119e9565b34801561073257600080fd5b50610390610741366004612acd565b6119f9565b34801561075257600080fd5b5061066f610761366004612718565b611a43565b34801561077257600080fd5b5061032b610781366004612718565b611aac565b34801561079257600080fd5b506103906107a1366004612b49565b611b2f565b3480156107b257600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000081565b3480156107e657600080fd5b506103af611b9c565b3480156107fb57600080fd5b506103af61080a3660046127b3565b611ba7565b34801561081b57600080fd5b506103af61082a3660046127b3565b6001600160a01b031660009081526006602052604090205460c01c90565b34801561085457600080fd5b5061032b611bd2565b34801561086957600080fd5b50610301610878366004612b92565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108b257600080fd5b506103906108c13660046127b3565b611c60565b3480156108d257600080fd5b506103af600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061090d57506380ac58cd60e01b6001600160e01b03198316145b806109285750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461093d90612bc5565b80601f016020809104026020016040519081016040528092919081815260200182805461096990612bc5565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b5050505050905090565b60006109cb82611d3f565b6109e8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a0f82611d67565b9050806001600160a01b0316836001600160a01b031603610a435760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a97576001600160a01b038116600090815260086020908152604080832033845290915290205460ff16610a97576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260095403610b4a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955600154600003610ba15760405162461bcd60e51b815260206004820152601460248201527f73616c6520686173206e6f7420737461727465640000000000000000000000006044820152606401610b41565b333b15610bf05760405162461bcd60e51b815260206004820152601260248201527f706c65617365206e6f20636f6e747261637400000000000000000000000000006044820152606401610b41565b333214610c3f5760405162461bcd60e51b815260206004820152601260248201527f706c6561736520626520796f757273656c6600000000000000000000000000006044820152606401610b41565b3360009081526006602052604081205460c01c905060007f0000000000000000000000000000000000000000000000000000000000000000600b54610c8360015490565b610c8d9190612c15565b10610e52577f0000000000000000000000000000000000000000000000000000000000000000341015610d025760405162461bcd60e51b815260206004820152601560248201527f666f72676f7420657468206174746163686d656e7400000000000000000000006044820152606401610b41565b610d2c7f000000000000000000000000000000000000000000000000000000000000000034612c2d565b9050610d58817f0000000000000000000000000000000000000000000000000000000000000000612c4f565b3414610da65760405162461bcd60e51b815260206004820152600b60248201527f756e6e65636573736172790000000000000000000000000000000000000000006044820152606401610b41565b3360009081526006602052604090819020547f00000000000000000000000000000000000000000000000000000000000000009167ffffffffffffffff8086169285921c16610df59190612c15565b610dff9190612c6e565b1115610e4d5760405162461bcd60e51b815260206004820152600760248201527f6c696d69742035000000000000000000000000000000000000000000000000006044820152606401610b41565b610f2a565b67ffffffffffffffff821615610ed05760405162461bcd60e51b815260206004820152602660248201527f646f6e74206265206772656564792c207468617473207768617420676f74207560448201527f73206865726500000000000000000000000000000000000000000000000000006064820152608401610b41565b50336000908152600660205260409020805477ffffffffffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000060c081901b919091179091555b80600003610f7a5760405162461bcd60e51b815260206004820152600e60248201527f616d6f756e74206973207a65726f0000000000000000000000000000000000006044820152606401610b41565b610f843382611dce565b600b54610fb1907f0000000000000000000000000000000000000000000000000000000000000000612c6e565b60015411156110025760405162461bcd60e51b815260206004820152601360248201527f6d696e74696e672069732066696e6973686564000000000000000000000000006044820152606401610b41565b50506001600955565b611016838383611eaf565b505050565b6000610928826001600160a01b031660009081526006602052604090205460801c67ffffffffffffffff1690565b6000546001600160a01b031633146110a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b600b548111156110f55760405162461bcd60e51b815260206004820152601060248201527f6e6f206d6f7265207265736572766564000000000000000000000000000000006044820152606401610b41565b806000036111455760405162461bcd60e51b815260206004820152601260248201527f6e6f206d6f726520746f207265736572766500000000000000000000000000006044820152606401610b41565b80600b60008282546111579190612c6e565b9091555061116790503382611dce565b600b54611194907f0000000000000000000000000000000000000000000000000000000000000000612c6e565b60015411156111e55760405162461bcd60e51b815260206004820152601c60248201527f7468617420776f756c6420657863656564206d617820737570706c79000000006044820152606401610b41565b50565b611016838383604051806020016040528060008152506119f9565b6111e5816001612074565b600061092882611d3f565b6000546001600160a01b031633146112735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b611016600a838361256d565b805160609060008167ffffffffffffffff81111561129f5761129f612840565b6040519080825280602002602001820160405280156112ea57816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816112bd5790505b50905060005b82811461133e5761131985828151811061130c5761130c612c85565b6020026020010151611a43565b82828151811061132b5761132b612c85565b60209081029190910101526001016112f0565b509392505050565b600061092882611d67565b60006001600160a01b03821661137a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146113fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b61140460006121eb565b565b6000546001600160a01b031633146114605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b604051600090339047908381818185875af1925050503d80600081146114a2576040519150601f19603f3d011682016040523d82523d6000602084013e6114a7565b606091505b50509050806111e55760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610b41565b6060600080600061150885611351565b905060008167ffffffffffffffff81111561152557611525612840565b60405190808252806020026020018201604052801561154e578160200160208202803683370190505b50604080516060810182526000808252602082018190529181018290529192505b8386146115e65761157f8161223b565b915081604001516115de5781516001600160a01b03161561159f57815194505b876001600160a01b0316856001600160a01b0316036115de57808387806001019850815181106115d1576115d1612c85565b6020026020010181815250505b60010161156f565b50909695505050505050565b6040805160608101825260008082526020820181905291810191909152610928826122a6565b60606004805461093d90612bc5565b606081831061164957604051631960ccad60e11b815260040160405180910390fd5b60008061165560015490565b905080841115611663578093505b600061166e87611351565b90508486101561168d5785850381811015611687578091505b50611691565b5060005b60008167ffffffffffffffff8111156116ac576116ac612840565b6040519080825280602002602001820160405280156116d5578160200160208202803683370190505b509050816000036116eb57935061179a92505050565b60006116f688611a43565b905060008160400151611707575080515b885b8881141580156117195750848714155b1561178e576117278161223b565b925082604001516117865782516001600160a01b03161561174757825191505b8a6001600160a01b0316826001600160a01b031603611786578084888060010199508151811061177957611779612c85565b6020026020010181815250505b600101611709565b50505092835250909150505b9392505050565b6000546001600160a01b031633146117fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b826000829003611870576040516370a0823160e01b81523060048201526001600160a01b038216906370a0823190602401602060405180830381865afa158015611849573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186d9190612c9b565b91505b60405163a9059cbb60e01b81526001600160a01b0384811660048301526024820184905282169063a9059cbb90604401600060405180830381600087803b1580156118ba57600080fd5b505af11580156118ce573d6000803e3d6000fd5b5050505050505050565b6000546001600160a01b031633146119325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b8060000361193d5750475b6119506001600160a01b0383168261230a565b5050565b336001600160a01b0383160361197d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006119f460015490565b905090565b611a04848484611eaf565b6001600160a01b0383163b15611a3d57611a2084848484612423565b611a3d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506001548310611a885792915050565b611a918361223b565b9050806040015115611aa35792915050565b61179a836122a6565b6060611ab782611d3f565b611ad457604051630a14c4b560e41b815260040160405180910390fd5b6000611ade61250f565b90508051600003611afe576040518060200160405280600081525061179a565b80611b088461251e565b604051602001611b19929190612cb4565b6040516020818303038152906040529392505050565b6000546001600160a01b03163314611b895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b805161195090600c9060208401906125f1565b60006119f460025490565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610928565b600c8054611bdf90612bc5565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0b90612bc5565b8015611c585780601f10611c2d57610100808354040283529160200191611c58565b820191906000526020600020905b815481529060010190602001808311611c3b57829003601f168201915b505050505081565b6000546001600160a01b03163314611cba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b038116611d365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b41565b6111e5816121eb565b600060015482108015610928575050600090815260056020526040902054600160e01b161590565b600081600154811015611db55760008181526005602052604081205490600160e01b82169003611db3575b8060000361179a575060001901600081815260056020526040902054611d92565b505b604051636f96cda160e11b815260040160405180910390fd5b6001546001600160a01b038316611df757604051622e076360e81b815260040160405180910390fd5b81600003611e185760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e635750600155505050565b6000611eba82611d67565b9050836001600160a01b0316816001600160a01b031614611eed5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f2957506001600160a01b038516600090815260086020908152604080832033845290915290205460ff165b80611f44575033611f39846109c0565b6001600160a01b0316145b905080611f6457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611f8b57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b871781179091558316900361202c5760018301600081815260056020526040812054900361202a57600154811461202a5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600061207f83611d67565b9050808215612101576000336001600160a01b03831614806120c457506001600160a01b038216600090815260086020908152604080832033845290915290205460ff165b806120df5750336120d4866109c0565b6001600160a01b0316145b9050806120ff57604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260076020908152604080832080546001600160a01b03191690556001600160a01b03841683526006825280832080546fffffffffffffffffffffffffffffffff01905586835260059091528120600360e01b4260a01b8417179055600160e11b831690036121a4576001840160008181526005602052604081205490036121a25760015481146121a25760008181526005602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506002805460010190555050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516060810182526000808252602082018190529181019190915260008281526005602052604090205461092890604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b60408051606081018252600080825260208201819052918101919091526109286122cf83611d67565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b8047101561235a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b41565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123a7576040519150601f19603f3d011682016040523d82523d6000602084013e6123ac565b606091505b50509050806110165760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b41565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612458903390899088908890600401612ce3565b6020604051808303816000875af1925050508015612493575060408051601f3d908101601f1916820190925261249091810190612d1f565b60015b6124f1573d8080156124c1576040519150601f19603f3d011682016040523d82523d6000602084013e6124c6565b606091505b5080516000036124e9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461093d90612bc5565b604080516080810191829052607f0190826030600a8206018353600a90045b801561255b57600183039250600a81066030018353600a900461253d565b50819003601f19909101908152919050565b82805461257990612bc5565b90600052602060002090601f01602090048101928261259b57600085556125e1565b82601f106125b45782800160ff198235161785556125e1565b828001600101855582156125e1579182015b828111156125e15782358255916020019190600101906125c6565b506125ed929150612665565b5090565b8280546125fd90612bc5565b90600052602060002090601f01602090048101928261261f57600085556125e1565b82601f1061263857805160ff19168380011785556125e1565b828001600101855582156125e1579182015b828111156125e157825182559160200191906001019061264a565b5b808211156125ed5760008155600101612666565b6001600160e01b0319811681146111e557600080fd5b6000602082840312156126a257600080fd5b813561179a8161267a565b60005b838110156126c85781810151838201526020016126b0565b83811115611a3d5750506000910152565b600081518084526126f18160208601602086016126ad565b601f01601f19169290920160200192915050565b60208152600061179a60208301846126d9565b60006020828403121561272a57600080fd5b5035919050565b80356001600160a01b038116811461274857600080fd5b919050565b6000806040838503121561276057600080fd5b61276983612731565b946020939093013593505050565b60008060006060848603121561278c57600080fd5b61279584612731565b92506127a360208501612731565b9150604084013590509250925092565b6000602082840312156127c557600080fd5b61179a82612731565b600080602083850312156127e157600080fd5b823567ffffffffffffffff808211156127f957600080fd5b818501915085601f83011261280d57600080fd5b81358181111561281c57600080fd5b86602082850101111561282e57600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561287f5761287f612840565b604052919050565b6000602080838503121561289a57600080fd5b823567ffffffffffffffff808211156128b257600080fd5b818501915085601f8301126128c657600080fd5b8135818111156128d8576128d8612840565b8060051b91506128e9848301612856565b818152918301840191848101908884111561290357600080fd5b938501935b8385101561292157843582529385019390850190612908565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156115e65761298583855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b9284019260609290920191600101612949565b6020808252825182820181905260009190848201906040850190845b818110156115e6578351835292840192918401916001016129b4565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608101610928565b600080600060608486031215612a1b57600080fd5b612a2484612731565b95602085013595506040909401359392505050565b60008060408385031215612a4c57600080fd5b612a5583612731565b915060208301358015158114612a6a57600080fd5b809150509250929050565b600067ffffffffffffffff831115612a8f57612a8f612840565b612aa2601f8401601f1916602001612856565b9050828152838383011115612ab657600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215612ae357600080fd5b612aec85612731565b9350612afa60208601612731565b925060408501359150606085013567ffffffffffffffff811115612b1d57600080fd5b8501601f81018713612b2e57600080fd5b612b3d87823560208401612a75565b91505092959194509250565b600060208284031215612b5b57600080fd5b813567ffffffffffffffff811115612b7257600080fd5b8201601f81018413612b8357600080fd5b61250784823560208401612a75565b60008060408385031215612ba557600080fd5b612bae83612731565b9150612bbc60208401612731565b90509250929050565b600181811c90821680612bd957607f821691505b602082108103612bf957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c2857612c28612bff565b500190565b600082612c4a57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612c6957612c69612bff565b500290565b600082821015612c8057612c80612bff565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612cad57600080fd5b5051919050565b60008351612cc68184602088016126ad565b835190830190612cda8183602088016126ad565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d1560808301846126d9565b9695505050505050565b600060208284031215612d3157600080fd5b815161179a8161267a56fea2646970667358221220b3f4b176f50b22a7409681a723fe451dbf5c49fcc5904610b0c3cedced18b70264736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102dc5760003560e01c80637ec3e9cf11610184578063c23dc68f116100d6578063dc33e6811161008a578063e985e9c511610064578063e985e9c51461085d578063f2fde38b146108a6578063fe60d12c146108c657600080fd5b8063dc33e681146107ef578063e5a519521461080f578063e8a3d4851461084857600080fd5b8063ccb4807b116100bb578063ccb4807b14610786578063d5abeb01146107a6578063d89135cd146107da57600080fd5b8063c23dc68f14610746578063c87b56dd1461076657600080fd5b806399a2557a11610138578063a22cb46511610112578063a22cb465146106f1578063a2309ff814610711578063b88d4fde1461072657600080fd5b806399a2557a146106915780639c4380e7146106b1578063a079c56a146106d157600080fd5b80638da5cb5b116101695780638da5cb5b146106315780639231ab2a1461064f57806395d89b411461067c57600080fd5b80637ec3e9cf146105d05780638462151c1461060457600080fd5b806342842e0e1161023d578063589210d9116101f157806370a08231116101cb57806370a0823114610586578063715018a6146105a65780637362377b146105bb57600080fd5b8063589210d9146105055780635bbb2177146105395780636352211e1461056657600080fd5b8063485a68a311610222578063485a68a3146104915780634f558e79146104c557806355f804b3146104e557600080fd5b806342842e0e1461045157806342966c681461047157600080fd5b806318160ddd116102945780632478d639116102795780632478d639146103dd578063269bbebd146103fd578063375a069a1461043157600080fd5b806318160ddd1461039a57806323b872dd146103bd57600080fd5b8063081812fc116102c5578063081812fc14610338578063095ea7b3146103705780631249c58b1461039257600080fd5b806301ffc9a7146102e157806306fdde0314610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612690565b6108dc565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061032b61092e565b60405161030d9190612705565b34801561034457600080fd5b50610358610353366004612718565b6109c0565b6040516001600160a01b03909116815260200161030d565b34801561037c57600080fd5b5061039061038b36600461274d565b610a04565b005b610390610af3565b3480156103a657600080fd5b50600254600154035b60405190815260200161030d565b3480156103c957600080fd5b506103906103d8366004612777565b61100b565b3480156103e957600080fd5b506103af6103f83660046127b3565b61101b565b34801561040957600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000281565b34801561043d57600080fd5b5061039061044c366004612718565b611049565b34801561045d57600080fd5b5061039061046c366004612777565b6111e8565b34801561047d57600080fd5b5061039061048c366004612718565b611203565b34801561049d57600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000177081565b3480156104d157600080fd5b506103016104e0366004612718565b61120e565b3480156104f157600080fd5b506103906105003660046127ce565b611219565b34801561051157600080fd5b506103af7f000000000000000000000000000000000000000000000000000000000000000581565b34801561054557600080fd5b50610559610554366004612887565b61127f565b60405161030d919061292d565b34801561057257600080fd5b50610358610581366004612718565b611346565b34801561059257600080fd5b506103af6105a13660046127b3565b611351565b3480156105b257600080fd5b506103906113a0565b3480156105c757600080fd5b50610390611406565b3480156105dc57600080fd5b506103af7f000000000000000000000000000000000000000000000000006a94d74f43000081565b34801561061057600080fd5b5061062461061f3660046127b3565b6114f8565b60405161030d9190612998565b34801561063d57600080fd5b506000546001600160a01b0316610358565b34801561065b57600080fd5b5061066f61066a366004612718565b6115f2565b60405161030d91906129d0565b34801561068857600080fd5b5061032b611618565b34801561069d57600080fd5b506106246106ac366004612a06565b611627565b3480156106bd57600080fd5b506103906106cc366004612777565b6117a1565b3480156106dd57600080fd5b506103906106ec36600461274d565b6118d8565b3480156106fd57600080fd5b5061039061070c366004612a39565b611954565b34801561071d57600080fd5b506103af6119e9565b34801561073257600080fd5b50610390610741366004612acd565b6119f9565b34801561075257600080fd5b5061066f610761366004612718565b611a43565b34801561077257600080fd5b5061032b610781366004612718565b611aac565b34801561079257600080fd5b506103906107a1366004612b49565b611b2f565b3480156107b257600080fd5b506103af7f0000000000000000000000000000000000000000000000000000000000001e6181565b3480156107e657600080fd5b506103af611b9c565b3480156107fb57600080fd5b506103af61080a3660046127b3565b611ba7565b34801561081b57600080fd5b506103af61082a3660046127b3565b6001600160a01b031660009081526006602052604090205460c01c90565b34801561085457600080fd5b5061032b611bd2565b34801561086957600080fd5b50610301610878366004612b92565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108b257600080fd5b506103906108c13660046127b3565b611c60565b3480156108d257600080fd5b506103af600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061090d57506380ac58cd60e01b6001600160e01b03198316145b806109285750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461093d90612bc5565b80601f016020809104026020016040519081016040528092919081815260200182805461096990612bc5565b80156109b65780601f1061098b576101008083540402835291602001916109b6565b820191906000526020600020905b81548152906001019060200180831161099957829003601f168201915b5050505050905090565b60006109cb82611d3f565b6109e8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610a0f82611d67565b9050806001600160a01b0316836001600160a01b031603610a435760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a97576001600160a01b038116600090815260086020908152604080832033845290915290205460ff16610a97576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260095403610b4a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955600154600003610ba15760405162461bcd60e51b815260206004820152601460248201527f73616c6520686173206e6f7420737461727465640000000000000000000000006044820152606401610b41565b333b15610bf05760405162461bcd60e51b815260206004820152601260248201527f706c65617365206e6f20636f6e747261637400000000000000000000000000006044820152606401610b41565b333214610c3f5760405162461bcd60e51b815260206004820152601260248201527f706c6561736520626520796f757273656c6600000000000000000000000000006044820152606401610b41565b3360009081526006602052604081205460c01c905060007f0000000000000000000000000000000000000000000000000000000000001770600b54610c8360015490565b610c8d9190612c15565b10610e52577f000000000000000000000000000000000000000000000000006a94d74f430000341015610d025760405162461bcd60e51b815260206004820152601560248201527f666f72676f7420657468206174746163686d656e7400000000000000000000006044820152606401610b41565b610d2c7f000000000000000000000000000000000000000000000000006a94d74f43000034612c2d565b9050610d58817f000000000000000000000000000000000000000000000000006a94d74f430000612c4f565b3414610da65760405162461bcd60e51b815260206004820152600b60248201527f756e6e65636573736172790000000000000000000000000000000000000000006044820152606401610b41565b3360009081526006602052604090819020547f00000000000000000000000000000000000000000000000000000000000000059167ffffffffffffffff8086169285921c16610df59190612c15565b610dff9190612c6e565b1115610e4d5760405162461bcd60e51b815260206004820152600760248201527f6c696d69742035000000000000000000000000000000000000000000000000006044820152606401610b41565b610f2a565b67ffffffffffffffff821615610ed05760405162461bcd60e51b815260206004820152602660248201527f646f6e74206265206772656564792c207468617473207768617420676f74207560448201527f73206865726500000000000000000000000000000000000000000000000000006064820152608401610b41565b50336000908152600660205260409020805477ffffffffffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000260c081901b919091179091555b80600003610f7a5760405162461bcd60e51b815260206004820152600e60248201527f616d6f756e74206973207a65726f0000000000000000000000000000000000006044820152606401610b41565b610f843382611dce565b600b54610fb1907f0000000000000000000000000000000000000000000000000000000000001e61612c6e565b60015411156110025760405162461bcd60e51b815260206004820152601360248201527f6d696e74696e672069732066696e6973686564000000000000000000000000006044820152606401610b41565b50506001600955565b611016838383611eaf565b505050565b6000610928826001600160a01b031660009081526006602052604090205460801c67ffffffffffffffff1690565b6000546001600160a01b031633146110a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b600b548111156110f55760405162461bcd60e51b815260206004820152601060248201527f6e6f206d6f7265207265736572766564000000000000000000000000000000006044820152606401610b41565b806000036111455760405162461bcd60e51b815260206004820152601260248201527f6e6f206d6f726520746f207265736572766500000000000000000000000000006044820152606401610b41565b80600b60008282546111579190612c6e565b9091555061116790503382611dce565b600b54611194907f0000000000000000000000000000000000000000000000000000000000001e61612c6e565b60015411156111e55760405162461bcd60e51b815260206004820152601c60248201527f7468617420776f756c6420657863656564206d617820737570706c79000000006044820152606401610b41565b50565b611016838383604051806020016040528060008152506119f9565b6111e5816001612074565b600061092882611d3f565b6000546001600160a01b031633146112735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b611016600a838361256d565b805160609060008167ffffffffffffffff81111561129f5761129f612840565b6040519080825280602002602001820160405280156112ea57816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816112bd5790505b50905060005b82811461133e5761131985828151811061130c5761130c612c85565b6020026020010151611a43565b82828151811061132b5761132b612c85565b60209081029190910101526001016112f0565b509392505050565b600061092882611d67565b60006001600160a01b03821661137a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146113fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b61140460006121eb565b565b6000546001600160a01b031633146114605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b604051600090339047908381818185875af1925050503d80600081146114a2576040519150601f19603f3d011682016040523d82523d6000602084013e6114a7565b606091505b50509050806111e55760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610b41565b6060600080600061150885611351565b905060008167ffffffffffffffff81111561152557611525612840565b60405190808252806020026020018201604052801561154e578160200160208202803683370190505b50604080516060810182526000808252602082018190529181018290529192505b8386146115e65761157f8161223b565b915081604001516115de5781516001600160a01b03161561159f57815194505b876001600160a01b0316856001600160a01b0316036115de57808387806001019850815181106115d1576115d1612c85565b6020026020010181815250505b60010161156f565b50909695505050505050565b6040805160608101825260008082526020820181905291810191909152610928826122a6565b60606004805461093d90612bc5565b606081831061164957604051631960ccad60e11b815260040160405180910390fd5b60008061165560015490565b905080841115611663578093505b600061166e87611351565b90508486101561168d5785850381811015611687578091505b50611691565b5060005b60008167ffffffffffffffff8111156116ac576116ac612840565b6040519080825280602002602001820160405280156116d5578160200160208202803683370190505b509050816000036116eb57935061179a92505050565b60006116f688611a43565b905060008160400151611707575080515b885b8881141580156117195750848714155b1561178e576117278161223b565b925082604001516117865782516001600160a01b03161561174757825191505b8a6001600160a01b0316826001600160a01b031603611786578084888060010199508151811061177957611779612c85565b6020026020010181815250505b600101611709565b50505092835250909150505b9392505050565b6000546001600160a01b031633146117fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b826000829003611870576040516370a0823160e01b81523060048201526001600160a01b038216906370a0823190602401602060405180830381865afa158015611849573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186d9190612c9b565b91505b60405163a9059cbb60e01b81526001600160a01b0384811660048301526024820184905282169063a9059cbb90604401600060405180830381600087803b1580156118ba57600080fd5b505af11580156118ce573d6000803e3d6000fd5b5050505050505050565b6000546001600160a01b031633146119325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b8060000361193d5750475b6119506001600160a01b0383168261230a565b5050565b336001600160a01b0383160361197d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006119f460015490565b905090565b611a04848484611eaf565b6001600160a01b0383163b15611a3d57611a2084848484612423565b611a3d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506001548310611a885792915050565b611a918361223b565b9050806040015115611aa35792915050565b61179a836122a6565b6060611ab782611d3f565b611ad457604051630a14c4b560e41b815260040160405180910390fd5b6000611ade61250f565b90508051600003611afe576040518060200160405280600081525061179a565b80611b088461251e565b604051602001611b19929190612cb4565b6040516020818303038152906040529392505050565b6000546001600160a01b03163314611b895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b805161195090600c9060208401906125f1565b60006119f460025490565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610928565b600c8054611bdf90612bc5565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0b90612bc5565b8015611c585780601f10611c2d57610100808354040283529160200191611c58565b820191906000526020600020905b815481529060010190602001808311611c3b57829003601f168201915b505050505081565b6000546001600160a01b03163314611cba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b41565b6001600160a01b038116611d365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b41565b6111e5816121eb565b600060015482108015610928575050600090815260056020526040902054600160e01b161590565b600081600154811015611db55760008181526005602052604081205490600160e01b82169003611db3575b8060000361179a575060001901600081815260056020526040902054611d92565b505b604051636f96cda160e11b815260040160405180910390fd5b6001546001600160a01b038316611df757604051622e076360e81b815260040160405180910390fd5b81600003611e185760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611e635750600155505050565b6000611eba82611d67565b9050836001600160a01b0316816001600160a01b031614611eed5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f2957506001600160a01b038516600090815260086020908152604080832033845290915290205460ff165b80611f44575033611f39846109c0565b6001600160a01b0316145b905080611f6457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611f8b57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b871781179091558316900361202c5760018301600081815260056020526040812054900361202a57600154811461202a5760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600061207f83611d67565b9050808215612101576000336001600160a01b03831614806120c457506001600160a01b038216600090815260086020908152604080832033845290915290205460ff165b806120df5750336120d4866109c0565b6001600160a01b0316145b9050806120ff57604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260076020908152604080832080546001600160a01b03191690556001600160a01b03841683526006825280832080546fffffffffffffffffffffffffffffffff01905586835260059091528120600360e01b4260a01b8417179055600160e11b831690036121a4576001840160008181526005602052604081205490036121a25760015481146121a25760008181526005602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506002805460010190555050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516060810182526000808252602082018190529181019190915260008281526005602052604090205461092890604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b60408051606081018252600080825260208201819052918101919091526109286122cf83611d67565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b8047101561235a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610b41565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123a7576040519150601f19603f3d011682016040523d82523d6000602084013e6123ac565b606091505b50509050806110165760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b41565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612458903390899088908890600401612ce3565b6020604051808303816000875af1925050508015612493575060408051601f3d908101601f1916820190925261249091810190612d1f565b60015b6124f1573d8080156124c1576040519150601f19603f3d011682016040523d82523d6000602084013e6124c6565b606091505b5080516000036124e9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461093d90612bc5565b604080516080810191829052607f0190826030600a8206018353600a90045b801561255b57600183039250600a81066030018353600a900461253d565b50819003601f19909101908152919050565b82805461257990612bc5565b90600052602060002090601f01602090048101928261259b57600085556125e1565b82601f106125b45782800160ff198235161785556125e1565b828001600101855582156125e1579182015b828111156125e15782358255916020019190600101906125c6565b506125ed929150612665565b5090565b8280546125fd90612bc5565b90600052602060002090601f01602090048101928261261f57600085556125e1565b82601f1061263857805160ff19168380011785556125e1565b828001600101855582156125e1579182015b828111156125e157825182559160200191906001019061264a565b5b808211156125ed5760008155600101612666565b6001600160e01b0319811681146111e557600080fd5b6000602082840312156126a257600080fd5b813561179a8161267a565b60005b838110156126c85781810151838201526020016126b0565b83811115611a3d5750506000910152565b600081518084526126f18160208601602086016126ad565b601f01601f19169290920160200192915050565b60208152600061179a60208301846126d9565b60006020828403121561272a57600080fd5b5035919050565b80356001600160a01b038116811461274857600080fd5b919050565b6000806040838503121561276057600080fd5b61276983612731565b946020939093013593505050565b60008060006060848603121561278c57600080fd5b61279584612731565b92506127a360208501612731565b9150604084013590509250925092565b6000602082840312156127c557600080fd5b61179a82612731565b600080602083850312156127e157600080fd5b823567ffffffffffffffff808211156127f957600080fd5b818501915085601f83011261280d57600080fd5b81358181111561281c57600080fd5b86602082850101111561282e57600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561287f5761287f612840565b604052919050565b6000602080838503121561289a57600080fd5b823567ffffffffffffffff808211156128b257600080fd5b818501915085601f8301126128c657600080fd5b8135818111156128d8576128d8612840565b8060051b91506128e9848301612856565b818152918301840191848101908884111561290357600080fd5b938501935b8385101561292157843582529385019390850190612908565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156115e65761298583855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b9284019260609290920191600101612949565b6020808252825182820181905260009190848201906040850190845b818110156115e6578351835292840192918401916001016129b4565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608101610928565b600080600060608486031215612a1b57600080fd5b612a2484612731565b95602085013595506040909401359392505050565b60008060408385031215612a4c57600080fd5b612a5583612731565b915060208301358015158114612a6a57600080fd5b809150509250929050565b600067ffffffffffffffff831115612a8f57612a8f612840565b612aa2601f8401601f1916602001612856565b9050828152838383011115612ab657600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215612ae357600080fd5b612aec85612731565b9350612afa60208601612731565b925060408501359150606085013567ffffffffffffffff811115612b1d57600080fd5b8501601f81018713612b2e57600080fd5b612b3d87823560208401612a75565b91505092959194509250565b600060208284031215612b5b57600080fd5b813567ffffffffffffffff811115612b7257600080fd5b8201601f81018413612b8357600080fd5b61250784823560208401612a75565b60008060408385031215612ba557600080fd5b612bae83612731565b9150612bbc60208401612731565b90509250929050565b600181811c90821680612bd957607f821691505b602082108103612bf957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c2857612c28612bff565b500190565b600082612c4a57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612c6957612c69612bff565b500290565b600082821015612c8057612c80612bff565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612cad57600080fd5b5051919050565b60008351612cc68184602088016126ad565b835190830190612cda8183602088016126ad565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d1560808301846126d9565b9695505050505050565b600060208284031215612d3157600080fd5b815161179a8161267a56fea2646970667358221220b3f4b176f50b22a7409681a723fe451dbf5c49fcc5904610b0c3cedced18b70264736f6c634300080e0033

Deployed Bytecode Sourcemap

511:4524:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:5;;;;;;;;;;-1:-1:-1;4880:607:5;;;;;:::i;:::-;;:::i;:::-;;;565:14:9;;558:22;540:41;;528:2;513:18;4880:607:5;;;;;;;;9768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11769:200::-;;;;;;;;;;-1:-1:-1;11769:200:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:55:9;;;1674:74;;1662:2;1647:18;11769:200:5;1528:226:9;11245:463:5;;;;;;;;;;-1:-1:-1;11245:463:5;;;;;:::i;:::-;;:::i;:::-;;1211:1036:4;;;:::i;3963:309:5:-;;;;;;;;;;-1:-1:-1;4225:12:5;;4209:13;;:28;3963:309;;;2365:25:9;;;2353:2;2338:18;3963:309:5;2219:177:9;12629:164:5;;;;;;;;;;-1:-1:-1;12629:164:5;;;;;:::i;:::-;;:::i;4113:111:4:-;;;;;;;;;;-1:-1:-1;4113:111:4;;;;;:::i;:::-;;:::i;803:38::-;;;;;;;;;;;;;;;2402:330;;;;;;;;;;-1:-1:-1;2402:330:4;;;;;:::i;:::-;;:::i;12859:179:5:-;;;;;;;;;;-1:-1:-1;12859:179:5;;;;;:::i;:::-;;:::i;2274:92:4:-;;;;;;;;;;-1:-1:-1;2274:92:4;;;;;:::i;:::-;;:::i;723:39::-;;;;;;;;;;;;;;;4723:100;;;;;;;;;;-1:-1:-1;4723:100:4;;;;;:::i;:::-;;:::i;3788:104::-;;;;;;;;;;-1:-1:-1;3788:104:4;;;;;:::i;:::-;;:::i;847:37::-;;;;;;;;;;;;;;;1502:459:7;;;;;;;;;;-1:-1:-1;1502:459:7;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9564:142:5:-;;;;;;;;;;-1:-1:-1;9564:142:5;;;;;:::i;:::-;;:::i;5546:221::-;;;;;;;;;;-1:-1:-1;5546:221:5;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;3011:175:4:-;;;;;;;;;;;;;:::i;890:49::-;;;;;;;;;;;;;;;5220:871:7;;;;;;;;;;-1:-1:-1;5220:871:7;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;4899:134:4;;;;;;;;;;-1:-1:-1;4899:134:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9930:102:5:-;;;;;;;;;;;;;:::i;2337:2446:7:-;;;;;;;;;;-1:-1:-1;2337:2446:7;;;;;:::i;:::-;;:::i;3240:287:4:-;;;;;;;;;;-1:-1:-1;3240:287:4;;;;;:::i;:::-;;:::i;2775:190::-;;;;;;;;;;-1:-1:-1;2775:190:4;;;;;:::i;:::-;;:::i;12036:303:5:-;;;;;;;;;;-1:-1:-1;12036:303:5;;;;;:::i;:::-;;:::i;4442:91:4:-;;;;;;;;;;;;;:::i;13104:385:5:-;;;;;;;;;;-1:-1:-1;13104:385:5;;;;;:::i;:::-;;:::i;939:410:7:-;;;;;;;;;;-1:-1:-1;939:410:7;;;;;:::i;:::-;;:::i;10098:313:5:-;;;;;;;;;;-1:-1:-1;10098:313:5;;;;;:::i;:::-;;:::i;3603:114:4:-;;;;;;;;;;-1:-1:-1;3603:114:4;;;;;:::i;:::-;;:::i;668:41::-;;;;;;;;;;;;;;;4579:91;;;;;;;;;;;;;:::i;3965:111::-;;;;;;;;;;-1:-1:-1;3965:111:4;;;;;:::i;:::-;;:::i;4278:118::-;;;;;;;;;;-1:-1:-1;4278:118:4;;;;;:::i;:::-;-1:-1:-1;;;;;6485:25:5;4340:7:4;6485:25:5;;;:18;:25;;;;;;1379:3;6485:39;;4278:118:4;945:25;;;;;;;;;;;;;:::i;12405:162:5:-;;;;;;;;;;-1:-1:-1;12405:162:5;;;;;:::i;:::-;-1:-1:-1;;;;;12525:25:5;;;12502:4;12525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12405:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;768:29:4:-;;;;;;;;;;;;;;;;4880:607:5;4965:4;-1:-1:-1;;;;;;;;;5260:25:5;;;;:101;;-1:-1:-1;;;;;;;;;;5336:25:5;;;5260:101;:177;;;-1:-1:-1;;;;;;;;;;5412:25:5;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:5:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11769:200::-;11837:7;11861:16;11869:7;11861;:16::i;:::-;11856:64;;11886:34;;-1:-1:-1;;;11886:34:5;;;;;;;;;;;11856:64;-1:-1:-1;11938:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;11938:24:5;;11769:200::o;11245:463::-;11317:13;11349:27;11368:7;11349:18;:27::i;:::-;11317:61;;11398:5;-1:-1:-1;;;;;11392:11:5;:2;-1:-1:-1;;;;;11392:11:5;;11388:48;;11412:24;;-1:-1:-1;;;11412:24:5;;;;;;;;;;;11388:48;27446:10;-1:-1:-1;;;;;11451:28:5;;;11447:172;;-1:-1:-1;;;;;12525:25:5;;12502:4;12525:25;;;:18;:25;;;;;;;;27446:10;12525:35;;;;;;;;;;11493:126;;11569:35;;-1:-1:-1;;;11569:35:5;;;;;;;;;;;11493:126;11629:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11629:29:5;-1:-1:-1;;;;;11629:29:5;;;;;;;;;11673:28;;11629:24;;11673:28;;;;;;;11307:401;11245:463;;:::o;1211:1036:4:-;1744:1:1;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:1;;9897:2:9;2317:63:1;;;9879:21:9;9936:2;9916:18;;;9909:30;9975:33;9955:18;;;9948:61;10026:18;;2317:63:1;;;;;;;;;1744:1;2455:7;:18;4596:13:5;;1291:1:4::1;1273:19:::0;1265:52:::1;;;::::0;-1:-1:-1;;;1265:52:4;;10257:2:9;1265:52:4::1;::::0;::::1;10239:21:9::0;10296:2;10276:18;;;10269:30;10335:22;10315:18;;;10308:50;10375:18;;1265:52:4::1;10055:344:9::0;1265:52:4::1;1336:10;1465:19:2::0;:23;1327:55:4::1;;;::::0;-1:-1:-1;;;1327:55:4;;10606:2:9;1327:55:4::1;::::0;::::1;10588:21:9::0;10645:2;10625:18;;;10618:30;10684:20;10664:18;;;10657:48;10722:18;;1327:55:4::1;10404:342:9::0;1327:55:4::1;1400:10;1414:9;1400:23;1392:54;;;::::0;-1:-1:-1;;;1392:54:4;;10953:2:9;1392:54:4::1;::::0;::::1;10935:21:9::0;10992:2;10972:18;;;10965:30;11031:20;11011:18;;;11004:48;11069:18;;1392:54:4::1;10751:342:9::0;1392:54:4::1;1495:10;1456:28;6485:25:5::0;;;:18;:25;;;;;;1379:3;6485:39;1456:50:4::1;;1516:14;1573:7;1561:8;;1544:14;4596:13:5::0;;;4365:279;1544:14:4::1;:25;;;;:::i;:::-;:36;1540:538;;1617:11;1604:9;:24;;1596:58;;;::::0;-1:-1:-1;;;1596:58:4;;11565:2:9;1596:58:4::1;::::0;::::1;11547:21:9::0;11604:2;11584:18;;;11577:30;11643:23;11623:18;;;11616:51;11684:18;;1596:58:4::1;11363:345:9::0;1596:58:4::1;1677:23;1689:11;1677:9;:23;:::i;:::-;1668:32:::0;-1:-1:-1;1735:20:4::1;1668:32:::0;1735:11:::1;:20;:::i;:::-;1722:9;:33;1714:57;;;::::0;-1:-1:-1;;;1714:57:4;;12310:2:9;1714:57:4::1;::::0;::::1;12292:21:9::0;12349:2;12329:18;;;12322:30;12388:13;12368:18;;;12361:41;12419:18;;1714:57:4::1;12108:335:9::0;1714:57:4::1;1807:10;5905:7:5::0;5932:25;;;:18;:25;;1151:2;5932:25;;;;;1855:8:4::1;::::0;1793:58:::1;::::0;;::::1;::::0;1821:6;;5932:49:5;5931:80;1793:34:4::1;;;;:::i;:::-;:58;;;;:::i;:::-;:70;;1785:90;;;::::0;-1:-1:-1;;;1785:90:4;;12780:2:9;1785:90:4::1;::::0;::::1;12762:21:9::0;12819:1;12799:18;;;12792:29;12857:9;12837:18;;;12830:37;12884:18;;1785:90:4::1;12578:330:9::0;1785:90:4::1;1540:538;;;1914:26;::::0;::::1;::::0;1906:77:::1;;;::::0;-1:-1:-1;;;1906:77:4;;13115:2:9;1906:77:4::1;::::0;::::1;13097:21:9::0;13154:2;13134:18;;;13127:30;13193:34;13173:18;;;13166:62;13264:8;13244:18;;;13237:36;13290:19;;1906:77:4::1;12913:402:9::0;1906:77:4::1;-1:-1:-1::0;2037:10:4::1;6777:14:5::0;6794:25;;;:18;:25;;;;;;;1520:14;6953:31;2006:9:4::1;1379:3:5::0;6989:23;;;6952:61;;;;7023:34;;;2029:38:4::1;2095:6;2105:1;2095:11:::0;2087:38:::1;;;::::0;-1:-1:-1;;;2087:38:4;;13522:2:9;2087:38:4::1;::::0;::::1;13504:21:9::0;13561:2;13541:18;;;13534:30;13600:16;13580:18;;;13573:44;13634:18;;2087:38:4::1;13320:338:9::0;2087:38:4::1;2135:25;2141:10;2153:6;2135:5;:25::i;:::-;2208:8;::::0;2196:20:::1;::::0;:9:::1;:20;:::i;:::-;4596:13:5::0;;2178:38:4::1;;2170:70;;;::::0;-1:-1:-1;;;2170:70:4;;13865:2:9;2170:70:4::1;::::0;::::1;13847:21:9::0;13904:2;13884:18;;;13877:30;13943:21;13923:18;;;13916:49;13982:18;;2170:70:4::1;13663:343:9::0;2170:70:4::1;-1:-1:-1::0;;1701:1:1;2628:7;:22;1211:1036:4:o;12629:164:5:-;12758:28;12768:4;12774:2;12778:7;12758:9;:28::i;:::-;12629:164;;;:::o;4113:111:4:-;4171:7;4197:20;4211:5;-1:-1:-1;;;;;6199:25:5;6172:7;6199:25;;;:18;:25;;;;;;1274:3;6199:49;1017:13;6198:80;;6111:174;2402:330:4;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14213:2:9;1240:68:0;;;14195:21:9;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;1240:68:0;14011:356:9;1240:68:0;2486:8:4::1;;2474;:20;;2466:49;;;::::0;-1:-1:-1;;;2466:49:4;;14574:2:9;2466:49:4::1;::::0;::::1;14556:21:9::0;14613:2;14593:18;;;14586:30;14652:18;14632;;;14625:46;14688:18;;2466:49:4::1;14372:340:9::0;2466:49:4::1;2533:8;2545:1;2533:13:::0;2525:44:::1;;;::::0;-1:-1:-1;;;2525:44:4;;14919:2:9;2525:44:4::1;::::0;::::1;14901:21:9::0;14958:2;14938:18;;;14931:30;14997:20;14977:18;;;14970:48;15035:18;;2525:44:4::1;14717:342:9::0;2525:44:4::1;2591:8;2579;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;2609:27:4::1;::::0;-1:-1:-1;2615:10:4::1;2627:8:::0;2609:5:::1;:27::i;:::-;2684:8;::::0;2672:20:::1;::::0;:9:::1;:20;:::i;:::-;4596:13:5::0;;2654:38:4::1;;2646:79;;;::::0;-1:-1:-1;;;2646:79:4;;15266:2:9;2646:79:4::1;::::0;::::1;15248:21:9::0;15305:2;15285:18;;;15278:30;15344;15324:18;;;15317:58;15392:18;;2646:79:4::1;15064:352:9::0;2646:79:4::1;2402:330:::0;:::o;12859:179:5:-;12992:39;13009:4;13015:2;13019:7;12992:39;;;;;;;;;;;;:16;:39::i;2274:92:4:-;2339:20;2345:7;2354:4;2339:5;:20::i;4723:100::-;4777:4;4800:16;4808:7;4800;:16::i;3788:104::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14213:2:9;1240:68:0;;;14195:21:9;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;1240:68:0;14011:356:9;1240:68:0;3862:23:4::1;:13;3878:7:::0;;3862:23:::1;:::i;1502:459:7:-:0;1675:15;;1591:23;;1650:22;1675:15;1741:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1741:36:7;;-1:-1:-1;;1741:36:7;;;;;;;;;;;;1704:73;;1796:9;1791:123;1812:14;1807:1;:19;1791:123;;1867:32;1887:8;1896:1;1887:11;;;;;;;;:::i;:::-;;;;;;;1867:19;:32::i;:::-;1851:10;1862:1;1851:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1828:3;;1791:123;;;-1:-1:-1;1934:10:7;1502:459;-1:-1:-1;;;1502:459:7:o;9564:142:5:-;9628:7;9670:27;9689:7;9670:18;:27::i;5546:221::-;5610:7;-1:-1:-1;;;;;5633:19:5;;5629:60;;5661:28;;-1:-1:-1;;;5661:28:5;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:5;;;;;:18;:25;;;;;;1017:13;5706:54;;5546:221::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14213:2:9;1240:68:0;;;14195:21:9;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;1240:68:0;14011:356:9;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;3011:175:4:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14213:2:9;1240:68:0;;;14195:21:9;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;1240:68:0;14011:356:9;1240:68:0;3084:49:4::1;::::0;3066:12:::1;::::0;3084:10:::1;::::0;3107:21:::1;::::0;3066:12;3084:49;3066:12;3084:49;3107:21;3084:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3065:68;;;3151:7;3143:36;;;::::0;-1:-1:-1;;;3143:36:4;;15965:2:9;3143:36:4::1;::::0;::::1;15947:21:9::0;16004:2;15984:18;;;15977:30;16043:18;16023;;;16016:46;16079:18;;3143:36:4::1;15763:340:9::0;5220:871:7;5290:16;5342:19;5375:25;5414:22;5439:16;5449:5;5439:9;:16::i;:::-;5414:41;;5469:25;5511:14;5497:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5497:29:7;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;5469:57:7;;-1:-1:-1;5585:461:7;5634:14;5619:11;:29;5585:461;;5685:15;5698:1;5685:12;:15::i;:::-;5673:27;;5722:9;:16;;;5762:8;5718:71;5810:14;;-1:-1:-1;;;;;5810:28:7;;5806:109;;5882:14;;;-1:-1:-1;5806:109:7;5957:5;-1:-1:-1;;;;;5936:26:7;:17;-1:-1:-1;;;;;5936:26:7;;5932:100;;6012:1;5986:8;5995:13;;;;;;5986:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;5932:100;5650:3;;5585:461;;;-1:-1:-1;6066:8:7;;5220:871;-1:-1:-1;;;;;;5220:871:7:o;4899:134:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;5005:21:4;5018:7;5005:12;:21::i;9930:102:5:-;9986:13;10018:7;10011:14;;;;;:::i;2337:2446:7:-;2468:16;2533:4;2524:5;:13;2520:45;;2546:19;;-1:-1:-1;;;2546:19:7;;;;;;;;;;;2520:45;2579:19;2612:17;2632:14;3739:13:5;;;3666:93;2632:14:7;2612:34;-1:-1:-1;2877:9:7;2870:4;:16;2866:71;;;2913:9;2906:16;;2866:71;2950:25;2978:16;2988:5;2978:9;:16::i;:::-;2950:44;;3169:4;3161:5;:12;3157:271;;;3215:12;;;3249:31;;;3245:109;;;3324:11;3304:31;;3245:109;3175:193;3157:271;;;-1:-1:-1;3412:1:7;3157:271;3441:25;3483:17;3469:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3469:32:7;;3441:60;;3519:17;3540:1;3519:22;3515:76;;3568:8;-1:-1:-1;3561:15:7;;-1:-1:-1;;;3561:15:7;3515:76;3732:31;3766:26;3786:5;3766:19;:26::i;:::-;3732:60;;3806:25;4048:9;:16;;;4043:90;;-1:-1:-1;4104:14:7;;4043:90;4163:5;4146:467;4175:4;4170:1;:9;;:45;;;;;4198:17;4183:11;:32;;4170:45;4146:467;;;4252:15;4265:1;4252:12;:15::i;:::-;4240:27;;4289:9;:16;;;4329:8;4285:71;4377:14;;-1:-1:-1;;;;;4377:28:7;;4373:109;;4449:14;;;-1:-1:-1;4373:109:7;4524:5;-1:-1:-1;;;;;4503:26:7;:17;-1:-1:-1;;;;;4503:26:7;;4499:100;;4579:1;4553:8;4562:13;;;;;;4553:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4499:100;4217:3;;4146:467;;;-1:-1:-1;;;4695:29:7;;;-1:-1:-1;4702:8:7;;-1:-1:-1;;2337:2446:7;;;;;;:::o;3240:287:4:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14213:2:9;1240:68:0;;;14195:21:9;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;1240:68:0;14011:356:9;1240:68:0;3384:9:4;3362:12:::1;3408:11:::0;;;3404:81:::1;;3444:30;::::0;-1:-1:-1;;;3444:30:4;;3468:4:::1;3444:30;::::0;::::1;1674:74:9::0;-1:-1:-1;;;;;3444:15:4;::::1;::::0;::::1;::::0;1647:18:9;;3444:30:4::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3435:39;;3404:81;3494:26;::::0;-1:-1:-1;;;3494:26:4;;-1:-1:-1;;;;;16489:55:9;;;3494:26:4::1;::::0;::::1;16471:74:9::0;16561:18;;;16554:34;;;3494:14:4;::::1;::::0;::::1;::::0;16444:18:9;;3494:26:4::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;3352:175;3240:287:::0;;;:::o;2775:190::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14213:2:9;1240:68:0;;;14195:21:9;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;1240:68:0;14011:356:9;1240:68:0;2852:6:4::1;2862:1;2852:11:::0;2848:72:::1;;-1:-1:-1::0;2888:21:4::1;2848:72;2929:29;-1:-1:-1::0;;;;;2929:21:4;::::1;2951:6:::0;2929:21:::1;:29::i;:::-;2775:190:::0;;:::o;12036:303:5:-;27446:10;-1:-1:-1;;;;;12134:31:5;;;12130:61;;12174:17;;-1:-1:-1;;;12174:17:5;;;;;;;;;;;12130:61;27446:10;12202:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12202:49:5;;;;;;;;;;;;:60;;-1:-1:-1;;12202:60:5;;;;;;;;;;12277:55;;540:41:9;;;12202:49:5;;27446:10;12277:55;;513:18:9;12277:55:5;;;;;;;12036:303;;:::o;4442:91:4:-;4486:7;4512:14;4596:13:5;;;4365:279;4512:14:4;4505:21;;4442:91;:::o;13104:385:5:-;13265:28;13275:4;13281:2;13285:7;13265:9;:28::i;:::-;-1:-1:-1;;;;;13307:14:5;;;:19;13303:180;;13345:56;13376:4;13382:2;13386:7;13395:5;13345:30;:56::i;:::-;13340:143;;13428:40;;-1:-1:-1;;;13428:40:5;;;;;;;;;;;13340:143;13104:385;;;;:::o;939:410:7:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3739:13:5;;1122:7:7;:25;1089:101;;1170:9;939:410;-1:-1:-1;;939:410:7:o;1089:101::-;1211:21;1224:7;1211:12;:21::i;:::-;1199:33;;1246:9;:16;;;1242:63;;;1285:9;939:410;-1:-1:-1;;939:410:7:o;1242:63::-;1321:21;1334:7;1321:12;:21::i;10098:313:5:-;10171:13;10201:16;10209:7;10201;:16::i;:::-;10196:59;;10226:29;;-1:-1:-1;;;10226:29:5;;;;;;;;;;;10196:59;10266:21;10290:10;:8;:10::i;:::-;10266:34;;10323:7;10317:21;10342:1;10317:26;:87;;;;;;;;;;;;;;;;;10370:7;10379:18;10389:7;10379:9;:18::i;:::-;10353:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10310:94;10098:313;-1:-1:-1;;;10098:313:5:o;3603:114:4:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14213:2:9;1240:68:0;;;14195:21:9;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;1240:68:0;14011:356:9;1240:68:0;3683:27:4;;::::1;::::0;:11:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;4579:91::-:0;4623:7;4649:14;4794:12:5;;;4721:92;3965:111:4;-1:-1:-1;;;;;5932:25:5;;4023:7:4;5932:25:5;;;:18;:25;;1151:2;5932:25;;;;1017:13;5932:49;;5931:80;4049:20:4;5844:174:5;945:25:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;27446:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;14213:2:9;1240:68:0;;;14195:21:9;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;1240:68:0;14011:356:9;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;17276:2:9;1998:73:0::1;::::0;::::1;17258:21:9::0;17315:2;17295:18;;;17288:30;17354:34;17334:18;;;17327:62;17425:8;17405:18;;;17398:36;17451:19;;1998:73:0::1;17074:402:9::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;13735:268:5:-:0;13792:4;13879:13;;13869:7;:23;13827:150;;;;-1:-1:-1;;13929:26:5;;;;:17;:26;;;;;;-1:-1:-1;;;13929:43:5;:48;;13735:268::o;7141:1105::-;7208:7;7242;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;;-1:-1:-1;;;7481:23:5;;:28;;7477:687;;7992:111;7999:6;8009:1;7999:11;7992:111;;-1:-1:-1;;;8069:6:5;8051:25;;;;:17;:25;;;;;;7992:111;;7477:687;7355:827;7329:853;8208:31;;-1:-1:-1;;;8208:31:5;;;;;;;;;;;16975:1618;17062:13;;-1:-1:-1;;;;;17089:16:5;;17085:48;;17114:19;;-1:-1:-1;;;17114:19:5;;;;;;;;;;;17085:48;17147:8;17159:1;17147:13;17143:44;;17169:18;;-1:-1:-1;;;17169:18:5;;;;;;;;;;;17143:44;-1:-1:-1;;;;;17723:22:5;;;;;;:18;:22;;;;1151:2;17723:22;;;:70;;17761:31;17749:44;;17723:70;;;18029:31;;;:17;:31;;;;;18120:15;1656:3;18120:41;18079:83;;-1:-1:-1;18197:13:5;;1913:3;18182:56;18079:160;18029:210;;:31;18317:23;;;18355:109;18381:40;;18406:14;;;;;-1:-1:-1;;;;;18381:40:5;;;18398:1;;18381:40;;18398:1;;18381:40;18459:3;18444:12;:18;18355:109;;-1:-1:-1;18478:13:5;:28;12629:164;;;:::o;18835:2460::-;18945:27;18975;18994:7;18975:18;:27::i;:::-;18945:57;;19058:4;-1:-1:-1;;;;;19017:45:5;19033:19;-1:-1:-1;;;;;19017:45:5;;19013:86;;19071:28;;-1:-1:-1;;;19071:28:5;;;;;;;;;;;19013:86;19110:22;27446:10;-1:-1:-1;;;;;19136:27:5;;;;:86;;-1:-1:-1;;;;;;12525:25:5;;12502:4;12525:25;;;:18;:25;;;;;;;;27446:10;12525:35;;;;;;;;;;19179:43;19136:145;;;-1:-1:-1;27446:10:5;19238:20;19250:7;19238:11;:20::i;:::-;-1:-1:-1;;;;;19238:43:5;;19136:145;19110:172;;19298:17;19293:66;;19324:35;;-1:-1:-1;;;19324:35:5;;;;;;;;;;;19293:66;-1:-1:-1;;;;;19373:16:5;;19369:52;;19398:23;;-1:-1:-1;;;19398:23:5;;;;;;;;;;;19369:52;19545:24;;;;:15;:24;;;;;;;;19538:31;;-1:-1:-1;;;;;;19538:31:5;;;-1:-1:-1;;;;;19930:24:5;;;;;:18;:24;;;;;19928:26;;-1:-1:-1;;19928:26:5;;;19998:22;;;;;;;19996:24;;-1:-1:-1;19996:24:5;;;20284:26;;;:17;:26;;;;;-1:-1:-1;;;20370:15:5;1656:3;20370:41;20329:83;;:126;;20284:171;;;20572:46;;:51;;20568:616;;20675:1;20665:11;;20643:19;20796:30;;;:17;:30;;;;;;:35;;20792:378;;20932:13;;20917:11;:28;20913:239;;21077:30;;;;:17;:30;;;;;:52;;;20913:239;20625:559;20568:616;21228:7;21224:2;-1:-1:-1;;;;;21209:27:5;21218:4;-1:-1:-1;;;;;21209:27:5;;;;;;;;;;;18935:2360;;18835:2460;;;:::o;21672:2747::-;21751:27;21781;21800:7;21781:18;:27::i;:::-;21751:57;-1:-1:-1;21751:57:5;21882:305;;;;21915:22;27446:10;-1:-1:-1;;;;;21941:27:5;;;;:90;;-1:-1:-1;;;;;;12525:25:5;;12502:4;12525:25;;;:18;:25;;;;;;;;27446:10;12525:35;;;;;;;;;;21988:43;21941:153;;;-1:-1:-1;27446:10:5;22051:20;22063:7;22051:11;:20::i;:::-;-1:-1:-1;;;;;22051:43:5;;21941:153;21915:180;;22115:17;22110:66;;22141:35;;-1:-1:-1;;;22141:35:5;;;;;;;;;;;22110:66;21901:286;21882:305;22318:24;;;;:15;:24;;;;;;;;22311:31;;-1:-1:-1;;;;;;22311:31:5;;;-1:-1:-1;;;;;22919:24:5;;;;:18;:24;;;;;:59;;22947:31;22919:59;;;23209:26;;;:17;:26;;;;;-1:-1:-1;;;23297:15:5;1656:3;23297:41;23254:85;;:162;23209:207;;-1:-1:-1;;;23533:46:5;;:51;;23529:616;;23636:1;23626:11;;23604:19;23757:30;;;:17;:30;;;;;;:35;;23753:378;;23893:13;;23878:11;:28;23874:239;;24038:30;;;;:17;:30;;;;;:52;;;23874:239;23586:559;23529:616;24170:35;;24197:7;;24193:1;;-1:-1:-1;;;;;24170:35:5;;;;;24193:1;;24170:35;-1:-1:-1;;24388:12:5;:14;;;;;;-1:-1:-1;;21672:2747:5:o;2270:187:0:-;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2333:124;2270:187;:::o;8712:151:5:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;8831:24:5;;;;:17;:24;;;;;;8812:44;;-1:-1:-1;;;;;;;;;;;;;8444:41:5;;;;1656:3;8529:32;;;8495:67;;-1:-1:-1;;;8495:67:5;-1:-1:-1;;;8591:23:5;;;:28;;-1:-1:-1;;;8572:47:5;-1:-1:-1;8335:291:5;9351:156;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9453:47:5;9472:27;9491:7;9472:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;8444:41:5;;;;1656:3;8529:32;;;8495:67;;-1:-1:-1;;;8495:67:5;-1:-1:-1;;;8591:23:5;;;:28;;-1:-1:-1;;;8572:47:5;-1:-1:-1;8335:291:5;2412:312:2;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:2;;17683:2:9;2493:73:2;;;17665:21:9;17722:2;17702:18;;;17695:30;17761:31;17741:18;;;17734:59;17810:18;;2493:73:2;17481:353:9;2493:73:2;2578:12;2596:9;-1:-1:-1;;;;;2596:14:2;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:2;;18041:2:9;2639:78:2;;;18023:21:9;18080:2;18060:18;;;18053:30;18119:34;18099:18;;;18092:62;18190:28;18170:18;;;18163:56;18236:19;;2639:78:2;17839:422:9;24900:697:5;25078:88;;-1:-1:-1;;;25078:88:5;;25058:4;;-1:-1:-1;;;;;25078:45:5;;;;;:88;;27446:10;;25145:4;;25151:7;;25160:5;;25078:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25078:88:5;;;;;;;;-1:-1:-1;;25078:88:5;;;;;;;;;;;;:::i;:::-;;;25074:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25356:6;:13;25373:1;25356:18;25352:229;;25401:40;;-1:-1:-1;;;25401:40:5;;;;;;;;;;;25352:229;25541:6;25535:13;25526:6;25522:2;25518:15;25511:38;25074:517;-1:-1:-1;;;;;;25234:64:5;-1:-1:-1;;;25234:64:5;;-1:-1:-1;25074:517:5;24900:697;;;;;;:::o;1067:112:4:-;1127:13;1159;1152:20;;;;;:::i;27564:1920:5:-;28029:4;28023:11;;28036:3;28019:21;;28112:17;;;;28796:11;;;28677:5;28926:2;28940;28930:13;;28922:22;28796:11;28909:36;28980:2;28970:13;;28570:668;28998:4;28570:668;;;29169:1;29164:3;29160:11;29153:18;;29219:2;29213:4;29209:13;29205:2;29201:22;29196:3;29188:36;29092:2;29082:13;;28570:668;;;-1:-1:-1;29278:13:5;;;-1:-1:-1;;29391:12:5;;;29449:19;;;29391:12;27564:1920;-1:-1:-1;27564:1920:5:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:9;-1:-1:-1;;;;;;88:32:9;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:9;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:9;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:9:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:9;;1343:180;-1:-1:-1;1343:180:9:o;1759:196::-;1827:20;;-1:-1:-1;;;;;1876:54:9;;1866:65;;1856:93;;1945:1;1942;1935:12;1856:93;1759:196;;;:::o;1960:254::-;2028:6;2036;2089:2;2077:9;2068:7;2064:23;2060:32;2057:52;;;2105:1;2102;2095:12;2057:52;2128:29;2147:9;2128:29;:::i;:::-;2118:39;2204:2;2189:18;;;;2176:32;;-1:-1:-1;;;1960:254:9:o;2401:328::-;2478:6;2486;2494;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2586:29;2605:9;2586:29;:::i;:::-;2576:39;;2634:38;2668:2;2657:9;2653:18;2634:38;:::i;:::-;2624:48;;2719:2;2708:9;2704:18;2691:32;2681:42;;2401:328;;;;;:::o;2734:186::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2885:29;2904:9;2885:29;:::i;2925:592::-;2996:6;3004;3057:2;3045:9;3036:7;3032:23;3028:32;3025:52;;;3073:1;3070;3063:12;3025:52;3113:9;3100:23;3142:18;3183:2;3175:6;3172:14;3169:34;;;3199:1;3196;3189:12;3169:34;3237:6;3226:9;3222:22;3212:32;;3282:7;3275:4;3271:2;3267:13;3263:27;3253:55;;3304:1;3301;3294:12;3253:55;3344:2;3331:16;3370:2;3362:6;3359:14;3356:34;;;3386:1;3383;3376:12;3356:34;3431:7;3426:2;3417:6;3413:2;3409:15;3405:24;3402:37;3399:57;;;3452:1;3449;3442:12;3399:57;3483:2;3475:11;;;;;3505:6;;-1:-1:-1;2925:592:9;;-1:-1:-1;;;;2925:592:9:o;3522:127::-;3583:10;3578:3;3574:20;3571:1;3564:31;3614:4;3611:1;3604:15;3638:4;3635:1;3628:15;3654:275;3725:2;3719:9;3790:2;3771:13;;-1:-1:-1;;3767:27:9;3755:40;;3825:18;3810:34;;3846:22;;;3807:62;3804:88;;;3872:18;;:::i;:::-;3908:2;3901:22;3654:275;;-1:-1:-1;3654:275:9:o;3934:946::-;4018:6;4049:2;4092;4080:9;4071:7;4067:23;4063:32;4060:52;;;4108:1;4105;4098:12;4060:52;4148:9;4135:23;4177:18;4218:2;4210:6;4207:14;4204:34;;;4234:1;4231;4224:12;4204:34;4272:6;4261:9;4257:22;4247:32;;4317:7;4310:4;4306:2;4302:13;4298:27;4288:55;;4339:1;4336;4329:12;4288:55;4375:2;4362:16;4397:2;4393;4390:10;4387:36;;;4403:18;;:::i;:::-;4449:2;4446:1;4442:10;4432:20;;4472:28;4496:2;4492;4488:11;4472:28;:::i;:::-;4534:15;;;4604:11;;;4600:20;;;4565:12;;;;4632:19;;;4629:39;;;4664:1;4661;4654:12;4629:39;4688:11;;;;4708:142;4724:6;4719:3;4716:15;4708:142;;;4790:17;;4778:30;;4741:12;;;;4828;;;;4708:142;;;4869:5;3934:946;-1:-1:-1;;;;;;;;3934:946:9:o;5191:724::-;5426:2;5478:21;;;5548:13;;5451:18;;;5570:22;;;5397:4;;5426:2;5649:15;;;;5623:2;5608:18;;;5397:4;5692:197;5706:6;5703:1;5700:13;5692:197;;;5755:52;5803:3;5794:6;5788:13;4969:12;;-1:-1:-1;;;;;4965:61:9;4953:74;;5080:4;5069:16;;;5063:23;5088:18;5059:48;5043:14;;;5036:72;5171:4;5160:16;;;5154:23;5147:31;5140:39;5124:14;;5117:63;4885:301;5755:52;5864:15;;;;5836:4;5827:14;;;;;5728:1;5721:9;5692:197;;5920:632;6091:2;6143:21;;;6213:13;;6116:18;;;6235:22;;;6062:4;;6091:2;6314:15;;;;6288:2;6273:18;;;6062:4;6357:169;6371:6;6368:1;6365:13;6357:169;;;6432:13;;6420:26;;6501:15;;;;6466:12;;;;6393:1;6386:9;6357:169;;6557:267;4969:12;;-1:-1:-1;;;;;4965:61:9;4953:74;;5080:4;5069:16;;;5063:23;5088:18;5059:48;5043:14;;;5036:72;5171:4;5160:16;;;5154:23;5147:31;5140:39;5124:14;;;5117:63;6755:2;6740:18;;6767:51;4885:301;6829:322;6906:6;6914;6922;6975:2;6963:9;6954:7;6950:23;6946:32;6943:52;;;6991:1;6988;6981:12;6943:52;7014:29;7033:9;7014:29;:::i;:::-;7004:39;7090:2;7075:18;;7062:32;;-1:-1:-1;7141:2:9;7126:18;;;7113:32;;6829:322;-1:-1:-1;;;6829:322:9:o;7156:347::-;7221:6;7229;7282:2;7270:9;7261:7;7257:23;7253:32;7250:52;;;7298:1;7295;7288:12;7250:52;7321:29;7340:9;7321:29;:::i;:::-;7311:39;;7400:2;7389:9;7385:18;7372:32;7447:5;7440:13;7433:21;7426:5;7423:32;7413:60;;7469:1;7466;7459:12;7413:60;7492:5;7482:15;;;7156:347;;;;;:::o;7508:406::-;7572:5;7606:18;7598:6;7595:30;7592:56;;;7628:18;;:::i;:::-;7666:57;7711:2;7690:15;;-1:-1:-1;;7686:29:9;7717:4;7682:40;7666:57;:::i;:::-;7657:66;;7746:6;7739:5;7732:21;7786:3;7777:6;7772:3;7768:16;7765:25;7762:45;;;7803:1;7800;7793:12;7762:45;7852:6;7847:3;7840:4;7833:5;7829:16;7816:43;7906:1;7899:4;7890:6;7883:5;7879:18;7875:29;7868:40;7508:406;;;;;:::o;7919:666::-;8014:6;8022;8030;8038;8091:3;8079:9;8070:7;8066:23;8062:33;8059:53;;;8108:1;8105;8098:12;8059:53;8131:29;8150:9;8131:29;:::i;:::-;8121:39;;8179:38;8213:2;8202:9;8198:18;8179:38;:::i;:::-;8169:48;;8264:2;8253:9;8249:18;8236:32;8226:42;;8319:2;8308:9;8304:18;8291:32;8346:18;8338:6;8335:30;8332:50;;;8378:1;8375;8368:12;8332:50;8401:22;;8454:4;8446:13;;8442:27;-1:-1:-1;8432:55:9;;8483:1;8480;8473:12;8432:55;8506:73;8571:7;8566:2;8553:16;8548:2;8544;8540:11;8506:73;:::i;:::-;8496:83;;;7919:666;;;;;;;:::o;8590:450::-;8659:6;8712:2;8700:9;8691:7;8687:23;8683:32;8680:52;;;8728:1;8725;8718:12;8680:52;8768:9;8755:23;8801:18;8793:6;8790:30;8787:50;;;8833:1;8830;8823:12;8787:50;8856:22;;8909:4;8901:13;;8897:27;-1:-1:-1;8887:55:9;;8938:1;8935;8928:12;8887:55;8961:73;9026:7;9021:2;9008:16;9003:2;8999;8995:11;8961:73;:::i;9045:260::-;9113:6;9121;9174:2;9162:9;9153:7;9149:23;9145:32;9142:52;;;9190:1;9187;9180:12;9142:52;9213:29;9232:9;9213:29;:::i;:::-;9203:39;;9261:38;9295:2;9284:9;9280:18;9261:38;:::i;:::-;9251:48;;9045:260;;;;;:::o;9310:380::-;9389:1;9385:12;;;;9432;;;9453:61;;9507:4;9499:6;9495:17;9485:27;;9453:61;9560:2;9552:6;9549:14;9529:18;9526:38;9523:161;;9606:10;9601:3;9597:20;9594:1;9587:31;9641:4;9638:1;9631:15;9669:4;9666:1;9659:15;9523:161;;9310:380;;;:::o;11098:127::-;11159:10;11154:3;11150:20;11147:1;11140:31;11190:4;11187:1;11180:15;11214:4;11211:1;11204:15;11230:128;11270:3;11301:1;11297:6;11294:1;11291:13;11288:39;;;11307:18;;:::i;:::-;-1:-1:-1;11343:9:9;;11230:128::o;11713:217::-;11753:1;11779;11769:132;;11823:10;11818:3;11814:20;11811:1;11804:31;11858:4;11855:1;11848:15;11886:4;11883:1;11876:15;11769:132;-1:-1:-1;11915:9:9;;11713:217::o;11935:168::-;11975:7;12041:1;12037;12033:6;12029:14;12026:1;12023:21;12018:1;12011:9;12004:17;12000:45;11997:71;;;12048:18;;:::i;:::-;-1:-1:-1;12088:9:9;;11935:168::o;12448:125::-;12488:4;12516:1;12513;12510:8;12507:34;;;12521:18;;:::i;:::-;-1:-1:-1;12558:9:9;;12448:125::o;15421:127::-;15482:10;15477:3;15473:20;15470:1;15463:31;15513:4;15510:1;15503:15;15537:4;15534:1;15527:15;16108:184;16178:6;16231:2;16219:9;16210:7;16206:23;16202:32;16199:52;;;16247:1;16244;16237:12;16199:52;-1:-1:-1;16270:16:9;;16108:184;-1:-1:-1;16108:184:9:o;16599:470::-;16778:3;16816:6;16810:13;16832:53;16878:6;16873:3;16866:4;16858:6;16854:17;16832:53;:::i;:::-;16948:13;;16907:16;;;;16970:57;16948:13;16907:16;17004:4;16992:17;;16970:57;:::i;:::-;17043:20;;16599:470;-1:-1:-1;;;;16599:470:9:o;18266:512::-;18460:4;-1:-1:-1;;;;;18570:2:9;18562:6;18558:15;18547:9;18540:34;18622:2;18614:6;18610:15;18605:2;18594:9;18590:18;18583:43;;18662:6;18657:2;18646:9;18642:18;18635:34;18705:3;18700:2;18689:9;18685:18;18678:31;18726:46;18767:3;18756:9;18752:19;18744:6;18726:46;:::i;:::-;18718:54;18266:512;-1:-1:-1;;;;;;18266:512:9:o;18783:249::-;18852:6;18905:2;18893:9;18884:7;18880:23;18876:32;18873:52;;;18921:1;18918;18911:12;18873:52;18953:9;18947:16;18972:30;18996:5;18972:30;:::i

Swarm Source

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