POL Price: $0.305695 (+0.88%)
Gas: 30 GWei
 

Overview

Max Total Supply

50,000,000 STRC

Holders

31

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
StarChainToken

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at polygonscan.com on 2024-12-25
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _unwrappedTokenSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _unwrappedTokenSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account);

        _unwrappedTokenSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0));

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _unwrappedTokenSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

struct WalletDistribution {
    address wallet;
    uint256 tokenAmount;
}

contract StarChainToken is Ownable, ERC20 {
    uint256 _tTotal ;
    uint256 private constant decimalFactor = 100000 * (10 ** 18);

    WalletDistribution[] private distributions;

    constructor() ERC20("StarChain AI", "STRC") {
        _tTotal = 50000000 * (10 ** uint256(18));
    
        distributions.push(WalletDistribution(0x601f414E25840125A84988039E542A0840c6B7Da, 175 * decimalFactor));
        distributions.push(WalletDistribution(0x10250D559FEfc8A56649C7E25363f5fe814e671b, 75 * decimalFactor));
        distributions.push(WalletDistribution(0x06E08944C1F423eFf5B0F71158DF3144c94ACBb5, 70 * decimalFactor));
        distributions.push(WalletDistribution(0x0EF7D59F319999F978956c3bD906e026F74d355D, 70 * decimalFactor));
        distributions.push(WalletDistribution(0x376ff99bbfe42432d5B53E3Cf9D0C0826D85F345, 50 * decimalFactor));
        distributions.push(WalletDistribution(0xe6775c00BC6F06Cd15Ea90aF581C095306fE8C32, 35 * decimalFactor));
        distributions.push(WalletDistribution(0x2c84f0384138B3C1dD8ef1C8E2cd10B4b331f03a, 25 * decimalFactor));

        for (uint i = 0; i < distributions.length; i++) {
            _mint(distributions[i].wallet, distributions[i].tokenAmount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b506040518060400160405280600c81526020017f53746172436861696e20414900000000000000000000000000000000000000008152506040518060400160405280600481526020017f535452430000000000000000000000000000000000000000000000000000000081525061009861008d61070e60201b60201c565b61071560201b60201c565b81600490816100a79190610b7c565b5080600590816100b79190610b7c565b5050506012600a6100c89190610da7565b6302faf0806100d79190610df1565b6006819055506007604051806040016040528073601f414e25840125a84988039e542a0840c6b7da73ffffffffffffffffffffffffffffffffffffffff16815260200169152d02c7e14af680000060af6101319190610df1565b815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101555050600760405180604001604052807310250d559fefc8a56649c7e25363f5fe814e671b73ffffffffffffffffffffffffffffffffffffffff16815260200169152d02c7e14af6800000604b6101fe9190610df1565b815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101555050600760405180604001604052807306e08944c1f423eff5b0f71158df3144c94acbb573ffffffffffffffffffffffffffffffffffffffff16815260200169152d02c7e14af680000060466102cb9190610df1565b815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155505060076040518060400160405280730ef7d59f319999f978956c3bd906e026f74d355d73ffffffffffffffffffffffffffffffffffffffff16815260200169152d02c7e14af680000060466103989190610df1565b815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015550506007604051806040016040528073376ff99bbfe42432d5b53e3cf9d0c0826d85f34573ffffffffffffffffffffffffffffffffffffffff16815260200169152d02c7e14af680000060326104659190610df1565b815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015550506007604051806040016040528073e6775c00bc6f06cd15ea90af581c095306fe8c3273ffffffffffffffffffffffffffffffffffffffff16815260200169152d02c7e14af680000060236105329190610df1565b815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155505060076040518060400160405280732c84f0384138b3c1dd8ef1c8e2cd10b4b331f03a73ffffffffffffffffffffffffffffffffffffffff16815260200169152d02c7e14af680000060196105ff9190610df1565b815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015550505f5b600780549050811015610708576106fb6007828154811061069e5761069d610e32565b5b905f5260205f2090600202015f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600783815481106106e0576106df610e32565b5b905f5260205f209060020201600101546107d660201b60201c565b808060010191505061067a565b50610f32565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90610eb9565b60405180910390fd5b6108545f8361093960201b60201c565b8060035f8282546108659190610ed7565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546108b89190610ed7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161091c9190610f19565b60405180910390a36109355f838361093d60201b60201c565b5050565b5050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806109bd57607f821691505b6020821081036109d0576109cf610979565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610a327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826109f7565b610a3c86836109f7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610a80610a7b610a7684610a54565b610a5d565b610a54565b9050919050565b5f819050919050565b610a9983610a66565b610aad610aa582610a87565b848454610a03565b825550505050565b5f90565b610ac1610ab5565b610acc818484610a90565b505050565b5b81811015610aef57610ae45f82610ab9565b600181019050610ad2565b5050565b601f821115610b3457610b05816109d6565b610b0e846109e8565b81016020851015610b1d578190505b610b31610b29856109e8565b830182610ad1565b50505b505050565b5f82821c905092915050565b5f610b545f1984600802610b39565b1980831691505092915050565b5f610b6c8383610b45565b9150826002028217905092915050565b610b8582610942565b67ffffffffffffffff811115610b9e57610b9d61094c565b5b610ba882546109a6565b610bb3828285610af3565b5f60209050601f831160018114610be4575f8415610bd2578287015190505b610bdc8582610b61565b865550610c43565b601f198416610bf2866109d6565b5f5b82811015610c1957848901518255600182019150602085019450602081019050610bf4565b86831015610c365784890151610c32601f891682610b45565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610ccd57808604811115610ca957610ca8610c4b565b5b6001851615610cb85780820291505b8081029050610cc685610c78565b9450610c8d565b94509492505050565b5f82610ce55760019050610da0565b81610cf2575f9050610da0565b8160018114610d085760028114610d1257610d41565b6001915050610da0565b60ff841115610d2457610d23610c4b565b5b8360020a915084821115610d3b57610d3a610c4b565b5b50610da0565b5060208310610133831016604e8410600b8410161715610d765782820a905083811115610d7157610d70610c4b565b5b610da0565b610d838484846001610c84565b92509050818404811115610d9a57610d99610c4b565b5b81810290505b9392505050565b5f610db182610a54565b9150610dbc83610a54565b9250610de97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610cd6565b905092915050565b5f610dfb82610a54565b9150610e0683610a54565b9250828202610e1481610a54565b91508282048414831517610e2b57610e2a610c4b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610ea3601f83610e5f565b9150610eae82610e6f565b602082019050919050565b5f6020820190508181035f830152610ed081610e97565b9050919050565b5f610ee182610a54565b9150610eec83610a54565b9250828201905080821115610f0457610f03610c4b565b5b92915050565b610f1381610a54565b82525050565b5f602082019050610f2c5f830184610f0a565b92915050565b6116f380610f3f5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610ec9565b60405180910390f35b610124600480360381019061011f9190610f7a565b610388565b6040516101319190610fd2565b60405180910390f35b6101426103a5565b60405161014f9190610ffa565b60405180910390f35b610172600480360381019061016d9190611013565b6103ae565b60405161017f9190610fd2565b60405180910390f35b6101906104a0565b60405161019d919061107e565b60405180910390f35b6101c060048036038101906101bb9190610f7a565b6104a8565b6040516101cd9190610fd2565b60405180910390f35b6101f060048036038101906101eb9190611097565b61054f565b6040516101fd9190610ffa565b60405180910390f35b61020e610595565b005b61021861061c565b60405161022591906110d1565b60405180910390f35b610236610643565b6040516102439190610ec9565b60405180910390f35b61026660048036038101906102619190610f7a565b6106d3565b6040516102739190610fd2565b60405180910390f35b61029660048036038101906102919190610f7a565b6107b9565b6040516102a39190610fd2565b60405180910390f35b6102c660048036038101906102c191906110ea565b6107d6565b6040516102d39190610ffa565b60405180910390f35b6102f660048036038101906102f19190611097565b610858565b005b60606004805461030790611155565b80601f016020809104026020016040519081016040528092919081815260200182805461033390611155565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f61039b61039461094e565b8484610955565b6001905092915050565b5f600354905090565b5f6103ba848484610b18565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61040161094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610477906111f5565b60405180910390fd5b6104948561048c61094e565b858403610955565b60019150509392505050565b5f6012905090565b5f6105456104b461094e565b848460025f6104c161094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105409190611240565b610955565b6001905092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61059d61094e565b73ffffffffffffffffffffffffffffffffffffffff166105bb61061c565b73ffffffffffffffffffffffffffffffffffffffff1614610611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610608906112bd565b60405180910390fd5b61061a5f610d8f565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461065290611155565b80601f016020809104026020016040519081016040528092919081815260200182805461067e90611155565b80156106c95780601f106106a0576101008083540402835291602001916106c9565b820191905f5260205f20905b8154815290600101906020018083116106ac57829003601f168201915b5050505050905090565b5f8060025f6106e061094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561079a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107919061134b565b60405180910390fd5b6107ae6107a561094e565b85858403610955565b600191505092915050565b5f6107cc6107c561094e565b8484610b18565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61086061094e565b73ffffffffffffffffffffffffffffffffffffffff1661087e61061c565b73ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb906112bd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610939906113d9565b60405180910390fd5b61094b81610d8f565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90611467565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906114f5565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b0b9190610ffa565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90611583565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90611611565b60405180910390fd5b610bfe8383610e50565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061169f565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d129190611240565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d769190610ffa565b60405180910390a3610d89848484610e54565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610e9b82610e59565b610ea58185610e63565b9350610eb5818560208601610e73565b610ebe81610e81565b840191505092915050565b5f6020820190508181035f830152610ee18184610e91565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1682610eed565b9050919050565b610f2681610f0c565b8114610f30575f80fd5b50565b5f81359050610f4181610f1d565b92915050565b5f819050919050565b610f5981610f47565b8114610f63575f80fd5b50565b5f81359050610f7481610f50565b92915050565b5f8060408385031215610f9057610f8f610ee9565b5b5f610f9d85828601610f33565b9250506020610fae85828601610f66565b9150509250929050565b5f8115159050919050565b610fcc81610fb8565b82525050565b5f602082019050610fe55f830184610fc3565b92915050565b610ff481610f47565b82525050565b5f60208201905061100d5f830184610feb565b92915050565b5f805f6060848603121561102a57611029610ee9565b5b5f61103786828701610f33565b935050602061104886828701610f33565b925050604061105986828701610f66565b9150509250925092565b5f60ff82169050919050565b61107881611063565b82525050565b5f6020820190506110915f83018461106f565b92915050565b5f602082840312156110ac576110ab610ee9565b5b5f6110b984828501610f33565b91505092915050565b6110cb81610f0c565b82525050565b5f6020820190506110e45f8301846110c2565b92915050565b5f8060408385031215611100576110ff610ee9565b5b5f61110d85828601610f33565b925050602061111e85828601610f33565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061116c57607f821691505b60208210810361117f5761117e611128565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6111df602883610e63565b91506111ea82611185565b604082019050919050565b5f6020820190508181035f83015261120c816111d3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61124a82610f47565b915061125583610f47565b925082820190508082111561126d5761126c611213565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6112a7602083610e63565b91506112b282611273565b602082019050919050565b5f6020820190508181035f8301526112d48161129b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611335602583610e63565b9150611340826112db565b604082019050919050565b5f6020820190508181035f83015261136281611329565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6113c3602683610e63565b91506113ce82611369565b604082019050919050565b5f6020820190508181035f8301526113f0816113b7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611451602483610e63565b915061145c826113f7565b604082019050919050565b5f6020820190508181035f83015261147e81611445565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114df602283610e63565b91506114ea82611485565b604082019050919050565b5f6020820190508181035f83015261150c816114d3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61156d602583610e63565b915061157882611513565b604082019050919050565b5f6020820190508181035f83015261159a81611561565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115fb602383610e63565b9150611606826115a1565b604082019050919050565b5f6020820190508181035f830152611628816115ef565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611689602683610e63565b91506116948261162f565b604082019050919050565b5f6020820190508181035f8301526116b68161167d565b905091905056fea26469706673582212205c1af79113befacac27c181ed3a93b357abb7b25cd99413f5acca005d81ff1e664736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610ec9565b60405180910390f35b610124600480360381019061011f9190610f7a565b610388565b6040516101319190610fd2565b60405180910390f35b6101426103a5565b60405161014f9190610ffa565b60405180910390f35b610172600480360381019061016d9190611013565b6103ae565b60405161017f9190610fd2565b60405180910390f35b6101906104a0565b60405161019d919061107e565b60405180910390f35b6101c060048036038101906101bb9190610f7a565b6104a8565b6040516101cd9190610fd2565b60405180910390f35b6101f060048036038101906101eb9190611097565b61054f565b6040516101fd9190610ffa565b60405180910390f35b61020e610595565b005b61021861061c565b60405161022591906110d1565b60405180910390f35b610236610643565b6040516102439190610ec9565b60405180910390f35b61026660048036038101906102619190610f7a565b6106d3565b6040516102739190610fd2565b60405180910390f35b61029660048036038101906102919190610f7a565b6107b9565b6040516102a39190610fd2565b60405180910390f35b6102c660048036038101906102c191906110ea565b6107d6565b6040516102d39190610ffa565b60405180910390f35b6102f660048036038101906102f19190611097565b610858565b005b60606004805461030790611155565b80601f016020809104026020016040519081016040528092919081815260200182805461033390611155565b801561037e5780601f106103555761010080835404028352916020019161037e565b820191905f5260205f20905b81548152906001019060200180831161036157829003601f168201915b5050505050905090565b5f61039b61039461094e565b8484610955565b6001905092915050565b5f600354905090565b5f6103ba848484610b18565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61040161094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610477906111f5565b60405180910390fd5b6104948561048c61094e565b858403610955565b60019150509392505050565b5f6012905090565b5f6105456104b461094e565b848460025f6104c161094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105409190611240565b610955565b6001905092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61059d61094e565b73ffffffffffffffffffffffffffffffffffffffff166105bb61061c565b73ffffffffffffffffffffffffffffffffffffffff1614610611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610608906112bd565b60405180910390fd5b61061a5f610d8f565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461065290611155565b80601f016020809104026020016040519081016040528092919081815260200182805461067e90611155565b80156106c95780601f106106a0576101008083540402835291602001916106c9565b820191905f5260205f20905b8154815290600101906020018083116106ac57829003601f168201915b5050505050905090565b5f8060025f6106e061094e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561079a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107919061134b565b60405180910390fd5b6107ae6107a561094e565b85858403610955565b600191505092915050565b5f6107cc6107c561094e565b8484610b18565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61086061094e565b73ffffffffffffffffffffffffffffffffffffffff1661087e61061c565b73ffffffffffffffffffffffffffffffffffffffff16146108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb906112bd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610939906113d9565b60405180910390fd5b61094b81610d8f565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90611467565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906114f5565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b0b9190610ffa565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90611583565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90611611565b60405180910390fd5b610bfe8383610e50565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061169f565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d129190611240565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d769190610ffa565b60405180910390a3610d89848484610e54565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610e9b82610e59565b610ea58185610e63565b9350610eb5818560208601610e73565b610ebe81610e81565b840191505092915050565b5f6020820190508181035f830152610ee18184610e91565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1682610eed565b9050919050565b610f2681610f0c565b8114610f30575f80fd5b50565b5f81359050610f4181610f1d565b92915050565b5f819050919050565b610f5981610f47565b8114610f63575f80fd5b50565b5f81359050610f7481610f50565b92915050565b5f8060408385031215610f9057610f8f610ee9565b5b5f610f9d85828601610f33565b9250506020610fae85828601610f66565b9150509250929050565b5f8115159050919050565b610fcc81610fb8565b82525050565b5f602082019050610fe55f830184610fc3565b92915050565b610ff481610f47565b82525050565b5f60208201905061100d5f830184610feb565b92915050565b5f805f6060848603121561102a57611029610ee9565b5b5f61103786828701610f33565b935050602061104886828701610f33565b925050604061105986828701610f66565b9150509250925092565b5f60ff82169050919050565b61107881611063565b82525050565b5f6020820190506110915f83018461106f565b92915050565b5f602082840312156110ac576110ab610ee9565b5b5f6110b984828501610f33565b91505092915050565b6110cb81610f0c565b82525050565b5f6020820190506110e45f8301846110c2565b92915050565b5f8060408385031215611100576110ff610ee9565b5b5f61110d85828601610f33565b925050602061111e85828601610f33565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061116c57607f821691505b60208210810361117f5761117e611128565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6111df602883610e63565b91506111ea82611185565b604082019050919050565b5f6020820190508181035f83015261120c816111d3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61124a82610f47565b915061125583610f47565b925082820190508082111561126d5761126c611213565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6112a7602083610e63565b91506112b282611273565b602082019050919050565b5f6020820190508181035f8301526112d48161129b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611335602583610e63565b9150611340826112db565b604082019050919050565b5f6020820190508181035f83015261136281611329565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6113c3602683610e63565b91506113ce82611369565b604082019050919050565b5f6020820190508181035f8301526113f0816113b7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611451602483610e63565b915061145c826113f7565b604082019050919050565b5f6020820190508181035f83015261147e81611445565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114df602283610e63565b91506114ea82611485565b604082019050919050565b5f6020820190508181035f83015261150c816114d3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61156d602583610e63565b915061157882611513565b604082019050919050565b5f6020820190508181035f83015261159a81611561565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115fb602383610e63565b9150611606826115a1565b604082019050919050565b5f6020820190508181035f830152611628816115ef565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611689602683610e63565b91506116948261162f565b604082019050919050565b5f6020820190508181035f8301526116b68161167d565b905091905056fea26469706673582212205c1af79113befacac27c181ed3a93b357abb7b25cd99413f5acca005d81ff1e664736f6c634300081a0033

Deployed Bytecode Sourcemap

16096:1243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6076:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8252:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7196:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8903:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7038:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9804:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7376:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4470:103;;;:::i;:::-;;3819:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6295:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10522:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7716:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7954:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4728:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6076:100;6130:13;6163:5;6156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6076:100;:::o;8252:169::-;8335:4;8352:39;8361:12;:10;:12::i;:::-;8375:7;8384:6;8352:8;:39::i;:::-;8409:4;8402:11;;8252:169;;;;:::o;7196:117::-;7257:7;7284:21;;7277:28;;7196:117;:::o;8903:492::-;9043:4;9060:36;9070:6;9078:9;9089:6;9060:9;:36::i;:::-;9109:24;9136:11;:19;9148:6;9136:19;;;;;;;;;;;;;;;:33;9156:12;:10;:12::i;:::-;9136:33;;;;;;;;;;;;;;;;9109:60;;9208:6;9188:16;:26;;9180:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9295:57;9304:6;9312:12;:10;:12::i;:::-;9345:6;9326:16;:25;9295:8;:57::i;:::-;9383:4;9376:11;;;8903:492;;;;;:::o;7038:93::-;7096:5;7121:2;7114:9;;7038:93;:::o;9804:215::-;9892:4;9909:80;9918:12;:10;:12::i;:::-;9932:7;9978:10;9941:11;:25;9953:12;:10;:12::i;:::-;9941:25;;;;;;;;;;;;;;;:34;9967:7;9941:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9909:8;:80::i;:::-;10007:4;10000:11;;9804:215;;;;:::o;7376:127::-;7450:7;7477:9;:18;7487:7;7477:18;;;;;;;;;;;;;;;;7470:25;;7376:127;;;:::o;4470:103::-;4050:12;:10;:12::i;:::-;4039:23;;:7;:5;:7::i;:::-;:23;;;4031:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4535:30:::1;4562:1;4535:18;:30::i;:::-;4470:103::o:0;3819:87::-;3865:7;3892:6;;;;;;;;;;;3885:13;;3819:87;:::o;6295:104::-;6351:13;6384:7;6377:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6295:104;:::o;10522:413::-;10615:4;10632:24;10659:11;:25;10671:12;:10;:12::i;:::-;10659:25;;;;;;;;;;;;;;;:34;10685:7;10659:34;;;;;;;;;;;;;;;;10632:61;;10732:15;10712:16;:35;;10704:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10825:67;10834:12;:10;:12::i;:::-;10848:7;10876:15;10857:16;:34;10825:8;:67::i;:::-;10923:4;10916:11;;;10522:413;;;;:::o;7716:175::-;7802:4;7819:42;7829:12;:10;:12::i;:::-;7843:9;7854:6;7819:9;:42::i;:::-;7879:4;7872:11;;7716:175;;;;:::o;7954:151::-;8043:7;8070:11;:18;8082:5;8070:18;;;;;;;;;;;;;;;:27;8089:7;8070:27;;;;;;;;;;;;;;;;8063:34;;7954:151;;;;:::o;4728:201::-;4050:12;:10;:12::i;:::-;4039:23;;:7;:5;:7::i;:::-;:23;;;4031:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4837:1:::1;4817:22;;:8;:22;;::::0;4809:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4893:28;4912:8;4893:18;:28::i;:::-;4728:201:::0;:::o;96:98::-;149:7;176:10;169:17;;96:98;:::o;14200:380::-;14353:1;14336:19;;:5;:19;;;14328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14434:1;14415:21;;:7;:21;;;14407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14518:6;14488:11;:18;14500:5;14488:18;;;;;;;;;;;;;;;:27;14507:7;14488:27;;;;;;;;;;;;;;;:36;;;;14556:7;14540:32;;14549:5;14540:32;;;14565:6;14540:32;;;;;;:::i;:::-;;;;;;;;14200:380;;;:::o;11425:725::-;11583:1;11565:20;;:6;:20;;;11557:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11667:1;11646:23;;:9;:23;;;11638:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11722:39;11743:6;11751:9;11722:20;:39::i;:::-;11774:21;11798:9;:17;11808:6;11798:17;;;;;;;;;;;;;;;;11774:41;;11851:6;11834:13;:23;;11826:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11972:6;11956:13;:22;11936:9;:17;11946:6;11936:17;;;;;;;;;;;;;;;:42;;;;12024:6;12000:9;:20;12010:9;12000:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12065:9;12048:35;;12057:6;12048:35;;;12076:6;12048:35;;;;;;:::i;:::-;;;;;;;;12096:46;12116:6;12124:9;12135:6;12096:19;:46::i;:::-;11546:604;11425:725;;;:::o;5089:191::-;5163:16;5182:6;;;;;;;;;;;5163:25;;5208:8;5199:6;;:17;;;;;;;;;;;;;;;;;;5263:8;5232:40;;5253:8;5232:40;;;;;;;;;;;;5152:128;5089:191;:::o;15180:100::-;;;:::o;15884:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:227::-;6565:34;6561:1;6553:6;6549:14;6542:58;6634:10;6629:2;6621:6;6617:15;6610:35;6425:227;:::o;6658:366::-;6800:3;6821:67;6885:2;6880:3;6821:67;:::i;:::-;6814:74;;6897:93;6986:3;6897:93;:::i;:::-;7015:2;7010:3;7006:12;6999:19;;6658:366;;;:::o;7030:419::-;7196:4;7234:2;7223:9;7219:18;7211:26;;7283:9;7277:4;7273:20;7269:1;7258:9;7254:17;7247:47;7311:131;7437:4;7311:131;:::i;:::-;7303:139;;7030:419;;;:::o;7455:180::-;7503:77;7500:1;7493:88;7600:4;7597:1;7590:15;7624:4;7621:1;7614:15;7641:191;7681:3;7700:20;7718:1;7700:20;:::i;:::-;7695:25;;7734:20;7752:1;7734:20;:::i;:::-;7729:25;;7777:1;7774;7770:9;7763:16;;7798:3;7795:1;7792:10;7789:36;;;7805:18;;:::i;:::-;7789:36;7641:191;;;;:::o;7838:182::-;7978:34;7974:1;7966:6;7962:14;7955:58;7838:182;:::o;8026:366::-;8168:3;8189:67;8253:2;8248:3;8189:67;:::i;:::-;8182:74;;8265:93;8354:3;8265:93;:::i;:::-;8383:2;8378:3;8374:12;8367:19;;8026:366;;;:::o;8398:419::-;8564:4;8602:2;8591:9;8587:18;8579:26;;8651:9;8645:4;8641:20;8637:1;8626:9;8622:17;8615:47;8679:131;8805:4;8679:131;:::i;:::-;8671:139;;8398:419;;;:::o;8823:224::-;8963:34;8959:1;8951:6;8947:14;8940:58;9032:7;9027:2;9019:6;9015:15;9008:32;8823:224;:::o;9053:366::-;9195:3;9216:67;9280:2;9275:3;9216:67;:::i;:::-;9209:74;;9292:93;9381:3;9292:93;:::i;:::-;9410:2;9405:3;9401:12;9394:19;;9053:366;;;:::o;9425:419::-;9591:4;9629:2;9618:9;9614:18;9606:26;;9678:9;9672:4;9668:20;9664:1;9653:9;9649:17;9642:47;9706:131;9832:4;9706:131;:::i;:::-;9698:139;;9425:419;;;:::o;9850:225::-;9990:34;9986:1;9978:6;9974:14;9967:58;10059:8;10054:2;10046:6;10042:15;10035:33;9850:225;:::o;10081:366::-;10223:3;10244:67;10308:2;10303:3;10244:67;:::i;:::-;10237:74;;10320:93;10409:3;10320:93;:::i;:::-;10438:2;10433:3;10429:12;10422:19;;10081:366;;;:::o;10453:419::-;10619:4;10657:2;10646:9;10642:18;10634:26;;10706:9;10700:4;10696:20;10692:1;10681:9;10677:17;10670:47;10734:131;10860:4;10734:131;:::i;:::-;10726:139;;10453:419;;;:::o;10878:223::-;11018:34;11014:1;11006:6;11002:14;10995:58;11087:6;11082:2;11074:6;11070:15;11063:31;10878:223;:::o;11107:366::-;11249:3;11270:67;11334:2;11329:3;11270:67;:::i;:::-;11263:74;;11346:93;11435:3;11346:93;:::i;:::-;11464:2;11459:3;11455:12;11448:19;;11107:366;;;:::o;11479:419::-;11645:4;11683:2;11672:9;11668:18;11660:26;;11732:9;11726:4;11722:20;11718:1;11707:9;11703:17;11696:47;11760:131;11886:4;11760:131;:::i;:::-;11752:139;;11479:419;;;:::o;11904:221::-;12044:34;12040:1;12032:6;12028:14;12021:58;12113:4;12108:2;12100:6;12096:15;12089:29;11904:221;:::o;12131:366::-;12273:3;12294:67;12358:2;12353:3;12294:67;:::i;:::-;12287:74;;12370:93;12459:3;12370:93;:::i;:::-;12488:2;12483:3;12479:12;12472:19;;12131:366;;;:::o;12503:419::-;12669:4;12707:2;12696:9;12692:18;12684:26;;12756:9;12750:4;12746:20;12742:1;12731:9;12727:17;12720:47;12784:131;12910:4;12784:131;:::i;:::-;12776:139;;12503:419;;;:::o;12928:224::-;13068:34;13064:1;13056:6;13052:14;13045:58;13137:7;13132:2;13124:6;13120:15;13113:32;12928:224;:::o;13158:366::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:419::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13783:9;13777:4;13773:20;13769:1;13758:9;13754:17;13747:47;13811:131;13937:4;13811:131;:::i;:::-;13803:139;;13530:419;;;:::o;13955:222::-;14095:34;14091:1;14083:6;14079:14;14072:58;14164:5;14159:2;14151:6;14147:15;14140:30;13955:222;:::o;14183:366::-;14325:3;14346:67;14410:2;14405:3;14346:67;:::i;:::-;14339:74;;14422:93;14511:3;14422:93;:::i;:::-;14540:2;14535:3;14531:12;14524:19;;14183:366;;;:::o;14555:419::-;14721:4;14759:2;14748:9;14744:18;14736:26;;14808:9;14802:4;14798:20;14794:1;14783:9;14779:17;14772:47;14836:131;14962:4;14836:131;:::i;:::-;14828:139;;14555:419;;;:::o;14980:225::-;15120:34;15116:1;15108:6;15104:14;15097:58;15189:8;15184:2;15176:6;15172:15;15165:33;14980:225;:::o;15211:366::-;15353:3;15374:67;15438:2;15433:3;15374:67;:::i;:::-;15367:74;;15450:93;15539:3;15450:93;:::i;:::-;15568:2;15563:3;15559:12;15552:19;;15211:366;;;:::o;15583:419::-;15749:4;15787:2;15776:9;15772:18;15764:26;;15836:9;15830:4;15826:20;15822:1;15811:9;15807:17;15800:47;15864:131;15990:4;15864:131;:::i;:::-;15856:139;;15583:419;;;:::o

Swarm Source

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