ETH Price: $2,945.93 (-5.90%)
Gas: 8 Gwei

Token

Alpha Punkz NFT (AlphaPunkzNFT)
 

Overview

Max Total Supply

1,449 AlphaPunkzNFT

Holders

266

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
moosecoins.eth
Balance
5 AlphaPunkzNFT
0xdb23c6e1ba73acf067956a41c57eeeb06374370e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AlphaPunkzNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 13: AlphaPunkzNFT.sol
//SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

pragma solidity >=0.7.0 <0.9.0;

contract AlphaPunkzNFT is ERC721A, Ownable {

  /** ERRORS */
  error ExceedsMaxSupply();
  error InvalidAmount();
  error FreeMintOver();
  error ExceedsWalletLimit();
  error InsufficientValue();
  error TokenNotFound();
  error ContractMint();
  error SaleInactive();

  using Strings for uint256;

  uint256 public cost = 0.001 ether;
  uint256 public maxSupply = 4444;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public freeMaxMintPerWallet = 5;
  uint256 public freeMintMax = 1500;
  
  bool public saleActive = false;
  bool public revealed = true;
  
  mapping(address => uint256) public freeWallets;

  string public _baseTokenURI = "ipfs://QmRRFgJb2Fv65E4uVM78E1fkMyg4AR9q7gkUvzJRfXbCeG/";

  constructor() ERC721A("Alpha Punkz NFT", "AlphaPunkzNFT") payable {
      _safeMint(msg.sender, 5);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    if (!saleActive) revert SaleInactive();
    if (msg.sender != tx.origin) revert ContractMint();
    if (totalSupply() + _mintAmount > maxSupply) revert ExceedsMaxSupply();
    if (_mintAmount < 1 || _mintAmount > maxMintAmountPerTx) revert InvalidAmount();
    _;
  }

  function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) {
    if (!isFreeMint()) revert FreeMintOver();
    if (freeWallets[msg.sender] + _mintAmount > freeMaxMintPerWallet) revert ExceedsWalletLimit();
    unchecked { freeWallets[msg.sender] += _mintAmount; }

    _safeMint(msg.sender, _mintAmount);
  }

  function mint(uint256 _mintAmount)
    external
    payable
    mintCompliance(_mintAmount)
  {
    if (msg.value < (cost * _mintAmount)) revert InsufficientValue();
    _safeMint(msg.sender, _mintAmount);
  }

  function _startTokenId()
      internal
      view
      virtual
      override returns (uint256) 
  {
      return 1;
  }

  function isFreeMint() public view returns (bool) {
    return totalSupply() < freeMintMax;
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxSupply(uint256 _maxSupply) external onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
  
  function toggleSaleState() public onlyOwner {
    saleActive = !saleActive;
  }

  function setMaxFreeMint(uint256 _max) public onlyOwner {
    freeMintMax = _max;
  }

  function withdraw() public onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setRevealed(bool state) public onlyOwner {
      revealed = state;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    if (!_exists(_tokenId)) revert TokenNotFound();

    if (!revealed) return _baseURI();
    return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
  }

}

File 1 of 13: 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 3 of 13: 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 4 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './IERC721Enumerable.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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.isContract() && !_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 &&
            !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (safe && to.isContract()) {
                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 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == 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 {}
}

File 6 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

File 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

    /**
     * @dev 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 12 of 13: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"FreeMintOver","type":"error"},{"inputs":[],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TokenNotFound","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266038d7ea4c6800060095561115c600a556014600b556005600c556105dc600d556000600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff021916908315150217905550604051806060016040528060368152602001620045b560369139601090805190602001906200008c92919062000830565b506040518060400160405280600f81526020017f416c7068612050756e6b7a204e465400000000000000000000000000000000008152506040518060400160405280600d81526020017f416c70686150756e6b7a4e46540000000000000000000000000000000000000081525081600290805190602001906200011192919062000830565b5080600390805190602001906200012a92919062000830565b506200013b6200017c60201b60201c565b600081905550505062000163620001576200018560201b60201c565b6200018d60201b60201c565b620001763360056200025360201b60201c565b62000b31565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002758282604051806020016040528060008152506200027960201b60201c565b5050565b6200028e83838360016200029360201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000301576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200033d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200035260008683876200068f60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156200052a5750620005298773ffffffffffffffffffffffffffffffffffffffff166200069560201b62001c601760201c565b5b15620005fd575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005a86000888480600101955088620006b860201b60201c565b620005df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141562000531578260005414620005f757600080fd5b6200066a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620005fe575b8160008190555050506200068860008683876200082a60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006e66200018560201b60201c565b8786866040518563ffffffff1660e01b81526004016200070a94939291906200098c565b602060405180830381600087803b1580156200072557600080fd5b505af19250505080156200075957506040513d601f19601f82011682018060405250810190620007569190620008f7565b60015b620007d7573d80600081146200078c576040519150601f19603f3d011682016040523d82523d6000602084013e62000791565b606091505b50600081511415620007cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b8280546200083e9062000a9c565b90600052602060002090601f016020900481019282620008625760008555620008ae565b82601f106200087d57805160ff1916838001178555620008ae565b82800160010185558215620008ae579182015b82811115620008ad57825182559160200191906001019062000890565b5b509050620008bd9190620008c1565b5090565b5b80821115620008dc576000816000905550600101620008c2565b5090565b600081519050620008f18162000b17565b92915050565b60006020828403121562000910576200090f62000b01565b5b60006200092084828501620008e0565b91505092915050565b6200093481620009fc565b82525050565b60006200094782620009e0565b620009538185620009eb565b93506200096581856020860162000a66565b620009708162000b06565b840191505092915050565b620009868162000a5c565b82525050565b6000608082019050620009a3600083018762000929565b620009b2602083018662000929565b620009c160408301856200097b565b8181036060830152620009d581846200093a565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b600062000a098262000a3c565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a8657808201518184015260208101905062000a69565b8381111562000a96576000848401525b50505050565b6000600282049050600182168062000ab557607f821691505b6020821081141562000acc5762000acb62000ad2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b62000b228162000a10565b811462000b2e57600080fd5b50565b613a748062000b416000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063daaeec861161006f578063daaeec86146107d4578063e0a80853146107eb578063e985e9c514610814578063efbd73f414610851578063f2fde38b1461087a57610225565b8063b88d4fde146106ed578063c2d05a6e14610716578063c87b56dd14610741578063cfc86f7b1461077e578063d5abeb01146107a957610225565b806394354fd0116100f257806394354fd01461062957806395d89b4114610654578063a0712d681461067f578063a22cb4651461069b578063b071401b146106c457610225565b8063715018a614610595578063742a4c9b146105ac5780637c928fe9146105d55780638da5cb5b146105fe57610225565b806342842e0e116101b15780636352211e116101755780636352211e1461049c57806366112b6b146104d957806368428a1b146105045780636f8b44b01461052f57806370a082311461055857610225565b806342842e0e146103cb57806344a0d68a146103f45780634a91d1b81461041d578063518302271461044857806355f804b31461047357610225565b8063095ea7b3116101f8578063095ea7b31461030c57806313faede61461033557806318160ddd1461036057806323b872dd1461038b5780633ccfd60b146103b457610225565b806301ffc9a71461022a57806306bb99e21461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061316b565b6108a3565b60405161025e919061344e565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612f7b565b610985565b60405161029b91906134cb565b60405180910390f35b3480156102b057600080fd5b506102b961099d565b6040516102c69190613469565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613212565b610a2f565b60405161030391906133e7565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906130fe565b610aab565b005b34801561034157600080fd5b5061034a610bb6565b60405161035791906134cb565b60405180910390f35b34801561036c57600080fd5b50610375610bbc565b60405161038291906134cb565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612fe8565b610bd3565b005b3480156103c057600080fd5b506103c9610be3565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612fe8565b610caf565b005b34801561040057600080fd5b5061041b60048036038101906104169190613212565b610ccf565b005b34801561042957600080fd5b50610432610d55565b60405161043f91906134cb565b60405180910390f35b34801561045457600080fd5b5061045d610d5b565b60405161046a919061344e565b60405180910390f35b34801561047f57600080fd5b5061049a600480360381019061049591906131c5565b610d6e565b005b3480156104a857600080fd5b506104c360048036038101906104be9190613212565b610e00565b6040516104d091906133e7565b60405180910390f35b3480156104e557600080fd5b506104ee610e16565b6040516104fb91906134cb565b60405180910390f35b34801561051057600080fd5b50610519610e1c565b604051610526919061344e565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613212565b610e2f565b005b34801561056457600080fd5b5061057f600480360381019061057a9190612f7b565b610eb5565b60405161058c91906134cb565b60405180910390f35b3480156105a157600080fd5b506105aa610f85565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190613212565b61100d565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613212565b611093565b005b34801561060a57600080fd5b506106136112f3565b60405161062091906133e7565b60405180910390f35b34801561063557600080fd5b5061063e61131d565b60405161064b91906134cb565b60405180910390f35b34801561066057600080fd5b50610669611323565b6040516106769190613469565b60405180910390f35b61069960048036038101906106949190613212565b6113b5565b005b3480156106a757600080fd5b506106c260048036038101906106bd91906130be565b61154b565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190613212565b6116c3565b005b3480156106f957600080fd5b50610714600480360381019061070f919061303b565b611749565b005b34801561072257600080fd5b5061072b6117c5565b604051610738919061344e565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613212565b6117d8565b6040516107759190613469565b60405180910390f35b34801561078a57600080fd5b50610793611875565b6040516107a09190613469565b60405180910390f35b3480156107b557600080fd5b506107be611903565b6040516107cb91906134cb565b60405180910390f35b3480156107e057600080fd5b506107e9611909565b005b3480156107f757600080fd5b50610812600480360381019061080d919061313e565b6119b1565b005b34801561082057600080fd5b5061083b60048036038101906108369190612fa8565b611a4a565b604051610848919061344e565b60405180910390f35b34801561085d57600080fd5b506108786004803603810190610873919061323f565b611ade565b005b34801561088657600080fd5b506108a1600480360381019061089c9190612f7b565b611b68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097e575061097d82611c83565b5b9050919050565b600f6020528060005260406000206000915090505481565b6060600280546109ac9061374a565b80601f01602080910402602001604051908101604052809291908181526020018280546109d89061374a565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b5050505050905090565b6000610a3a82611ced565b610a70576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab682610e00565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3d611d3b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6f5750610b6d81610b68611d3b565b611a4a565b155b15610ba6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb1838383611d43565b505050565b60095481565b6000610bc6611df5565b6001546000540303905090565b610bde838383611dfe565b505050565b610beb611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610c096112f3565b73ffffffffffffffffffffffffffffffffffffffff1614610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c56906134ab565b60405180910390fd5b610c676112f3565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cac573d6000803e3d6000fd5b50565b610cca83838360405180602001604052806000815250611749565b505050565b610cd7611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610cf56112f3565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906134ab565b60405180910390fd5b8060098190555050565b600d5481565b600e60019054906101000a900460ff1681565b610d76611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610d946112f3565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de1906134ab565b60405180910390fd5b818160109190610dfb929190612d66565b505050565b6000610e0b826122b4565b600001519050919050565b600c5481565b600e60009054906101000a900460ff1681565b610e37611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610e556112f3565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea2906134ab565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f8d611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610fab6112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906134ab565b60405180910390fd5b61100b6000612543565b565b611015611d3b565b73ffffffffffffffffffffffffffffffffffffffff166110336112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611080906134ab565b60405180910390fd5b80600d8190555050565b80600e60009054906101000a900460ff166110da576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461113f576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161114b610bbc565b611155919061357f565b111561118d576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600181108061119d5750600b5481115b156111d4576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111dc6117c5565b611212576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611260919061357f565b1115611298576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506112ef3383612609565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546113329061374a565b80601f016020809104026020016040519081016040528092919081815260200182805461135e9061374a565b80156113ab5780601f10611380576101008083540402835291602001916113ab565b820191906000526020600020905b81548152906001019060200180831161138e57829003601f168201915b5050505050905090565b80600e60009054906101000a900460ff166113fc576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611461576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161146d610bbc565b611477919061357f565b11156114af576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806114bf5750600b5481115b156114f6576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816009546115049190613606565b34101561153d576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115473383612609565b5050565b611553611d3b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115c5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611672611d3b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b7919061344e565b60405180910390a35050565b6116cb611d3b565b73ffffffffffffffffffffffffffffffffffffffff166116e96112f3565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906134ab565b60405180910390fd5b80600b8190555050565b611754848484611dfe565b6117738373ffffffffffffffffffffffffffffffffffffffff16611c60565b8015611788575061178684848484612627565b155b156117bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600d546117d2610bbc565b10905090565b60606117e382611ced565b611819576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60019054906101000a900460ff1661183c57611835612787565b9050611870565b611844612787565b61184d83612819565b60405160200161185e9291906133b8565b60405160208183030381529060405290505b919050565b601080546118829061374a565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae9061374a565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b505050505081565b600a5481565b611911611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661192f6112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906134ab565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6119b9611d3b565b73ffffffffffffffffffffffffffffffffffffffff166119d76112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a24906134ab565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae6611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611b046112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b51906134ab565b60405180910390fd5b611b648183612609565b5050565b611b70611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611b8e6112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb906134ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061348b565b60405180910390fd5b611c5d81612543565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611cf8611df5565b11158015611d07575060005482105b8015611d34575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611e09826122b4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e74576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e95611d3b565b73ffffffffffffffffffffffffffffffffffffffff161480611ec45750611ec385611ebe611d3b565b611a4a565b5b80611f095750611ed2611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611ef184610a2f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f42576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fa9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fb6858585600161297a565b611fc260008487611d43565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561224257600054821461224157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122ad8585856001612980565b5050505050565b6122bc612dec565b6000829050806122ca611df5565b111580156122d9575060005481105b1561250c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161250a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123ee57809250505061253e565b5b60011561250957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461250457809250505061253e565b6123ef565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612623828260405180602001604052806000815250612986565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261264d611d3b565b8786866040518563ffffffff1660e01b815260040161266f9493929190613402565b602060405180830381600087803b15801561268957600080fd5b505af19250505080156126ba57506040513d601f19601f820116820180604052508101906126b79190613198565b60015b612734573d80600081146126ea576040519150601f19603f3d011682016040523d82523d6000602084013e6126ef565b606091505b5060008151141561272c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546127969061374a565b80601f01602080910402602001604051908101604052809291908181526020018280546127c29061374a565b801561280f5780601f106127e45761010080835404028352916020019161280f565b820191906000526020600020905b8154815290600101906020018083116127f257829003601f168201915b5050505050905090565b60606000821415612861576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612975565b600082905060005b6000821461289357808061287c906137ad565b915050600a8261288c91906135d5565b9150612869565b60008167ffffffffffffffff8111156128af576128ae6138e3565b5b6040519080825280601f01601f1916602001820160405280156128e15781602001600182028036833780820191505090505b5090505b6000851461296e576001826128fa9190613660565b9150600a8561290991906137f6565b6030612915919061357f565b60f81b81838151811061292b5761292a6138b4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561296791906135d5565b94506128e5565b8093505050505b919050565b50505050565b50505050565b6129938383836001612998565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a05576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a40576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a4d600086838761297a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c175750612c168773ffffffffffffffffffffffffffffffffffffffff16611c60565b5b15612cdd575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c8c6000888480600101955088612627565b612cc2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c1d578260005414612cd857600080fd5b612d49565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612cde575b816000819055505050612d5f6000868387612980565b5050505050565b828054612d729061374a565b90600052602060002090601f016020900481019282612d945760008555612ddb565b82601f10612dad57803560ff1916838001178555612ddb565b82800160010185558215612ddb579182015b82811115612dda578235825591602001919060010190612dbf565b5b509050612de89190612e2f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e48576000816000905550600101612e30565b5090565b6000612e5f612e5a8461350b565b6134e6565b905082815260208101848484011115612e7b57612e7a613921565b5b612e86848285613708565b509392505050565b600081359050612e9d816139e2565b92915050565b600081359050612eb2816139f9565b92915050565b600081359050612ec781613a10565b92915050565b600081519050612edc81613a10565b92915050565b600082601f830112612ef757612ef6613917565b5b8135612f07848260208601612e4c565b91505092915050565b60008083601f840112612f2657612f25613917565b5b8235905067ffffffffffffffff811115612f4357612f42613912565b5b602083019150836001820283011115612f5f57612f5e61391c565b5b9250929050565b600081359050612f7581613a27565b92915050565b600060208284031215612f9157612f9061392b565b5b6000612f9f84828501612e8e565b91505092915050565b60008060408385031215612fbf57612fbe61392b565b5b6000612fcd85828601612e8e565b9250506020612fde85828601612e8e565b9150509250929050565b6000806000606084860312156130015761300061392b565b5b600061300f86828701612e8e565b935050602061302086828701612e8e565b925050604061303186828701612f66565b9150509250925092565b600080600080608085870312156130555761305461392b565b5b600061306387828801612e8e565b945050602061307487828801612e8e565b935050604061308587828801612f66565b925050606085013567ffffffffffffffff8111156130a6576130a5613926565b5b6130b287828801612ee2565b91505092959194509250565b600080604083850312156130d5576130d461392b565b5b60006130e385828601612e8e565b92505060206130f485828601612ea3565b9150509250929050565b600080604083850312156131155761311461392b565b5b600061312385828601612e8e565b925050602061313485828601612f66565b9150509250929050565b6000602082840312156131545761315361392b565b5b600061316284828501612ea3565b91505092915050565b6000602082840312156131815761318061392b565b5b600061318f84828501612eb8565b91505092915050565b6000602082840312156131ae576131ad61392b565b5b60006131bc84828501612ecd565b91505092915050565b600080602083850312156131dc576131db61392b565b5b600083013567ffffffffffffffff8111156131fa576131f9613926565b5b61320685828601612f10565b92509250509250929050565b6000602082840312156132285761322761392b565b5b600061323684828501612f66565b91505092915050565b600080604083850312156132565761325561392b565b5b600061326485828601612f66565b925050602061327585828601612e8e565b9150509250929050565b61328881613694565b82525050565b613297816136a6565b82525050565b60006132a88261353c565b6132b28185613552565b93506132c2818560208601613717565b6132cb81613930565b840191505092915050565b60006132e182613547565b6132eb8185613563565b93506132fb818560208601613717565b61330481613930565b840191505092915050565b600061331a82613547565b6133248185613574565b9350613334818560208601613717565b80840191505092915050565b600061334d602683613563565b915061335882613941565b604082019050919050565b6000613370600583613574565b915061337b82613990565b600582019050919050565b6000613393602083613563565b915061339e826139b9565b602082019050919050565b6133b2816136fe565b82525050565b60006133c4828561330f565b91506133d0828461330f565b91506133db82613363565b91508190509392505050565b60006020820190506133fc600083018461327f565b92915050565b6000608082019050613417600083018761327f565b613424602083018661327f565b61343160408301856133a9565b8181036060830152613443818461329d565b905095945050505050565b6000602082019050613463600083018461328e565b92915050565b6000602082019050818103600083015261348381846132d6565b905092915050565b600060208201905081810360008301526134a481613340565b9050919050565b600060208201905081810360008301526134c481613386565b9050919050565b60006020820190506134e060008301846133a9565b92915050565b60006134f0613501565b90506134fc828261377c565b919050565b6000604051905090565b600067ffffffffffffffff821115613526576135256138e3565b5b61352f82613930565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061358a826136fe565b9150613595836136fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ca576135c9613827565b5b828201905092915050565b60006135e0826136fe565b91506135eb836136fe565b9250826135fb576135fa613856565b5b828204905092915050565b6000613611826136fe565b915061361c836136fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561365557613654613827565b5b828202905092915050565b600061366b826136fe565b9150613676836136fe565b92508282101561368957613688613827565b5b828203905092915050565b600061369f826136de565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561373557808201518184015260208101905061371a565b83811115613744576000848401525b50505050565b6000600282049050600182168061376257607f821691505b6020821081141561377657613775613885565b5b50919050565b61378582613930565b810181811067ffffffffffffffff821117156137a4576137a36138e3565b5b80604052505050565b60006137b8826136fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137eb576137ea613827565b5b600182019050919050565b6000613801826136fe565b915061380c836136fe565b92508261381c5761381b613856565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6139eb81613694565b81146139f657600080fd5b50565b613a02816136a6565b8114613a0d57600080fd5b50565b613a19816136b2565b8114613a2457600080fd5b50565b613a30816136fe565b8114613a3b57600080fd5b5056fea2646970667358221220ca9f7f326b9d69bf78326bc6a5d2f42c731252f5f1ea5fa59f8e50be11f4524a64736f6c63430008070033697066733a2f2f516d525246674a623246763635453475564d37384531666b4d7967344152397137676b55767a4a526658624365472f

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063daaeec861161006f578063daaeec86146107d4578063e0a80853146107eb578063e985e9c514610814578063efbd73f414610851578063f2fde38b1461087a57610225565b8063b88d4fde146106ed578063c2d05a6e14610716578063c87b56dd14610741578063cfc86f7b1461077e578063d5abeb01146107a957610225565b806394354fd0116100f257806394354fd01461062957806395d89b4114610654578063a0712d681461067f578063a22cb4651461069b578063b071401b146106c457610225565b8063715018a614610595578063742a4c9b146105ac5780637c928fe9146105d55780638da5cb5b146105fe57610225565b806342842e0e116101b15780636352211e116101755780636352211e1461049c57806366112b6b146104d957806368428a1b146105045780636f8b44b01461052f57806370a082311461055857610225565b806342842e0e146103cb57806344a0d68a146103f45780634a91d1b81461041d578063518302271461044857806355f804b31461047357610225565b8063095ea7b3116101f8578063095ea7b31461030c57806313faede61461033557806318160ddd1461036057806323b872dd1461038b5780633ccfd60b146103b457610225565b806301ffc9a71461022a57806306bb99e21461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061316b565b6108a3565b60405161025e919061344e565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190612f7b565b610985565b60405161029b91906134cb565b60405180910390f35b3480156102b057600080fd5b506102b961099d565b6040516102c69190613469565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613212565b610a2f565b60405161030391906133e7565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906130fe565b610aab565b005b34801561034157600080fd5b5061034a610bb6565b60405161035791906134cb565b60405180910390f35b34801561036c57600080fd5b50610375610bbc565b60405161038291906134cb565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612fe8565b610bd3565b005b3480156103c057600080fd5b506103c9610be3565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612fe8565b610caf565b005b34801561040057600080fd5b5061041b60048036038101906104169190613212565b610ccf565b005b34801561042957600080fd5b50610432610d55565b60405161043f91906134cb565b60405180910390f35b34801561045457600080fd5b5061045d610d5b565b60405161046a919061344e565b60405180910390f35b34801561047f57600080fd5b5061049a600480360381019061049591906131c5565b610d6e565b005b3480156104a857600080fd5b506104c360048036038101906104be9190613212565b610e00565b6040516104d091906133e7565b60405180910390f35b3480156104e557600080fd5b506104ee610e16565b6040516104fb91906134cb565b60405180910390f35b34801561051057600080fd5b50610519610e1c565b604051610526919061344e565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190613212565b610e2f565b005b34801561056457600080fd5b5061057f600480360381019061057a9190612f7b565b610eb5565b60405161058c91906134cb565b60405180910390f35b3480156105a157600080fd5b506105aa610f85565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190613212565b61100d565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613212565b611093565b005b34801561060a57600080fd5b506106136112f3565b60405161062091906133e7565b60405180910390f35b34801561063557600080fd5b5061063e61131d565b60405161064b91906134cb565b60405180910390f35b34801561066057600080fd5b50610669611323565b6040516106769190613469565b60405180910390f35b61069960048036038101906106949190613212565b6113b5565b005b3480156106a757600080fd5b506106c260048036038101906106bd91906130be565b61154b565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190613212565b6116c3565b005b3480156106f957600080fd5b50610714600480360381019061070f919061303b565b611749565b005b34801561072257600080fd5b5061072b6117c5565b604051610738919061344e565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613212565b6117d8565b6040516107759190613469565b60405180910390f35b34801561078a57600080fd5b50610793611875565b6040516107a09190613469565b60405180910390f35b3480156107b557600080fd5b506107be611903565b6040516107cb91906134cb565b60405180910390f35b3480156107e057600080fd5b506107e9611909565b005b3480156107f757600080fd5b50610812600480360381019061080d919061313e565b6119b1565b005b34801561082057600080fd5b5061083b60048036038101906108369190612fa8565b611a4a565b604051610848919061344e565b60405180910390f35b34801561085d57600080fd5b506108786004803603810190610873919061323f565b611ade565b005b34801561088657600080fd5b506108a1600480360381019061089c9190612f7b565b611b68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097e575061097d82611c83565b5b9050919050565b600f6020528060005260406000206000915090505481565b6060600280546109ac9061374a565b80601f01602080910402602001604051908101604052809291908181526020018280546109d89061374a565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b5050505050905090565b6000610a3a82611ced565b610a70576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab682610e00565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3d611d3b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6f5750610b6d81610b68611d3b565b611a4a565b155b15610ba6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb1838383611d43565b505050565b60095481565b6000610bc6611df5565b6001546000540303905090565b610bde838383611dfe565b505050565b610beb611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610c096112f3565b73ffffffffffffffffffffffffffffffffffffffff1614610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c56906134ab565b60405180910390fd5b610c676112f3565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cac573d6000803e3d6000fd5b50565b610cca83838360405180602001604052806000815250611749565b505050565b610cd7611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610cf56112f3565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906134ab565b60405180910390fd5b8060098190555050565b600d5481565b600e60019054906101000a900460ff1681565b610d76611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610d946112f3565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de1906134ab565b60405180910390fd5b818160109190610dfb929190612d66565b505050565b6000610e0b826122b4565b600001519050919050565b600c5481565b600e60009054906101000a900460ff1681565b610e37611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610e556112f3565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea2906134ab565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f8d611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610fab6112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906134ab565b60405180910390fd5b61100b6000612543565b565b611015611d3b565b73ffffffffffffffffffffffffffffffffffffffff166110336112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611080906134ab565b60405180910390fd5b80600d8190555050565b80600e60009054906101000a900460ff166110da576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461113f576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161114b610bbc565b611155919061357f565b111561118d576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600181108061119d5750600b5481115b156111d4576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111dc6117c5565b611212576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5482600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611260919061357f565b1115611298576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506112ef3383612609565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6060600380546113329061374a565b80601f016020809104026020016040519081016040528092919081815260200182805461135e9061374a565b80156113ab5780601f10611380576101008083540402835291602001916113ab565b820191906000526020600020905b81548152906001019060200180831161138e57829003601f168201915b5050505050905090565b80600e60009054906101000a900460ff166113fc576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611461576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548161146d610bbc565b611477919061357f565b11156114af576040517fc30436e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018110806114bf5750600b5481115b156114f6576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816009546115049190613606565b34101561153d576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115473383612609565b5050565b611553611d3b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115c5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611672611d3b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b7919061344e565b60405180910390a35050565b6116cb611d3b565b73ffffffffffffffffffffffffffffffffffffffff166116e96112f3565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906134ab565b60405180910390fd5b80600b8190555050565b611754848484611dfe565b6117738373ffffffffffffffffffffffffffffffffffffffff16611c60565b8015611788575061178684848484612627565b155b156117bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600d546117d2610bbc565b10905090565b60606117e382611ced565b611819576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e60019054906101000a900460ff1661183c57611835612787565b9050611870565b611844612787565b61184d83612819565b60405160200161185e9291906133b8565b60405160208183030381529060405290505b919050565b601080546118829061374a565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae9061374a565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b505050505081565b600a5481565b611911611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661192f6112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906134ab565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6119b9611d3b565b73ffffffffffffffffffffffffffffffffffffffff166119d76112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a24906134ab565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae6611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611b046112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b51906134ab565b60405180910390fd5b611b648183612609565b5050565b611b70611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611b8e6112f3565b73ffffffffffffffffffffffffffffffffffffffff1614611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb906134ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061348b565b60405180910390fd5b611c5d81612543565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611cf8611df5565b11158015611d07575060005482105b8015611d34575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611e09826122b4565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e74576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e95611d3b565b73ffffffffffffffffffffffffffffffffffffffff161480611ec45750611ec385611ebe611d3b565b611a4a565b5b80611f095750611ed2611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611ef184610a2f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f42576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fa9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fb6858585600161297a565b611fc260008487611d43565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561224257600054821461224157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122ad8585856001612980565b5050505050565b6122bc612dec565b6000829050806122ca611df5565b111580156122d9575060005481105b1561250c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161250a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123ee57809250505061253e565b5b60011561250957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461250457809250505061253e565b6123ef565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612623828260405180602001604052806000815250612986565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261264d611d3b565b8786866040518563ffffffff1660e01b815260040161266f9493929190613402565b602060405180830381600087803b15801561268957600080fd5b505af19250505080156126ba57506040513d601f19601f820116820180604052508101906126b79190613198565b60015b612734573d80600081146126ea576040519150601f19603f3d011682016040523d82523d6000602084013e6126ef565b606091505b5060008151141561272c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546127969061374a565b80601f01602080910402602001604051908101604052809291908181526020018280546127c29061374a565b801561280f5780601f106127e45761010080835404028352916020019161280f565b820191906000526020600020905b8154815290600101906020018083116127f257829003601f168201915b5050505050905090565b60606000821415612861576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612975565b600082905060005b6000821461289357808061287c906137ad565b915050600a8261288c91906135d5565b9150612869565b60008167ffffffffffffffff8111156128af576128ae6138e3565b5b6040519080825280601f01601f1916602001820160405280156128e15781602001600182028036833780820191505090505b5090505b6000851461296e576001826128fa9190613660565b9150600a8561290991906137f6565b6030612915919061357f565b60f81b81838151811061292b5761292a6138b4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561296791906135d5565b94506128e5565b8093505050505b919050565b50505050565b50505050565b6129938383836001612998565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a05576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a40576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a4d600086838761297a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c175750612c168773ffffffffffffffffffffffffffffffffffffffff16611c60565b5b15612cdd575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c8c6000888480600101955088612627565b612cc2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c1d578260005414612cd857600080fd5b612d49565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612cde575b816000819055505050612d5f6000868387612980565b5050505050565b828054612d729061374a565b90600052602060002090601f016020900481019282612d945760008555612ddb565b82601f10612dad57803560ff1916838001178555612ddb565b82800160010185558215612ddb579182015b82811115612dda578235825591602001919060010190612dbf565b5b509050612de89190612e2f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e48576000816000905550600101612e30565b5090565b6000612e5f612e5a8461350b565b6134e6565b905082815260208101848484011115612e7b57612e7a613921565b5b612e86848285613708565b509392505050565b600081359050612e9d816139e2565b92915050565b600081359050612eb2816139f9565b92915050565b600081359050612ec781613a10565b92915050565b600081519050612edc81613a10565b92915050565b600082601f830112612ef757612ef6613917565b5b8135612f07848260208601612e4c565b91505092915050565b60008083601f840112612f2657612f25613917565b5b8235905067ffffffffffffffff811115612f4357612f42613912565b5b602083019150836001820283011115612f5f57612f5e61391c565b5b9250929050565b600081359050612f7581613a27565b92915050565b600060208284031215612f9157612f9061392b565b5b6000612f9f84828501612e8e565b91505092915050565b60008060408385031215612fbf57612fbe61392b565b5b6000612fcd85828601612e8e565b9250506020612fde85828601612e8e565b9150509250929050565b6000806000606084860312156130015761300061392b565b5b600061300f86828701612e8e565b935050602061302086828701612e8e565b925050604061303186828701612f66565b9150509250925092565b600080600080608085870312156130555761305461392b565b5b600061306387828801612e8e565b945050602061307487828801612e8e565b935050604061308587828801612f66565b925050606085013567ffffffffffffffff8111156130a6576130a5613926565b5b6130b287828801612ee2565b91505092959194509250565b600080604083850312156130d5576130d461392b565b5b60006130e385828601612e8e565b92505060206130f485828601612ea3565b9150509250929050565b600080604083850312156131155761311461392b565b5b600061312385828601612e8e565b925050602061313485828601612f66565b9150509250929050565b6000602082840312156131545761315361392b565b5b600061316284828501612ea3565b91505092915050565b6000602082840312156131815761318061392b565b5b600061318f84828501612eb8565b91505092915050565b6000602082840312156131ae576131ad61392b565b5b60006131bc84828501612ecd565b91505092915050565b600080602083850312156131dc576131db61392b565b5b600083013567ffffffffffffffff8111156131fa576131f9613926565b5b61320685828601612f10565b92509250509250929050565b6000602082840312156132285761322761392b565b5b600061323684828501612f66565b91505092915050565b600080604083850312156132565761325561392b565b5b600061326485828601612f66565b925050602061327585828601612e8e565b9150509250929050565b61328881613694565b82525050565b613297816136a6565b82525050565b60006132a88261353c565b6132b28185613552565b93506132c2818560208601613717565b6132cb81613930565b840191505092915050565b60006132e182613547565b6132eb8185613563565b93506132fb818560208601613717565b61330481613930565b840191505092915050565b600061331a82613547565b6133248185613574565b9350613334818560208601613717565b80840191505092915050565b600061334d602683613563565b915061335882613941565b604082019050919050565b6000613370600583613574565b915061337b82613990565b600582019050919050565b6000613393602083613563565b915061339e826139b9565b602082019050919050565b6133b2816136fe565b82525050565b60006133c4828561330f565b91506133d0828461330f565b91506133db82613363565b91508190509392505050565b60006020820190506133fc600083018461327f565b92915050565b6000608082019050613417600083018761327f565b613424602083018661327f565b61343160408301856133a9565b8181036060830152613443818461329d565b905095945050505050565b6000602082019050613463600083018461328e565b92915050565b6000602082019050818103600083015261348381846132d6565b905092915050565b600060208201905081810360008301526134a481613340565b9050919050565b600060208201905081810360008301526134c481613386565b9050919050565b60006020820190506134e060008301846133a9565b92915050565b60006134f0613501565b90506134fc828261377c565b919050565b6000604051905090565b600067ffffffffffffffff821115613526576135256138e3565b5b61352f82613930565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061358a826136fe565b9150613595836136fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135ca576135c9613827565b5b828201905092915050565b60006135e0826136fe565b91506135eb836136fe565b9250826135fb576135fa613856565b5b828204905092915050565b6000613611826136fe565b915061361c836136fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561365557613654613827565b5b828202905092915050565b600061366b826136fe565b9150613676836136fe565b92508282101561368957613688613827565b5b828203905092915050565b600061369f826136de565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561373557808201518184015260208101905061371a565b83811115613744576000848401525b50505050565b6000600282049050600182168061376257607f821691505b6020821081141561377657613775613885565b5b50919050565b61378582613930565b810181811067ffffffffffffffff821117156137a4576137a36138e3565b5b80604052505050565b60006137b8826136fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137eb576137ea613827565b5b600182019050919050565b6000613801826136fe565b915061380c836136fe565b92508261381c5761381b613856565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6139eb81613694565b81146139f657600080fd5b50565b613a02816136a6565b8114613a0d57600080fd5b50565b613a19816136b2565b8114613a2457600080fd5b50565b613a30816136fe565b8114613a3b57600080fd5b5056fea2646970667358221220ca9f7f326b9d69bf78326bc6a5d2f42c731252f5f1ea5fa59f8e50be11f4524a64736f6c63430008070033

Deployed Bytecode Sourcemap

207:3338:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522:305:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;799:46:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7635:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9138:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8701:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;525:33:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3771:303:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10003:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2813:98:1;;;;;;;;;;;;;:::i;:::-;;10244:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2313:74:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;686:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;763:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3050:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7443:125:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;642:39:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;728:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2394:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4891:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:10;;;;;;;;;;;;;:::i;:::-;;2721:86:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1386:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;599:38:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7804:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1721:216:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9414:287:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2496:130:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10500:369:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2078:96:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3243:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;852:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;563:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2634:81;;;;;;;;;;;;;:::i;:::-;;3156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9772:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2180:127:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1972:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4522:305:4;4624:4;4676:25;4661:40;;;:11;:40;;;;:105;;;;4733:33;4718:48;;;:11;:48;;;;4661:105;:158;;;;4783:36;4807:11;4783:23;:36::i;:::-;4661:158;4641:178;;4522:305;;;:::o;799:46:1:-;;;;;;;;;;;;;;;;;:::o;7635:100:4:-;7689:13;7722:5;7715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7635:100;:::o;9138:204::-;9206:7;9231:16;9239:7;9231;:16::i;:::-;9226:64;;9256:34;;;;;;;;;;;;;;9226:64;9310:15;:24;9326:7;9310:24;;;;;;;;;;;;;;;;;;;;;9303:31;;9138:204;;;:::o;8701:371::-;8774:13;8790:24;8806:7;8790:15;:24::i;:::-;8774:40;;8835:5;8829:11;;:2;:11;;;8825:48;;;8849:24;;;;;;;;;;;;;;8825:48;8906:5;8890:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8916:37;8933:5;8940:12;:10;:12::i;:::-;8916:16;:37::i;:::-;8915:38;8890:63;8886:138;;;8977:35;;;;;;;;;;;;;;8886:138;9036:28;9045:2;9049:7;9058:5;9036:8;:28::i;:::-;8763:309;8701:371;;:::o;525:33:1:-;;;;:::o;3771:303:4:-;3815:7;4040:15;:13;:15::i;:::-;4025:12;;4009:13;;:28;:46;4002:53;;3771:303;:::o;10003:170::-;10137:28;10147:4;10153:2;10157:7;10137:9;:28::i;:::-;10003:170;;;:::o;2813:98:1:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2865:7:1::1;:5;:7::i;:::-;2857:25;;:48;2883:21;2857:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2813:98::o:0;10244:185:4:-;10382:39;10399:4;10405:2;10409:7;10382:39;;;;;;;;;;;;:16;:39::i;:::-;10244:185;;;:::o;2313:74:1:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2376:5:1::1;2369:4;:12;;;;2313:74:::0;:::o;686:33::-;;;;:::o;763:27::-;;;;;;;;;;;;;:::o;3050:100::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3137:7:1::1;;3121:13;:23;;;;;;;:::i;:::-;;3050:100:::0;;:::o;7443:125:4:-;7507:7;7534:21;7547:7;7534:12;:21::i;:::-;:26;;;7527:33;;7443:125;;;:::o;642:39:1:-;;;;:::o;728:30::-;;;;;;;;;;;;;:::o;2394:96::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2474:10:1::1;2462:9;:22;;;;2394:96:::0;:::o;4891:206:4:-;4955:7;4996:1;4979:19;;:5;:19;;;4975:60;;;5007:28;;;;;;;;;;;;;;4975:60;5061:12;:19;5074:5;5061:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5053:36;;5046:43;;4891:206;;;:::o;1714:103:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;2721:86:1:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2797:4:1::1;2783:11;:18;;;;2721:86:::0;:::o;1386:329::-;1447:11;1113:10;;;;;;;;;;;1108:38;;1132:14;;;;;;;;;;;;;;1108:38;1171:9;1157:23;;:10;:23;;;1153:50;;1189:14;;;;;;;;;;;;;;1153:50;1244:9;;1230:11;1214:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:39;1210:70;;;1262:18;;;;;;;;;;;;;;1210:70;1305:1;1291:11;:15;:51;;;;1324:18;;1310:11;:32;1291:51;1287:79;;;1351:15;;;;;;;;;;;;;;1287:79;1472:12:::1;:10;:12::i;:::-;1467:40;;1493:14;;;;;;;;;;;;;;1467:40;1558:20;;1544:11;1518;:23;1530:10;1518:23;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;1514:93;;;1587:20;;;;;;;;;;;;;;1514:93;1653:11;1626;:23;1638:10;1626:23;;;;;;;;;;;;;;;;:38;;;;;;;;;;;1675:34;1685:10;1697:11;1675:9;:34::i;:::-;1386:329:::0;;:::o;1063:87:10:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;599:38:1:-;;;;:::o;7804:104:4:-;7860:13;7893:7;7886:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7804:104;:::o;1721:216:1:-;1803:11;1113:10;;;;;;;;;;;1108:38;;1132:14;;;;;;;;;;;;;;1108:38;1171:9;1157:23;;:10;:23;;;1153:50;;1189:14;;;;;;;;;;;;;;1153:50;1244:9;;1230:11;1214:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:39;1210:70;;;1262:18;;;;;;;;;;;;;;1210:70;1305:1;1291:11;:15;:51;;;;1324:18;;1310:11;:32;1291:51;1287:79;;;1351:15;;;;;;;;;;;;;;1287:79;1850:11:::1;1843:4;;:18;;;;:::i;:::-;1830:9;:32;1826:64;;;1871:19;;;;;;;;;;;;;;1826:64;1897:34;1907:10;1919:11;1897:9;:34::i;:::-;1721:216:::0;;:::o;9414:287:4:-;9525:12;:10;:12::i;:::-;9513:24;;:8;:24;;;9509:54;;;9546:17;;;;;;;;;;;;;;9509:54;9621:8;9576:18;:32;9595:12;:10;:12::i;:::-;9576:32;;;;;;;;;;;;;;;:42;9609:8;9576:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9674:8;9645:48;;9660:12;:10;:12::i;:::-;9645:48;;;9684:8;9645:48;;;;;;:::i;:::-;;;;;;;;9414:287;;:::o;2496:130:1:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2601:19:1::1;2580:18;:40;;;;2496:130:::0;:::o;10500:369:4:-;10667:28;10677:4;10683:2;10687:7;10667:9;:28::i;:::-;10710:15;:2;:13;;;:15::i;:::-;:76;;;;;10730:56;10761:4;10767:2;10771:7;10780:5;10730:30;:56::i;:::-;10729:57;10710:76;10706:156;;;10810:40;;;;;;;;;;;;;;10706:156;10500:369;;;;:::o;2078:96:1:-;2121:4;2157:11;;2141:13;:11;:13::i;:::-;:27;2134:34;;2078:96;:::o;3243:297::-;3342:13;3372:17;3380:8;3372:7;:17::i;:::-;3367:46;;3398:15;;;;;;;;;;;;;;3367:46;3427:8;;;;;;;;;;;3422:32;;3444:10;:8;:10::i;:::-;3437:17;;;;3422:32;3492:10;:8;:10::i;:::-;3504:19;:8;:17;:19::i;:::-;3475:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3461:73;;3243:297;;;;:::o;852:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;563:31::-;;;;:::o;2634:81::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2699:10:1::1;;;;;;;;;;;2698:11;2685:10;;:24;;;;;;;;;;;;;;;;;;2634:81::o:0;3156:::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3226:5:1::1;3215:8;;:16;;;;;;;;;;;;;;;;;;3156:81:::0;:::o;9772:164:4:-;9869:4;9893:18;:25;9912:5;9893:25;;;;;;;;;;;;;;;:35;9919:8;9893:35;;;;;;;;;;;;;;;;;;;;;;;;;9886:42;;9772:164;;;;:::o;2180:127:1:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2268:33:1::1;2278:9;2289:11;2268:9;:33::i;:::-;2180:127:::0;;:::o;1972:201:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;854:157:3:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;11124:187:4:-;11181:4;11224:7;11205:15;:13;:15::i;:::-;:26;;:53;;;;;11245:13;;11235:7;:23;11205:53;:98;;;;;11276:11;:20;11288:7;11276:20;;;;;;;;;;;:27;;;;;;;;;;;;11275:28;11205:98;11198:105;;11124:187;;;:::o;656:98:2:-;709:7;736:10;729:17;;656:98;:::o;19294:196:4:-;19436:2;19409:15;:24;19425:7;19409:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19474:7;19470:2;19454:28;;19463:5;19454:28;;;;;;;;;;;;19294:196;;;:::o;1943:129:1:-;2036:7;2065:1;2058:8;;1943:129;:::o;14237:2130:4:-;14352:35;14390:21;14403:7;14390:12;:21::i;:::-;14352:59;;14450:4;14428:26;;:13;:18;;;:26;;;14424:67;;14463:28;;;;;;;;;;;;;;14424:67;14504:22;14546:4;14530:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;14567:36;14584:4;14590:12;:10;:12::i;:::-;14567:16;:36::i;:::-;14530:73;:126;;;;14644:12;:10;:12::i;:::-;14620:36;;:20;14632:7;14620:11;:20::i;:::-;:36;;;14530:126;14504:153;;14675:17;14670:66;;14701:35;;;;;;;;;;;;;;14670:66;14765:1;14751:16;;:2;:16;;;14747:52;;;14776:23;;;;;;;;;;;;;;14747:52;14812:43;14834:4;14840:2;14844:7;14853:1;14812:21;:43::i;:::-;14920:35;14937:1;14941:7;14950:4;14920:8;:35::i;:::-;15281:1;15251:12;:18;15264:4;15251:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15325:1;15297:12;:16;15310:2;15297:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15343:31;15377:11;:20;15389:7;15377:20;;;;;;;;;;;15343:54;;15428:2;15412:8;:13;;;:18;;;;;;;;;;;;;;;;;;15478:15;15445:8;:23;;;:49;;;;;;;;;;;;;;;;;;15746:19;15778:1;15768:7;:11;15746:33;;15794:31;15828:11;:24;15840:11;15828:24;;;;;;;;;;;15794:58;;15896:1;15871:27;;:8;:13;;;;;;;;;;;;:27;;;15867:384;;;16081:13;;16066:11;:28;16062:174;;16135:4;16119:8;:13;;;:20;;;;;;;;;;;;;;;;;;16188:13;:28;;;16162:8;:23;;;:54;;;;;;;;;;;;;;;;;;16062:174;15867:384;15226:1036;;;16298:7;16294:2;16279:27;;16288:4;16279:27;;;;;;;;;;;;16317:42;16338:4;16344:2;16348:7;16357:1;16317:20;:42::i;:::-;14341:2026;;14237:2130;;;:::o;6272:1109::-;6334:21;;:::i;:::-;6368:12;6383:7;6368:22;;6451:4;6432:15;:13;:15::i;:::-;:23;;:47;;;;;6466:13;;6459:4;:20;6432:47;6428:886;;;6500:31;6534:11;:17;6546:4;6534:17;;;;;;;;;;;6500:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6575:9;:16;;;6570:729;;6646:1;6620:28;;:9;:14;;;:28;;;6616:101;;6684:9;6677:16;;;;;;6616:101;7019:261;7026:4;7019:261;;;7059:6;;;;;;;;7104:11;:17;7116:4;7104:17;;;;;;;;;;;7092:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7178:1;7152:28;;:9;:14;;;:28;;;7148:109;;7220:9;7213:16;;;;;;7148:109;7019:261;;;6570:729;6481:833;6428:886;7342:31;;;;;;;;;;;;;;6272:1109;;;;:::o;2333:191:10:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;11319:104:4:-;11388:27;11398:2;11402:8;11388:27;;;;;;;;;;;;:9;:27::i;:::-;11319:104;;:::o;19982:667::-;20145:4;20182:2;20166:36;;;20203:12;:10;:12::i;:::-;20217:4;20223:7;20232:5;20166:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20162:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20417:1;20400:6;:13;:18;20396:235;;;20446:40;;;;;;;;;;;;;;20396:235;20589:6;20583:13;20574:6;20570:2;20566:15;20559:38;20162:480;20295:45;;;20285:55;;;:6;:55;;;;20278:62;;;19982:667;;;;;;:::o;2936:108:1:-;2996:13;3025;3018:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2936:108;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21297:159:4:-;;;;;:::o;22115:158::-;;;;;:::o;11786:163::-;11909:32;11915:2;11919:8;11929:5;11936:4;11909:5;:32::i;:::-;11786:163;;;:::o;12208:1775::-;12347:20;12370:13;;12347:36;;12412:1;12398:16;;:2;:16;;;12394:48;;;12423:19;;;;;;;;;;;;;;12394:48;12469:1;12457:8;:13;12453:44;;;12479:18;;;;;;;;;;;;;;12453:44;12510:61;12540:1;12544:2;12548:12;12562:8;12510:21;:61::i;:::-;12883:8;12848:12;:16;12861:2;12848:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12947:8;12907:12;:16;12920:2;12907:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13006:2;12973:11;:25;12985:12;12973:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13073:15;13023:11;:25;13035:12;13023:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13106:20;13129:12;13106:35;;13156:11;13185:8;13170:12;:23;13156:37;;13214:4;:23;;;;;13222:15;:2;:13;;;:15::i;:::-;13214:23;13210:641;;;13258:314;13314:12;13310:2;13289:38;;13306:1;13289:38;;;;;;;;;;;;13355:69;13394:1;13398:2;13402:14;;;;;;13418:5;13355:30;:69::i;:::-;13350:174;;13460:40;;;;;;;;;;;;;;13350:174;13567:3;13551:12;:19;;13258:314;;13653:12;13636:13;;:29;13632:43;;13667:8;;;13632:43;13210:641;;;13716:120;13772:14;;;;;;13768:2;13747:40;;13764:1;13747:40;;;;;;;;;;;;13831:3;13815:12;:19;;13716:120;;13210:641;13881:12;13865:13;:28;;;;12823:1082;;13915:60;13944:1;13948:2;13952:12;13966:8;13915:20;:60::i;:::-;12336:1647;12208:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:323::-;5471:6;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:50;5713:7;5704:6;5693:9;5689:22;5671:50;:::i;:::-;5661:60;;5617:114;5415:323;;;;:::o;5744:327::-;5802:6;5851:2;5839:9;5830:7;5826:23;5822:32;5819:119;;;5857:79;;:::i;:::-;5819:119;5977:1;6002:52;6046:7;6037:6;6026:9;6022:22;6002:52;:::i;:::-;5992:62;;5948:116;5744:327;;;;:::o;6077:349::-;6146:6;6195:2;6183:9;6174:7;6170:23;6166:32;6163:119;;;6201:79;;:::i;:::-;6163:119;6321:1;6346:63;6401:7;6392:6;6381:9;6377:22;6346:63;:::i;:::-;6336:73;;6292:127;6077:349;;;;:::o;6432:529::-;6503:6;6511;6560:2;6548:9;6539:7;6535:23;6531:32;6528:119;;;6566:79;;:::i;:::-;6528:119;6714:1;6703:9;6699:17;6686:31;6744:18;6736:6;6733:30;6730:117;;;6766:79;;:::i;:::-;6730:117;6879:65;6936:7;6927:6;6916:9;6912:22;6879:65;:::i;:::-;6861:83;;;;6657:297;6432:529;;;;;:::o;6967:329::-;7026:6;7075:2;7063:9;7054:7;7050:23;7046:32;7043:119;;;7081:79;;:::i;:::-;7043:119;7201:1;7226:53;7271:7;7262:6;7251:9;7247:22;7226:53;:::i;:::-;7216:63;;7172:117;6967:329;;;;:::o;7302:474::-;7370:6;7378;7427:2;7415:9;7406:7;7402:23;7398:32;7395:119;;;7433:79;;:::i;:::-;7395:119;7553:1;7578:53;7623:7;7614:6;7603:9;7599:22;7578:53;:::i;:::-;7568:63;;7524:117;7680:2;7706:53;7751:7;7742:6;7731:9;7727:22;7706:53;:::i;:::-;7696:63;;7651:118;7302:474;;;;;:::o;7782:118::-;7869:24;7887:5;7869:24;:::i;:::-;7864:3;7857:37;7782:118;;:::o;7906:109::-;7987:21;8002:5;7987:21;:::i;:::-;7982:3;7975:34;7906:109;;:::o;8021:360::-;8107:3;8135:38;8167:5;8135:38;:::i;:::-;8189:70;8252:6;8247:3;8189:70;:::i;:::-;8182:77;;8268:52;8313:6;8308:3;8301:4;8294:5;8290:16;8268:52;:::i;:::-;8345:29;8367:6;8345:29;:::i;:::-;8340:3;8336:39;8329:46;;8111:270;8021:360;;;;:::o;8387:364::-;8475:3;8503:39;8536:5;8503:39;:::i;:::-;8558:71;8622:6;8617:3;8558:71;:::i;:::-;8551:78;;8638:52;8683:6;8678:3;8671:4;8664:5;8660:16;8638:52;:::i;:::-;8715:29;8737:6;8715:29;:::i;:::-;8710:3;8706:39;8699:46;;8479:272;8387:364;;;;:::o;8757:377::-;8863:3;8891:39;8924:5;8891:39;:::i;:::-;8946:89;9028:6;9023:3;8946:89;:::i;:::-;8939:96;;9044:52;9089:6;9084:3;9077:4;9070:5;9066:16;9044:52;:::i;:::-;9121:6;9116:3;9112:16;9105:23;;8867:267;8757:377;;;;:::o;9140:366::-;9282:3;9303:67;9367:2;9362:3;9303:67;:::i;:::-;9296:74;;9379:93;9468:3;9379:93;:::i;:::-;9497:2;9492:3;9488:12;9481:19;;9140:366;;;:::o;9512:400::-;9672:3;9693:84;9775:1;9770:3;9693:84;:::i;:::-;9686:91;;9786:93;9875:3;9786:93;:::i;:::-;9904:1;9899:3;9895:11;9888:18;;9512:400;;;:::o;9918:366::-;10060:3;10081:67;10145:2;10140:3;10081:67;:::i;:::-;10074:74;;10157:93;10246:3;10157:93;:::i;:::-;10275:2;10270:3;10266:12;10259:19;;9918:366;;;:::o;10290:118::-;10377:24;10395:5;10377:24;:::i;:::-;10372:3;10365:37;10290:118;;:::o;10414:701::-;10695:3;10717:95;10808:3;10799:6;10717:95;:::i;:::-;10710:102;;10829:95;10920:3;10911:6;10829:95;:::i;:::-;10822:102;;10941:148;11085:3;10941:148;:::i;:::-;10934:155;;11106:3;11099:10;;10414:701;;;;;:::o;11121:222::-;11214:4;11252:2;11241:9;11237:18;11229:26;;11265:71;11333:1;11322:9;11318:17;11309:6;11265:71;:::i;:::-;11121:222;;;;:::o;11349:640::-;11544:4;11582:3;11571:9;11567:19;11559:27;;11596:71;11664:1;11653:9;11649:17;11640:6;11596:71;:::i;:::-;11677:72;11745:2;11734:9;11730:18;11721:6;11677:72;:::i;:::-;11759;11827:2;11816:9;11812:18;11803:6;11759:72;:::i;:::-;11878:9;11872:4;11868:20;11863:2;11852:9;11848:18;11841:48;11906:76;11977:4;11968:6;11906:76;:::i;:::-;11898:84;;11349:640;;;;;;;:::o;11995:210::-;12082:4;12120:2;12109:9;12105:18;12097:26;;12133:65;12195:1;12184:9;12180:17;12171:6;12133:65;:::i;:::-;11995:210;;;;:::o;12211:313::-;12324:4;12362:2;12351:9;12347:18;12339:26;;12411:9;12405:4;12401:20;12397:1;12386:9;12382:17;12375:47;12439:78;12512:4;12503:6;12439:78;:::i;:::-;12431:86;;12211:313;;;;:::o;12530:419::-;12696:4;12734:2;12723:9;12719:18;12711:26;;12783:9;12777:4;12773:20;12769:1;12758:9;12754:17;12747:47;12811:131;12937:4;12811:131;:::i;:::-;12803:139;;12530:419;;;:::o;12955:::-;13121:4;13159:2;13148:9;13144:18;13136:26;;13208:9;13202:4;13198:20;13194:1;13183:9;13179:17;13172:47;13236:131;13362:4;13236:131;:::i;:::-;13228:139;;12955:419;;;:::o;13380:222::-;13473:4;13511:2;13500:9;13496:18;13488:26;;13524:71;13592:1;13581:9;13577:17;13568:6;13524:71;:::i;:::-;13380:222;;;;:::o;13608:129::-;13642:6;13669:20;;:::i;:::-;13659:30;;13698:33;13726:4;13718:6;13698:33;:::i;:::-;13608:129;;;:::o;13743:75::-;13776:6;13809:2;13803:9;13793:19;;13743:75;:::o;13824:307::-;13885:4;13975:18;13967:6;13964:30;13961:56;;;13997:18;;:::i;:::-;13961:56;14035:29;14057:6;14035:29;:::i;:::-;14027:37;;14119:4;14113;14109:15;14101:23;;13824:307;;;:::o;14137:98::-;14188:6;14222:5;14216:12;14206:22;;14137:98;;;:::o;14241:99::-;14293:6;14327:5;14321:12;14311:22;;14241:99;;;:::o;14346:168::-;14429:11;14463:6;14458:3;14451:19;14503:4;14498:3;14494:14;14479:29;;14346:168;;;;:::o;14520:169::-;14604:11;14638:6;14633:3;14626:19;14678:4;14673:3;14669:14;14654:29;;14520:169;;;;:::o;14695:148::-;14797:11;14834:3;14819:18;;14695:148;;;;:::o;14849:305::-;14889:3;14908:20;14926:1;14908:20;:::i;:::-;14903:25;;14942:20;14960:1;14942:20;:::i;:::-;14937:25;;15096:1;15028:66;15024:74;15021:1;15018:81;15015:107;;;15102:18;;:::i;:::-;15015:107;15146:1;15143;15139:9;15132:16;;14849:305;;;;:::o;15160:185::-;15200:1;15217:20;15235:1;15217:20;:::i;:::-;15212:25;;15251:20;15269:1;15251:20;:::i;:::-;15246:25;;15290:1;15280:35;;15295:18;;:::i;:::-;15280:35;15337:1;15334;15330:9;15325:14;;15160:185;;;;:::o;15351:348::-;15391:7;15414:20;15432:1;15414:20;:::i;:::-;15409:25;;15448:20;15466:1;15448:20;:::i;:::-;15443:25;;15636:1;15568:66;15564:74;15561:1;15558:81;15553:1;15546:9;15539:17;15535:105;15532:131;;;15643:18;;:::i;:::-;15532:131;15691:1;15688;15684:9;15673:20;;15351:348;;;;:::o;15705:191::-;15745:4;15765:20;15783:1;15765:20;:::i;:::-;15760:25;;15799:20;15817:1;15799:20;:::i;:::-;15794:25;;15838:1;15835;15832:8;15829:34;;;15843:18;;:::i;:::-;15829:34;15888:1;15885;15881:9;15873:17;;15705:191;;;;:::o;15902:96::-;15939:7;15968:24;15986:5;15968:24;:::i;:::-;15957:35;;15902:96;;;:::o;16004:90::-;16038:7;16081:5;16074:13;16067:21;16056:32;;16004:90;;;:::o;16100:149::-;16136:7;16176:66;16169:5;16165:78;16154:89;;16100:149;;;:::o;16255:126::-;16292:7;16332:42;16325:5;16321:54;16310:65;;16255:126;;;:::o;16387:77::-;16424:7;16453:5;16442:16;;16387:77;;;:::o;16470:154::-;16554:6;16549:3;16544;16531:30;16616:1;16607:6;16602:3;16598:16;16591:27;16470:154;;;:::o;16630:307::-;16698:1;16708:113;16722:6;16719:1;16716:13;16708:113;;;16807:1;16802:3;16798:11;16792:18;16788:1;16783:3;16779:11;16772:39;16744:2;16741:1;16737:10;16732:15;;16708:113;;;16839:6;16836:1;16833:13;16830:101;;;16919:1;16910:6;16905:3;16901:16;16894:27;16830:101;16679:258;16630:307;;;:::o;16943:320::-;16987:6;17024:1;17018:4;17014:12;17004:22;;17071:1;17065:4;17061:12;17092:18;17082:81;;17148:4;17140:6;17136:17;17126:27;;17082:81;17210:2;17202:6;17199:14;17179:18;17176:38;17173:84;;;17229:18;;:::i;:::-;17173:84;16994:269;16943:320;;;:::o;17269:281::-;17352:27;17374:4;17352:27;:::i;:::-;17344:6;17340:40;17482:6;17470:10;17467:22;17446:18;17434:10;17431:34;17428:62;17425:88;;;17493:18;;:::i;:::-;17425:88;17533:10;17529:2;17522:22;17312:238;17269:281;;:::o;17556:233::-;17595:3;17618:24;17636:5;17618:24;:::i;:::-;17609:33;;17664:66;17657:5;17654:77;17651:103;;;17734:18;;:::i;:::-;17651:103;17781:1;17774:5;17770:13;17763:20;;17556:233;;;:::o;17795:176::-;17827:1;17844:20;17862:1;17844:20;:::i;:::-;17839:25;;17878:20;17896:1;17878:20;:::i;:::-;17873:25;;17917:1;17907:35;;17922:18;;:::i;:::-;17907:35;17963:1;17960;17956:9;17951:14;;17795:176;;;;:::o;17977:180::-;18025:77;18022:1;18015:88;18122:4;18119:1;18112:15;18146:4;18143:1;18136:15;18163:180;18211:77;18208:1;18201:88;18308:4;18305:1;18298:15;18332:4;18329:1;18322:15;18349:180;18397:77;18394:1;18387:88;18494:4;18491:1;18484:15;18518:4;18515:1;18508:15;18535:180;18583:77;18580:1;18573:88;18680:4;18677:1;18670:15;18704:4;18701:1;18694:15;18721:180;18769:77;18766:1;18759:88;18866:4;18863:1;18856:15;18890:4;18887:1;18880:15;18907:117;19016:1;19013;19006:12;19030:117;19139:1;19136;19129:12;19153:117;19262:1;19259;19252:12;19276:117;19385:1;19382;19375:12;19399:117;19508:1;19505;19498:12;19522:117;19631:1;19628;19621:12;19645:102;19686:6;19737:2;19733:7;19728:2;19721:5;19717:14;19713:28;19703:38;;19645:102;;;:::o;19753:225::-;19893:34;19889:1;19881:6;19877:14;19870:58;19962:8;19957:2;19949:6;19945:15;19938:33;19753:225;:::o;19984:155::-;20124:7;20120:1;20112:6;20108:14;20101:31;19984:155;:::o;20145:182::-;20285:34;20281:1;20273:6;20269:14;20262:58;20145:182;:::o;20333:122::-;20406:24;20424:5;20406:24;:::i;:::-;20399:5;20396:35;20386:63;;20445:1;20442;20435:12;20386:63;20333:122;:::o;20461:116::-;20531:21;20546:5;20531:21;:::i;:::-;20524:5;20521:32;20511:60;;20567:1;20564;20557:12;20511:60;20461:116;:::o;20583:120::-;20655:23;20672:5;20655:23;:::i;:::-;20648:5;20645:34;20635:62;;20693:1;20690;20683:12;20635:62;20583:120;:::o;20709:122::-;20782:24;20800:5;20782:24;:::i;:::-;20775:5;20772:35;20762:63;;20821:1;20818;20811:12;20762:63;20709:122;:::o

Swarm Source

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